c9dd1c4d |
1 | #ifndef ALIFMDQADATAMAKERSIM_H |
2 | #define ALIFMDQADATAMAKERSIM_H |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights |
4 | * reserved. |
5 | * |
6 | * See cxx source for full Copyright notice |
7 | */ |
8 | |
9 | #include "AliQADataMakerSim.h" |
56236ce9 |
10 | #include "TClonesArray.h" |
c9dd1c4d |
11 | class TH1F ; |
12 | class TH1I ; |
13 | class TList ; |
9bd2ccc2 |
14 | class TClonesArray; |
c9dd1c4d |
15 | //_____________________________________________________________________ |
16 | // This class implements the AliQADataMakerSim for the FMD. Some |
17 | // functions are not implemented yet. |
18 | // Author : Hans Hjersing Dalsgaard, hans.dalsgaard@cern.ch |
19 | //_____________________________________________________________________ |
20 | |
21 | |
22 | |
23 | class AliFMDQADataMakerSim: public AliQADataMakerSim { |
24 | |
25 | public: |
26 | AliFMDQADataMakerSim() ; // ctor |
27 | AliFMDQADataMakerSim(const AliFMDQADataMakerSim& qadm) ; |
a7e41e8d |
28 | AliFMDQADataMakerSim& operator = (const AliFMDQADataMakerSim& qadm) ; |
9bd2ccc2 |
29 | virtual ~AliFMDQADataMakerSim(); // dtor |
c9dd1c4d |
30 | |
31 | private: |
4e25ac79 |
32 | virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** list); |
c9dd1c4d |
33 | virtual void InitHits(); |
34 | virtual void InitDigits(); |
35 | // virtual void InitRaws() ; |
028cb80b |
36 | virtual void InitSDigits() ; |
6252ceeb |
37 | virtual void MakeHits() ; |
c9dd1c4d |
38 | virtual void MakeHits(TTree* hitTree) ; |
6252ceeb |
39 | virtual void MakeDigits() ; |
c9dd1c4d |
40 | virtual void MakeDigits(TTree* digitTree) ; |
41 | // virtual void MakeRaws(AliRawReader* rawReader) ; |
6252ceeb |
42 | virtual void MakeSDigits() ; |
028cb80b |
43 | virtual void MakeSDigits(TTree * sigitTree) ; |
c9dd1c4d |
44 | virtual void StartOfDetectorCycle() ; |
56236ce9 |
45 | |
c9dd1c4d |
46 | ClassDef(AliFMDQADataMakerSim,0) // description |
47 | }; |
48 | |
49 | #endif // AliFMDQADataMakerSim_H |
50 | //____________________________________________________________________ |
51 | // |
52 | // Local Variables: |
53 | // mode: c++ |
54 | // End: |
55 | // |