]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCReconstructor.h
52baafc331b0d3447b6aad62710b2db31c126dd1
[u/mrichter/AliRoot.git] / TPC / AliTPCReconstructor.h
1 #ifndef ALITPCRECONSTRUCTOR_H
2 #define ALITPCRECONSTRUCTOR_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 #include "AliReconstructor.h"
9
10 class AliTPCParam;
11
12
13 class AliTPCReconstructor: public AliReconstructor {
14 public:
15   AliTPCReconstructor(): AliReconstructor() {};
16   virtual ~AliTPCReconstructor() {};
17
18   virtual void         Reconstruct(AliRunLoader* runLoader) const;
19   virtual void         Reconstruct(AliRunLoader* runLoader,
20                                    AliRawReader* rawReader) const;
21   virtual AliTracker*  CreateTracker(AliRunLoader* runLoader) const;
22   virtual void         FillESD(AliRunLoader* runLoader, AliESD* esd) const;
23
24   static void SetCtgRange(Double_t ctgRange = 1.05) {fgCtgRange = ctgRange;}
25   static Double_t GetCtgRange(){ return fgCtgRange;}
26
27 private:
28   AliTPCParam*         GetTPCParam(AliRunLoader* runLoader) const;
29
30   static Double_t fgCtgRange; //! +-fCtgRange is the ctg(Theta) window used for clusterization and tracking (MI) 
31
32   ClassDef(AliTPCReconstructor, 0)   // class for the TPC reconstruction
33 };
34
35 #endif