]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROQAChecker.h
CheckESDs added
[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 ;
427ef3a5 17class TObjArray ;
508b9fc0 18
19// --- Standard library ---
20
21// --- AliRoot header files ---
22#include "AliQACheckerBase.h"
23
24class AliVZEROLoader ;
25
26class AliVZEROQAChecker: public AliQACheckerBase {
27
28public:
427ef3a5 29 AliVZEROQAChecker() : AliQACheckerBase("VZERO","VZERO Quality Assurance Data Checker") {;} // ctor
508b9fc0 30 AliVZEROQAChecker(const AliVZEROQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
508b9fc0 31 virtual ~AliVZEROQAChecker() {;} // dtor
427ef3a5 32 virtual const Double_t Check(AliQA::ALITASK_t index, TObjArray * list) ;
33 Double_t CheckEntries(TObjArray * list) const ;
34 virtual void SetQA(AliQA::ALITASK_t index, const Double_t value) const ;
35
508b9fc0 36private:
37
38 ClassDef(AliVZEROQAChecker,1) // description
39
40};
41
42#endif // AliVZEROQAChecker_H