]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROQAChecker.h
introducing QA
[u/mrichter/AliRoot.git] / VZERO / AliVZEROQAChecker.h
CommitLineData
508b9fc0 1#ifndef ALIVZEROQACHECKER_H
2#define ALIVZEROQACHECKER_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
12
13// --- ROOT system ---
14class TFile ;
15class TH1F ;
16class TH1I ;
17
18// --- Standard library ---
19
20// --- AliRoot header files ---
21#include "AliQACheckerBase.h"
22
23class AliVZEROLoader ;
24
25class AliVZEROQAChecker: public AliQACheckerBase {
26
27public:
28 AliVZEROQAChecker() : AliQACheckerBase("VZERO","VZERO Quality Assurance Data Maker") {;} // ctor
29 AliVZEROQAChecker(const AliVZEROQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
30 AliVZEROQAChecker& operator = (const AliVZEROQAChecker& qac) ;
31 virtual ~AliVZEROQAChecker() {;} // dtor
32
33private:
34
35 ClassDef(AliVZEROQAChecker,1) // description
36
37};
38
39#endif // AliVZEROQAChecker_H