]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROQAChecker.h
Bug fix (wrong reading of HPTDC manual).
[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/*
5fc205b9 8 Checks the quality of the data
9 by comparing with reference data
10 which should be loaded from QA ref DB
508b9fc0 11*/
12
508b9fc0 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
43d41363 31 virtual ~AliVZEROQAChecker() {;} // destructor
32
4e25ac79 33 virtual void Init(const AliQAv1::DETECTORINDEX_t det) ;
57acd2d2 34
43d41363 35protected:
a42ceb0e 36 virtual void Check( Double_t * test, AliQAv1::ALITASK_t index, TObjArray ** list, const AliDetectorRecoParam * recoParam);
427ef3a5 37 Double_t CheckEntries(TObjArray * list) const ;
43d41363 38 Double_t CheckEsds(TObjArray * list) const;
39
4e25ac79 40 virtual void SetQA(AliQAv1::ALITASK_t index, Double_t * value) const ;
427ef3a5 41
508b9fc0 42private:
43
44 ClassDef(AliVZEROQAChecker,1) // description
45
46};
47
48#endif // AliVZEROQAChecker_H