]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDQAChecker.h
changed tune (Leticia)
[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
a9523c3e 28 virtual ~AliPMDQAChecker() {;} // dtor
29
30private:
b94da054 31 AliPMDQAChecker(const AliPMDQAChecker& qac); // cpy ctor
f4f8d21b 32 AliPMDQAChecker &operator=(const AliPMDQAChecker& qac); // assignment operator
a9523c3e 33
34 ClassDef(AliPMDQAChecker,1) // description
35
36};
37
38#endif // AliPMDQAChecker_H