]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALQAChecker.h
Technical fix for bug #50441: Track-cluster matching not done correctly during recons...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALQAChecker.h
1 #ifndef ALIEMCALQACHECKER_H
2 #define ALIEMCALQACHECKER_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
11   Based on PHOS code written by
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 "AliQACheckerBase.h"
25 class AliEMCALLoader ; 
26
27 class AliEMCALQAChecker: public AliQACheckerBase {
28
29 public:
30   AliEMCALQAChecker() : AliQACheckerBase("EMCAL","EMCAL Quality Assurance Data Maker") {;}          // ctor
31   virtual ~AliEMCALQAChecker() {;} // dtor
32
33 private:
34   AliEMCALQAChecker(const AliEMCALQAChecker& qac);
35   AliEMCALQAChecker& operator = (const AliEMCALQAChecker& qac) ;
36   
37   ClassDef(AliEMCALQAChecker,1)  // description 
38
39 };
40
41 #endif // AliEMCALQAChecker_H