]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0QAChecker.h
c4e50ad612cda75ad07f96a0f99e9e41e5e49b97
[u/mrichter/AliRoot.git] / T0 / AliT0QAChecker.h
1 #ifndef ALIT0QACHECKER_H
2 #define ALIT0QACHECKER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 /* $Id$ */
8
9 //
10 //  Checks the quality assurance. 
11 //  By comparing with reference data
12 //  Skeleton for T0
13 //
14
15
16 // --- ROOT system ---
17 class TFile ; 
18 class TH1F ; 
19
20 // --- Standard library ---
21
22 // --- AliRoot header files ---
23 #include "AliQACheckerBase.h"
24
25 class AliT0QAChecker: public AliQACheckerBase {
26
27 public:
28   AliT0QAChecker() : AliQACheckerBase("T0","T0 Quality Assurance Data Checker") {;}          // ctor
29   AliT0QAChecker(const AliT0QAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
30    virtual ~AliT0QAChecker() {;} // dtor
31
32 private:
33   virtual const Double_t Check(AliQA::ALITASK_t,TObjArray * list) ;
34   virtual const Double_t Check() {return 0.;} ;
35   
36
37   ClassDef(AliT0QAChecker,1)  // description 
38
39 };
40
41 #endif // AliT0QAChecker_H