]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDqaBuildReference.h
remove obselete clean QA macros command
[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) {}
26 AliTRDqaBuildReference& operator = (const AliTRDqaBuildReference& qadm)
27 { *(new(this) AliTRDqaBuildReference(qadm));
28 return *this; }
29 virtual ~AliTRDqaBuildReference() {;} // dtor
30
31 void BuildRefHistos(TFile *file) const;
32 Double_t CalculateQuality(TH1D* /*measured*/, TH1D* /*reference*/) const {return 1.;}
33
34 private:
35
36 ClassDef(AliTRDqaBuildReference,1) // Creates the TRD QA data
37
38};
39#endif