]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDqaBuildReference.h
o small fix
[u/mrichter/AliRoot.git] / TRD / AliTRDqaBuildReference.h
CommitLineData
e508dc19 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
17class TFile;
18class TH1D;
19
20class AliTRDqaBuildReference: public TObject {
21
22 public:
23
24 AliTRDqaBuildReference() {} // ctor
25 AliTRDqaBuildReference(const AliTRDqaBuildReference& qadm):TObject(qadm) {}
09a939c1 26 AliTRDqaBuildReference& operator = (const AliTRDqaBuildReference& qadm);
e508dc19 27 virtual ~AliTRDqaBuildReference() {;} // dtor
28
09a939c1 29 virtual void Copy(TObject &/*qadm*/) const;
e508dc19 30 void BuildRefHistos(TFile *file) const;
31 Double_t CalculateQuality(TH1D* /*measured*/, TH1D* /*reference*/) const {return 1.;}
32
33 private:
34
35 ClassDef(AliTRDqaBuildReference,1) // Creates the TRD QA data
36
37};
38#endif