Line data Source code
1 : #ifndef ALITRDQABUILDREFERENCE_H
2 : #define ALITRDQABUILDREFERENCE_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id: AliTRDqaBuildReference.h 23387 2008-01-17 17:25:16Z cblume $ */
7 :
8 : ////////////////////////////////////////////////////////////////////////////
9 : // //
10 : // Build the reference histograms //
11 : // //
12 : // Author: //
13 : // Sylwester Radomski (radomski@physi.uni-heidelberg.de) //
14 : // //
15 : ////////////////////////////////////////////////////////////////////////////
16 :
17 : class TFile;
18 : class TH1D;
19 :
20 : class AliTRDqaBuildReference: public TObject {
21 :
22 : public:
23 :
24 0 : AliTRDqaBuildReference() {} // ctor
25 0 : AliTRDqaBuildReference(const AliTRDqaBuildReference& qadm):TObject(qadm) {}
26 : AliTRDqaBuildReference& operator = (const AliTRDqaBuildReference& qadm);
27 0 : virtual ~AliTRDqaBuildReference() {;} // dtor
28 :
29 : virtual void Copy(TObject &/*qadm*/) const;
30 : void BuildRefHistos(TFile *file) const;
31 0 : Double_t CalculateQuality(TH1D* /*measured*/, TH1D* /*reference*/) const {return 1.;}
32 :
33 : private:
34 :
35 16 : ClassDef(AliTRDqaBuildReference,1) // Creates the TRD QA data
36 :
37 : };
38 : #endif
|