]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDQADataMaker.h
Run number stored in the noise histogram
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQADataMaker.h
1 #ifndef ALIHMPIDQADATAMAKER_H
2 #define ALIHMPIDQADATAMAKER_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
18
19 class TH1F ; 
20 class TH2F ;
21 class TProfile;
22 class TObjArray;
23 // --- Standard library ---
24 #include <TString.h>
25 // --- AliRoot header files ---
26
27 #include "AliQADataMaker.h"
28
29 class AliHMPIDQADataMaker: public AliQADataMaker {
30
31 public:
32   AliHMPIDQADataMaker() ;          // ctor
33   AliHMPIDQADataMaker(const AliHMPIDQADataMaker& qadm) ;   
34   AliHMPIDQADataMaker& operator = (const AliHMPIDQADataMaker& qadm) ;
35   virtual ~AliHMPIDQADataMaker() {;} // dtor
36
37 private:
38
39   virtual void   EndOfDetectorCycle(AliQAv1::TASKINDEX, TObjArray * obj) ;
40   virtual void   InitHits() ;      //book hit QA histo 
41   virtual void   InitDigits() ;    //book Digit QA histo
42   virtual void   InitSDigits() ;   //book SDigits QA histo
43   virtual void   InitRecPoints();  //book cluster QA histo
44   virtual void   InitRaws();     //book raw QA histo
45   virtual void   InitESDs() ;      //book ESD QA histo 
46   virtual void   MakeHits(TClonesArray * hits) ;       //Fill hit QA histo
47   virtual void   MakeHits(TTree * hits) ;       // access to hit tree
48   virtual void   MakeDigits(TClonesArray * digits) ;   //Fill Digit QA histo
49   virtual void   MakeDigits(TTree * digits) ;   //access to digit tree
50   virtual void   MakeSDigits(TClonesArray * sdigits) ; //Fill SDigit QA histo
51   virtual void   MakeSDigits(TTree * sdigits) ; //access to SDigits tree
52   virtual void   MakeRecPoints(TTree * clusters)    ;  //Fill cluster QA histo
53   virtual void   MakeRaws(AliRawReader* rawReader);
54   virtual void   MakeESDs(AliESDEvent * esd) ;         //Fill hit QA histo
55   virtual void   StartOfDetectorCycle() ;
56
57   ClassDef(AliHMPIDQADataMaker,1)  // description 
58
59 };
60
61 #endif // AliHMPIDQADataMaker_H