]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TRD/AliTRDQAChecker.h
- data member was shadowed (fTree)
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.h
... / ...
CommitLineData
1#ifndef ALITRDQACHECKER_H
2#define ALITRDQACHECKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////////////////////////////////////
9// //
10// Checks the quality assurance. //
11// By comparing with reference data //
12// S.Radomski Uni-Heidelberg October 2007 //
13// //
14////////////////////////////////////////////////////////////////////////////
15
16// --- ROOT system ---
17class TFile ;
18class TH1F ;
19class TH1I ;
20class TList ;
21class TObjArray;
22
23// --- Standard library ---
24
25// --- AliRoot header files ---
26#include "AliQAv1.h"
27#include "AliQACheckerBase.h"
28
29class AliDetectorRecoParam;
30class AliTRDLoader ;
31
32class AliTRDQAChecker: public AliQACheckerBase {
33
34public:
35 AliTRDQAChecker() : AliQACheckerBase("TRD","TRD Quality Assurance Data Maker") {;} // ctor
36 AliTRDQAChecker(const AliTRDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
37 virtual ~AliTRDQAChecker() {;} // dtor
38
39 virtual Double_t * Check(AliQAv1::ALITASK_t /*index*/, TObjArray** /*list*/, AliDetectorRecoParam* /*param*/) ;
40
41private:
42
43 ClassDef(AliTRDQAChecker,1) // description
44
45};
46
47#endif // AliTRDQACHECKER_H