]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCFast.h
Adding an option to enable the pedestal subtraction
[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   void Hits2Clusters(AliRunLoader* runLoader) const;
23   void Hits2ExactClusters(AliRunLoader* runLoader) const;
24   void Hits2ExactClustersSector(AliRunLoader* runLoader,
25                                 AliTPCClustersArray* clustersArray,
26                                 Int_t isec) const;
27
28  protected:
29   AliTPCParam * fParam;   //!pointer to parameters - NOT OWNER
30   ClassDef(AliTPCFast,0)  // fast TPC cluster simulation
31 };
32
33 #endif