]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDQAChecker.h
Fixes for bug #49914: Compilation breaks in trunk, and bug #48629: Trunk cannot read...
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.h
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 //////////////////////////////////////////////////////
7 //
8 //  Checks the quality assurance. 
9 //  By comparing with reference data
10 //  S. Radomski Uni-Heidelberg October 2007
11 //
12 ///////////////////////////////////////////////////////
13
14
15 // --- ROOT system ---
16 class TFile ; 
17 class TH1F ; 
18 class TH1I ; 
19 class TList ;
20 class TObjArray;
21
22 // --- Standard library ---
23
24 // --- AliRoot header files ---
25 #include "AliQAv1.h"
26 #include "AliQACheckerBase.h"
27 class AliTRDLoader ; 
28
29 class AliTRDQAChecker: public AliQACheckerBase {
30
31 public:
32   AliTRDQAChecker() : AliQACheckerBase("TRD","TRD Quality Assurance Data Maker") {;}          // ctor
33   AliTRDQAChecker(const AliTRDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
34   virtual ~AliTRDQAChecker() {;} // dtor
35
36   virtual Double_t * Check(AliQAv1::ALITASK_t /*index*/) {return NULL;}
37   virtual Double_t * Check(TList * /*list*/) {return NULL;}
38   virtual Double_t * Check(AliQAv1::ALITASK_t /*index*/, TObjArray ** /*list*/) {return NULL;}
39   virtual Double_t * Check(AliQAv1::ALITASK_t /*index*/, TNtupleD** /*nt*/)     {return NULL;}
40
41 private:
42   
43   ClassDef(AliTRDQAChecker,1)  // description 
44
45 };
46
47 #endif // AliTRDQACHECKER_H