]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ACORDE/AliACORDEQADataMakerRec.h
Added SPD outlier trigger bit
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQADataMakerRec.h
1 #ifndef AliACORDEQADataMakerRec_H
2 #define AliACORDEQADataMakerRec_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7
8 //
9 //  Produces the data needed to calculate the quality assurance. 
10 //  All data must be mergeable objects.
11
12 //  Authors:
13 //
14 //  Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
15 //  Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)
16 //  Arturo Fernandez Tellez <afernan@mail.cern.ch (FCFM-BUAP)
17 //
18 //  Created: June 13th 2008
19 //---
20
21
22 // --- ROOT system ---
23
24
25
26 // --- Standard library ---
27 // --- AliRoot header files ---
28
29 #include "AliQADataMakerRec.h"
30 #include <TLine.h>
31
32 class AliACORDEQADataMakerRec: public AliQADataMakerRec {
33
34 public:
35   AliACORDEQADataMakerRec() ;          // constructor
36   AliACORDEQADataMakerRec(const AliACORDEQADataMakerRec& qadm) ;   
37   AliACORDEQADataMakerRec& operator = (const AliACORDEQADataMakerRec& qadm) ;
38   virtual ~AliACORDEQADataMakerRec(); // destructor
39
40 private:
41   virtual void   InitRaws() ;    //book Digit QA histo
42   virtual void   InitDigits() ;    //book Digit QA histo
43   virtual void   MakeDigits(TTree* digitsTree) ;   //Fill Digit QA histo
44   virtual void   MakeDigits() {}       //Dummy for the moment
45   virtual void   InitRecPoints();  //book cluster QA histo
46   virtual void   InitESDs() ;      //book ESD QA histo 
47   virtual void   MakeRaws(AliRawReader* rawReader) ;
48   virtual void   MakeESDs(AliESDEvent * esd) ;         //Fill hit QA histo
49   virtual void   EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** list) ;
50   virtual void   StartOfDetectorCycle();
51   //
52   //
53   ClassDef(AliACORDEQADataMakerRec,1)  // description 
54
55 };
56
57 #endif // AliACORDEQADataMakerRec_H