]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDQAChecker.h
Bug fix in the constructor (thanks to A.Marin)
[u/mrichter/AliRoot.git] / PMD / AliPMDQAChecker.h
CommitLineData
a9523c3e 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 ---
14class TFile ;
15class TH1F ;
16class TH1I ;
17
18// --- Standard library ---
19
20// --- AliRoot header files ---
21#include "AliQACheckerBase.h"
22class AliPMDLoader ;
23
24class AliPMDQAChecker: public AliQACheckerBase {
25
26public:
27 AliPMDQAChecker() : AliQACheckerBase("PMD","PMD Quality Assurance Data Maker") {;} // ctor
28 AliPMDQAChecker(const AliPMDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
a9523c3e 29 virtual ~AliPMDQAChecker() {;} // dtor
30
31private:
32
33 ClassDef(AliPMDQAChecker,1) // description
34
35};
36
37#endif // AliPMDQAChecker_H