]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDQADataMakerRec.h
Changes needed by the following commit: coding convention for type (_t) and access...
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQADataMakerRec.h
1 #ifndef AliHMPIDQADataMakerRec_H
2 #define AliHMPIDQADataMakerRec_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 /* $Id$ */
8
9 //
10 //  Produces the data needed to calculate the quality assurance. 
11 //  All data must be mergeable objects.
12 //  A. Mastroserio
13
14
15
16 // --- ROOT system ---
17 class TTree ;
18 class AliRawReader;
19 class AliESDEvent ;
20 // --- AliRoot header files ---
21
22 #include "AliQADataMakerRec.h"
23
24 class AliHMPIDQADataMakerRec: public AliQADataMakerRec {
25
26 public:
27   AliHMPIDQADataMakerRec() ;          // ctor
28   AliHMPIDQADataMakerRec(const AliHMPIDQADataMakerRec& qadm) ;   
29   AliHMPIDQADataMakerRec& operator = (const AliHMPIDQADataMakerRec& qadm) ;
30   virtual ~AliHMPIDQADataMakerRec() {;} // dtor
31
32 private:
33   virtual void   InitRecPoints();  //book cluster QA histo
34   virtual void   InitRaws();     //book raw QA histo
35   virtual void   InitESDs() ;      //book ESD QA histo 
36   virtual void   MakeRecPoints(TTree * clusters)    ;  //Fill cluster QA histo
37   virtual void   MakeRaws(AliRawReader* rawReader);
38   virtual void   MakeESDs(AliESDEvent * esd) ;         //Fill hit QA histo
39   virtual void   StartOfDetectorCycle() ;
40   virtual void   EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * obj) ;
41
42   ClassDef(AliHMPIDQADataMakerRec,1)  // description 
43
44 };
45
46 #endif // AliHMPIDQADataMakerRec_H