]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ACORDE/AliACORDEQADataMakerSim.h
check at the primary level if the energy of the companion is lower than the calorimet...
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQADataMakerSim.h
1 #ifndef AliACORDEQADataMakerSim_H
2 #define AliACORDEQADataMakerSim_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 "AliQADataMakerSim.h"
30
31 class AliACORDEQADataMakerSim: public AliQADataMakerSim {
32
33 public:
34   AliACORDEQADataMakerSim() ;          // constructor
35   AliACORDEQADataMakerSim(const AliACORDEQADataMakerSim& qadm) ;   
36   AliACORDEQADataMakerSim& operator = (const AliACORDEQADataMakerSim& qadm) ;
37   virtual ~AliACORDEQADataMakerSim() {;} // detector
38
39 private:
40   virtual void   InitHits() ;      //book hit QA histo 
41   virtual void   InitDigits() ;    //book Digit QA histo
42   virtual void   MakeHits(TTree * hits) ;       //Fill hit QA histo
43   virtual void   MakeHits() {}       //Dummy for the moment
44   virtual void   MakeDigits(TTree* digitsTree) ;   //Fill Digit QA histo
45   virtual void   MakeDigits() {}       //Dummy for the moment
46   virtual void   EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** list) ;
47   virtual void   StartOfDetectorCycle() ;
48
49   ClassDef(AliACORDEQADataMakerSim,1)  // description 
50
51 };
52
53 #endif // AliACORDEQADataMakerSim_H