]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALReconstructor.h
36d9ef7f6b4fb19f3ce43af44811b0171735903b
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALReconstructor.h
1 #ifndef ALIEMCALRECONSTRUCTOR_H
2 #define ALIEMCALRECONSTRUCTOR_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 //  Wrapping class for reconstruction
10 //*--
11 //*-- Author: Yves Schutz (SUBATECH) 
12 //*--         Dmitri Peressounko (SUBATECH & Kurchatov Institute)
13 // Reconstruction class. Redesigned from the old AliReconstructionner class and 
14 // derived from STEER/AliReconstructor. 
15 // 
16 //-- Aleksei Pavlinov : added staf for EMCAL jet trigger 9Apr 25, 2008)
17 //                    : fgDigitsArr should read just once at event
18
19
20 // --- ROOT system ---
21 class TList;
22 class TClonesArray;
23 class TTree;
24
25
26 // --- AliRoot header files ---
27 #include "AliReconstructor.h" 
28 #include "AliEMCALTracker.h" 
29 #include "AliEMCALRecParam.h"
30
31
32 class AliEMCALDigitizer ;
33 class AliEMCALClusterizer ;
34 class AliEMCALSDigitizer ;
35 class AliEMCALRecParam;
36 class AliESDEvent ;
37 class AliRawReader ;
38 class AliEMCALRawUtils;
39 class AliEMCALGeometry;
40 class AliEMCALCalibData ;
41 class AliCaloCalibPedestal ;
42 class AliEMCALTriggerElectronics;
43
44 // --- Standard library ---
45
46
47
48 class AliEMCALReconstructor : public AliReconstructor {
49
50 public:
51
52   AliEMCALReconstructor() ; //ctor            
53    
54   virtual ~AliEMCALReconstructor() ; //dtor
55
56   virtual  void Init();
57   Bool_t       Debug() const { return fDebug ; }
58
59   using AliReconstructor::FillESD;
60   virtual void FillESD(TTree* digitsTree, TTree* clustersTree, 
61                        AliESDEvent* esd) const;
62   AliTracker*  CreateTracker () const 
63   {return new AliEMCALTracker;} 
64   using AliReconstructor::Reconstruct;
65   virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
66
67   virtual Bool_t             HasDigitConversion() const {return kTRUE;};
68   virtual void               ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const;
69   
70   static void   SetRecParam(AliEMCALRecParam * recParam){ fgkRecParam = recParam;}
71
72   void   ReadDigitsArrayFromTree(TTree *digitsTree) const;
73
74   TList *GetList() const {return fList;}
75
76   static const AliEMCALRecParam* GetRecParam() { 
77     return dynamic_cast<const AliEMCALRecParam*>(AliReconstructor::GetRecoParam(6)); }
78
79   static TClonesArray* GetDigitsArr() {return fgDigitsArr;}
80
81   void FillMisalMatrixes(AliESDEvent* esd)const ;
82
83 private:
84   
85   AliEMCALReconstructor(const AliEMCALReconstructor &); //Not implemented
86   AliEMCALReconstructor & operator = (const AliEMCALReconstructor &); //Not implemented
87
88   Bool_t fDebug; //! verbosity controller
89
90   TList *fList;  //! List of hists (only for trigger now)
91   AliEMCALGeometry         *fGeom;           // pointer to the EMCAL geometry
92
93   static AliEMCALClusterizer* fgClusterizer; // clusterizer
94   static const AliEMCALRecParam*   fgkRecParam; // reconstruction
95                                                 // parameters for EMCAL
96   static AliEMCALRawUtils*   fgRawUtils;  // raw utilities class -
97                                           // only need one per reco
98   static TClonesArray*       fgDigitsArr; // Array with EMCAL digits
99   AliEMCALCalibData    * fCalibData   ;   //! Calibration database if aval
100   AliCaloCalibPedestal * fPedestalData ;   //! Tower status database if aval
101
102   static AliEMCALTriggerElectronics* fgTriggerProcessor;
103
104   ClassDef(AliEMCALReconstructor,9)  // Reconstruction algorithm class (Base Class)
105
106 }; 
107
108 #endif // ALIEMCALRECONSTRUCTOR_H
109