]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/AliVZEROQADataMakerRec.h
Get in sync with the base class
[u/mrichter/AliRoot.git] / VZERO / AliVZEROQADataMakerRec.h
1 #ifndef ALIVZEROQADataMakerRec_H
2 #define ALIVZEROQADataMakerRec_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
11
12 // --- ROOT system ---
13 class TH1F; 
14 class TH1I; 
15 class TObjArray; 
16
17 // --- Standard library ---
18
19 // --- AliRoot header files ---
20 #include "AliQADataMakerRec.h"
21
22 class AliCDBManager;
23 class AliCDBStorage;
24 class AliVZEROCalibData;
25
26 class AliVZEROQADataMakerRec: public AliQADataMakerRec {
27
28 public:
29   AliVZEROQADataMakerRec() ;           // constructor
30   AliVZEROQADataMakerRec(const AliVZEROQADataMakerRec& qadm) ;   
31   AliVZEROQADataMakerRec& operator = (const AliVZEROQADataMakerRec& qadm) ;
32   virtual ~AliVZEROQADataMakerRec() {;} // destructor
33   AliVZEROCalibData *GetCalibData() const;
34   
35 protected: 
36    AliVZEROCalibData *fCalibData;  //! calibration data
37    
38 private:
39   virtual void   EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * list) ;
40   virtual void   InitESDs() ; 
41   virtual void   InitRaws() ; 
42   virtual void   MakeESDs(AliESDEvent * esd) ;
43   virtual void   MakeRaws(AliRawReader* rawReader) ; 
44   virtual void   StartOfDetectorCycle() ; 
45
46   Int_t   fEvent;
47   Int_t   fEven[64];
48   Int_t   fOdd[64];
49   Float_t fADC_Mean[128];
50
51   ClassDef(AliVZEROQADataMakerRec,1)  // description 
52
53 };
54
55 #endif // AliVZEROQADataMakerRec_H