]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDQAChecker.h
Add QA analysis classes
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.h
1 #ifndef ALITRDQUALASSCHECKER_H
2 #define ALITRDQUALASSCHECKER_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 "AliQACheckerBase.h"
26 class AliTRDLoader ; 
27
28 class AliTRDQAChecker: public AliQACheckerBase {
29
30 public:
31   AliTRDQAChecker() : AliQACheckerBase("TRD","TRD Quality Assurance Data Maker") {;}          // ctor
32   AliTRDQAChecker(const AliTRDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
33   AliTRDQAChecker& operator = (const AliTRDQAChecker& qac) ;
34   virtual ~AliTRDQAChecker() {;} // dtor
35
36   virtual const Double_t Check() {return 1.0;}
37   virtual const Double_t Check(TList * /*list*/) {return 1.0;}
38   virtual const Double_t Check(TObjArray * /*list*/) {return 1.0;}
39
40 private:
41   
42   ClassDef(AliTRDQAChecker,1)  // description 
43
44 };
45
46 #endif // AliTRDQAChecker_H