]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0Reconstructor.h
Removing debug printout
[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  * header class T0 reconstruction 
9  * Alla Maevskaya INR RAS alla@inr.ru      *
10  * Alla.Maevskaya@cern.ch
11  *******************************************************************/
12
13 #include "AliReconstructor.h"
14 #include "AliT0Parameters.h"
15 #include "AliT0Calibrator.h"
16 #include "AliT0RecoParam.h"
17
18 class AliT0Reconstructor: public AliReconstructor {
19  public:
20   AliT0Reconstructor();
21   virtual ~AliT0Reconstructor() {};
22
23   virtual  void   Reconstruct(TTree* fdigits, TTree * frecpoints) const;
24   virtual  void   Reconstruct(AliRawReader*rawReader , TTree* recTree) const;
25   
26   virtual void     FillESD( AliRawReader*/*rawReader*/,  TTree*clustersTree, AliESDEvent*esd ) const
27   {FillESD((TTree*)NULL,clustersTree,esd);}
28   virtual void     FillESD( TTree* digitsTree,  TTree*clustersTree, AliESDEvent*esd ) const;
29
30   virtual Bool_t   HasDigitConversion() const {return kFALSE;}
31   static const AliT0RecoParam* GetRecoParam()
32     { return dynamic_cast<const AliT0RecoParam*>(AliReconstructor::GetRecoParam(11)); } // getting RecoParam obj
33    
34  
35  protected:
36   Float_t             fdZonA;             // Zideal - Zreal side A 
37   Float_t             fdZonC;             // Zideal - Zreal side C
38   Float_t             fZposition;        // vertex position
39   Float_t             fTime0vertex[24];  // time position if Zvertex=0
40   AliT0Parameters     *fParam;           //pointer to T0 parameters class     
41   TObjArray           fAmpLEDrec;        // amp LED-CFD 
42   TObjArray           fQTC;        // QTC vs #MIPs
43   TObjArray           fAmpLED;        // LED-CFD vs #MIPs
44   AliT0Calibrator     *fCalib;           //pointer to T0 Calibrator     
45
46  private:
47   AliT0Reconstructor( const AliT0Reconstructor&r ); //Not implemented
48   AliT0Reconstructor& operator=(const AliT0Reconstructor&r); //Not implemented
49
50   ClassDef(AliT0Reconstructor, 5)   // class for the T0 reconstruction
51
52 };
53
54 typedef AliT0Reconstructor AliSTARTReconstructor; // for backward compatibility
55
56 #endif