]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0Reconstructor.h
Record changes.
[u/mrichter/AliRoot.git] / T0 / AliT0Reconstructor.h
1 #ifndef ALIT0RECONSTRUCTOR_H
2 #define ALIT0RECONSTRUCTOR_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 #include "AliT0digit.h"
10 #include "AliT0.h"
11
12 class AliT0Reconstructor: public AliReconstructor {
13  public:
14   AliT0Reconstructor();
15   virtual ~AliT0Reconstructor() {};
16   AliT0Reconstructor( const AliT0Reconstructor& );
17   AliT0Reconstructor& operator=(const AliT0Reconstructor&); 
18
19
20   virtual  void   Reconstruct(TTree* fdigits, TTree * frecpoints) const;
21   virtual  void   Reconstruct(AliRawReader*rawReader , TTree* recTree) const;
22   
23   virtual void         FillESD( AliRawReader*,  TTree*clustersTree, AliESDEvent*esd ) const
24   {FillESD((TTree*)NULL,clustersTree,esd);}
25   virtual void         FillESD( TTree*,  TTree*, AliESDEvent* ) const;
26
27   virtual Bool_t       HasDigitConversion() const {return kFALSE;}
28  public:
29  
30   Float_t              fZposition; // vertex position
31   
32  protected:
33   AliT0Parameters     *fParam;           //pointer to T0 parameters class     
34   TObjArray           fAmpLEDrec;        // amp LED-CFD 
35   Float_t             fTime0vertex[24];  // time position if Zvertex=0
36   Float_t             fdZ_A;   // Zideal - Zreal side A 
37   Float_t             fdZ_C; // Zideal - Zreal side C
38
39
40   ClassDef(AliT0Reconstructor, 0)   // class for the T0 reconstruction
41
42 };
43
44 typedef AliT0Reconstructor AliSTARTReconstructor; // for backward compatibility
45
46 #endif