Line data Source code
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 12 : AliPMDQAChecker() : AliQACheckerBase("PMD","PMD Quality Assurance Data Maker") {;} // ctor
28 0 : virtual ~AliPMDQAChecker() {;} // dtor
29 :
30 : private:
31 : AliPMDQAChecker(const AliPMDQAChecker& qac); // cpy ctor
32 : AliPMDQAChecker &operator=(const AliPMDQAChecker& qac); // assignment operator
33 :
34 66 : ClassDef(AliPMDQAChecker,1) // description
35 :
36 : };
37 :
38 : #endif // AliPMDQAChecker_H
|