Line data Source code
1 : #ifndef ALITRDQARECPOINTS_H
2 : #define ALITRDQARECPOINTS_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id: AliTRDqaRecPoints.h 23387 2008-01-17 17:25:16Z cblume $ */
7 :
8 : ////////////////////////////////////////////////////////////////////////////
9 : // //
10 : // QA of black events //
11 : // //
12 : // Author: //
13 : // Sylwester Radomski (radomski@physi.uni-heidelberg.de) //
14 : // //
15 : ////////////////////////////////////////////////////////////////////////////
16 :
17 : #include "TObject.h"
18 :
19 : class TH1;
20 : class TH1D;
21 : class TH2D;
22 : class TH3D;
23 : class TObjArray;
24 :
25 : class AliTRDqaRecPoints : public TObject {
26 :
27 : public:
28 :
29 : AliTRDqaRecPoints();
30 : AliTRDqaRecPoints(const AliTRDqaRecPoints &qa);
31 0 : ~AliTRDqaRecPoints() {}
32 0 : AliTRDqaRecPoints& operator = (const AliTRDqaRecPoints& /*qa*/) { return *this; };
33 :
34 : void Init();
35 0 : void Reset() {}
36 : void AddEvent(TTree *tree);
37 : void Process(const char* filename);
38 :
39 0 : void SetNPad(Int_t nPad) {fnPad = nPad;}
40 0 : void CreateRef(Int_t ref) {fRef = ref;}
41 :
42 : private:
43 :
44 : Int_t fnEvents; // number of events processed
45 : TObjArray *fHist; // histograms
46 :
47 : TH2D *fRefHist[540]; // reference histograms
48 :
49 : Int_t fnPad; // something
50 : Int_t fRef; // something else
51 :
52 16 : ClassDef(AliTRDqaRecPoints,0) // QA for black events
53 :
54 : };
55 : #endif
|