]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSQualAssChecker.h
Rearranging the classes to use loadlibs.C
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQualAssChecker.h
1 #ifndef ALIPHOSQUALASSCHECKER_H
2 #define ALIPHOSQUALASSCHECKER_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   Y. Schutz CERN July 2007
13 */
14
15
16 // --- ROOT system ---
17 class TFile ; 
18 class TH1F ; 
19 class TH1I ; 
20
21 // --- Standard library ---
22
23 // --- AliRoot header files ---
24 #include "AliQualAssCheckerBase.h"
25 class AliPHOSLoader ; 
26
27 class AliPHOSQualAssChecker: public AliQualAssCheckerBase {
28
29 public:
30   AliPHOSQualAssChecker() : AliQualAssCheckerBase("PHOS","PHOS Quality Assurance Data Maker") {;}          // ctor
31   AliPHOSQualAssChecker(const AliPHOSQualAssChecker& qac) : AliQualAssCheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
32   AliPHOSQualAssChecker& operator = (const AliPHOSQualAssChecker& qac) ;
33   virtual ~AliPHOSQualAssChecker() {;} // dtor
34
35 private:
36   
37   virtual const Double_t Check(const Option_t * opt) ; 
38
39   ClassDef(AliPHOSQualAssChecker,1)  // description 
40
41 };
42
43 #endif // AliPHOSQualAssChecker_H