]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0QADataMaker.h
coding conventions
[u/mrichter/AliRoot.git] / T0 / AliT0QADataMaker.h
1 #ifndef ALIT0QADATAMAKER_H
2 #define ALIT0QADATAMAKER_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
22 // --- Standard library ---
23 #include <TString.h>
24 // --- AliRoot header files ---
25
26 #include "AliQADataMaker.h"
27
28 class AliT0QADataMaker: public AliQADataMaker {
29
30 public:
31   AliT0QADataMaker() ;          // ctor
32   AliT0QADataMaker(const AliT0QADataMaker& qadm) ;   
33   AliT0QADataMaker& operator = (const AliT0QADataMaker& qadm) ;
34   virtual ~AliT0QADataMaker() {;} // dtor
35
36 private:
37   virtual void   InitHits() ;      //book hit QA histo 
38   virtual void   InitDigits() ;    //book Digit QA histo
39   virtual void   InitRecPoints();  //book cluster QA histo
40   virtual void   InitESDs() ;      //book ESD QA histo 
41   virtual void   MakeHits(TObject * hits) ;       //Fill hit QA histo
42   virtual void   MakeDigits(TObject * digits) ;   //Fill Digit QA histo
43   virtual void   MakeRecPoints(TTree * clusters)    ;  //Fill cluster QA histo
44   virtual void   MakeESDs(AliESDEvent * esd) ;         //Fill hit QA histo
45   virtual void   EndOfDetectorCycle(AliQA::TASKINDEX, TList * list) ;
46   virtual void   StartOfDetectorCycle() ;
47   /*
48   TH1F *fhHitsTime[24];
49   TH1F *fhHitsEff;
50
51   TH1F *fhDigCFD[24];
52   TH1F *fhDigLEDamp[24];
53   TH1F *fhDigQTC[24];
54   TH1F *fhDigMean;
55   TH1F *fhDigEff;
56
57   TH1F *fhRecCFD[24];
58   TH1F *fhRecLEDamp[24];
59   TH1F *fhRecQTC[24];
60   TH1F *fhRecMean;
61   TH1F *fhRecEff;
62
63   TH1F *fhESDMean;
64   TH1F *fhESDVertex;
65   */
66   ClassDef(AliT0QADataMaker,1)  // description 
67
68 };
69
70 #endif // AliT0QADataMaker_H