]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFQAChecker.h
New mapping in agreement with the new instructions from Paolo and Giacinto
[u/mrichter/AliRoot.git] / TOF / AliTOFQAChecker.h
1 #ifndef ALITOFQACHECKER_H
2 #define ALITOFQACHECKER_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 analysis of the histograms & comparing with reference data  //
10 //  Author S.Arcelli                                               //
11 //                                                                 // 
12 /////////////////////////////////////////////////////////////////////
13
14 #include "AliQACheckerBase.h"
15
16 //class TFile ; 
17 //class TH1F ; 
18 //class TH1I ; 
19
20 class AliTOFQAChecker: public AliQACheckerBase {
21
22 public:
23   AliTOFQAChecker() : AliQACheckerBase("TOF","TOF Quality Assurance Data Maker") {;}          // ctor
24   AliTOFQAChecker(const AliTOFQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
25   AliTOFQAChecker& operator = (const AliTOFQAChecker& qac) ;
26   virtual ~AliTOFQAChecker() {;} // dtor
27
28 private:
29
30   const Double_t  Check(TList * list) ;
31   Double_t Check() const {return 0.;} ;
32   
33   ClassDef(AliTOFQAChecker,2)  // description 
34
35 };
36
37 #endif // AliTOFQAChecker_H