]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCFast.h
one more tpcrefit added
[u/mrichter/AliRoot.git] / TPC / AliTPCFast.h
1 #ifndef ALITPCFAST_H
2 #define ALITPCFAST_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////
9 //  fast TPC cluster simulation               //
10 ////////////////////////////////////////////////
11
12 #include <TObject.h>
13
14 class AliRunLoader;
15 class AliTPCClustersArray;
16 class AliTPCParam;
17
18
19 class AliTPCFast : public TObject {
20
21 public:
22   AliTPCFast():TObject(),fParam(0){}
23   AliTPCFast(const AliTPCFast &param); // copy constructor
24   AliTPCFast &operator = (const AliTPCFast & param); //assignment
25   void Hits2Clusters(AliRunLoader* runLoader) const;
26   void Hits2ExactClusters(AliRunLoader* runLoader) const;
27   void Hits2ExactClustersSector(AliRunLoader* runLoader,
28                                 AliTPCClustersArray* clustersArray,
29                                 Int_t isec) const;
30
31  protected:
32   AliTPCParam * fParam;   //!pointer to parameters - NOT OWNER
33   ClassDef(AliTPCFast,0)  // fast TPC cluster simulation
34 };
35
36 #endif