]>
Commit | Line | Data |
---|---|---|
1 | #ifndef AliT0QADataMakerSim_H | |
2 | #define AliT0QADataMakerSim_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 | ||
20 | // --- Standard library --- | |
21 | // --- AliRoot header files --- | |
22 | ||
23 | #include "AliQADataMakerSim.h" | |
24 | ||
25 | class AliT0QADataMakerSim: public AliQADataMakerSim { | |
26 | ||
27 | public: | |
28 | AliT0QADataMakerSim() ; // ctor | |
29 | AliT0QADataMakerSim(const AliT0QADataMakerSim& qadm) ; | |
30 | AliT0QADataMakerSim& operator = (const AliT0QADataMakerSim& qadm) ; | |
31 | virtual ~AliT0QADataMakerSim() {;} // dtor | |
32 | ||
33 | private: | |
34 | virtual void InitHits() ; //book hit QA histo | |
35 | virtual void InitDigits() ; //book Digit QA histo | |
36 | virtual void MakeHits(TTree * hits) ; //Fill hit QA histo | |
37 | virtual void MakeHits(TClonesArray *) {} //Dummy for the moment | |
38 | virtual void MakeDigits(TTree* digitsTree) ; //Fill Digit QA histo | |
39 | virtual void MakeDigits(TClonesArray *) {} //Dummy for the moment | |
40 | virtual void EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * list) ; | |
41 | virtual void StartOfDetectorCycle() ; | |
42 | ClassDef(AliT0QADataMakerSim,1) // description | |
43 | ||
44 | }; | |
45 | ||
46 | #endif // AliT0QADataMakerSim_H |