]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCFast.h
Corrected casting
[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
17
18 class AliTPCFast : public TObject {
19
20 public:
21   void Hits2Clusters(AliRunLoader* runLoader) const;
22   void Hits2ExactClustersSector(AliRunLoader* runLoader,
23                                 AliTPCClustersArray* clustersArray,
24                                 Int_t isec) const;
25   void FindTrackHitsIntersection(AliRunLoader* runLoader,
26                                  AliTPCClustersArray* clustersArray) const;
27
28   ClassDef(AliTPCFast,0)  // fast TPC cluster simulation
29 };
30
31 #endif