]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDQAChecker.h
make scan of dEdx blocks consistent, there is only one block
[u/mrichter/AliRoot.git] / PMD / AliPMDQAChecker.h
1 #ifndef ALIPMDQACHECKER_H
2 #define ALIPMDQACHECKER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /*
7   Checks the quality assurance. 
8   By comparing with reference data
9   B.K. Nandi
10 */
11
12
13 // --- ROOT system ---
14 class TFile ; 
15 class TH1F ; 
16 class TH1I ; 
17
18 // --- Standard library ---
19
20 // --- AliRoot header files ---
21 #include "AliQACheckerBase.h"
22 class AliPMDLoader ; 
23
24 class AliPMDQAChecker: public AliQACheckerBase {
25
26 public:
27   AliPMDQAChecker() : AliQACheckerBase("PMD","PMD Quality Assurance Data Maker") {;}          // ctor
28   AliPMDQAChecker(const AliPMDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
29   virtual ~AliPMDQAChecker() {;} // dtor
30
31 private:
32   
33   ClassDef(AliPMDQAChecker,1)  // description 
34
35 };
36
37 #endif // AliPMDQAChecker_H