]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALQADataMakerRec.h
fixing r27675: adding missing files
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALQADataMakerRec.h
1 #ifndef ALIEMCALQADataMakerRec_H
2 #define ALIEMCALQADataMakerRec_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /*
7   Produces the data needed to calculate the quality assurance. 
8   All data must be mergeable objects.
9
10   Based on PHOS code written by
11   Y. Schutz CERN July 2007
12 */
13
14
15 // --- ROOT system ---
16 class TH1F ; 
17 class TH1I ; 
18 class TObjArray ; 
19
20 // --- Standard library ---
21
22 // --- AliRoot header files ---
23 #include "AliQADataMakerRec.h"
24
25 class AliEMCALQADataMakerRec: public AliQADataMakerRec {
26
27 public:
28   //Histograms for Raw data control
29   enum HRawType_t {kNsmodLG,kNsmodHG,kLGtime,kHGtime,
30                    kSpecLG,kSpecHG,kNtotLG,kNtotHG,
31                    kEtotLG,kEtotHG} ;
32
33   //Histograms for RecPoints  control
34   enum HRPType_t {kRecPE,kRecPM,kRecPDigM};
35
36   //Histograms for ESDs  control
37   enum HESDType_t {kESDCaloClusE,kESDCaloClusM,kESDCaloCellA,kESDCaloCellM} ;
38                  
39
40 public:
41   AliEMCALQADataMakerRec() ;          // ctor
42   AliEMCALQADataMakerRec(const AliEMCALQADataMakerRec& qadm) ;   
43   AliEMCALQADataMakerRec& operator = (const AliEMCALQADataMakerRec& qadm) ;
44   virtual ~AliEMCALQADataMakerRec() {;} // dtor
45   
46 private:
47   virtual void   EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * list) ;
48   virtual void   InitESDs() ; 
49   virtual void   InitRecPoints() ; 
50   virtual void   InitRaws() ; 
51   virtual void   MakeESDs(AliESDEvent * esd) ;
52   virtual void   MakeRecPoints(TTree * recpoTree) ; 
53   virtual void   MakeRaws(AliRawReader* rawReader) ; 
54   virtual void   StartOfDetectorCycle() ; 
55
56   ClassDef(AliEMCALQADataMakerRec,1)  // description 
57
58 };
59
60 #endif // AliEMCALQADataMakerRec_H