]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDQAChecker.h
Fix for #84624: Problem in TPC cluster map
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQAChecker.h
CommitLineData
b990acb3 1#ifndef ALIHMPIDQACHECKER_H
2#define ALIHMPIDQACHECKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7/* $Id$ */
8
9//
10// Checks the quality assurance.
11// By comparing with reference data
12// Skeleton for HMPID
13//
14
15
16// --- ROOT system ---
17class TFile ;
18class TH1F ;
fdd7f404 19class TObjArray ;
b990acb3 20
21// --- Standard library ---
22
23// --- AliRoot header files ---
24#include "AliQACheckerBase.h"
25
26class AliHMPIDQAChecker: public AliQACheckerBase {
27
28public:
86017bd8 29 AliHMPIDQAChecker() ; // ctor
30 AliHMPIDQAChecker(const AliHMPIDQAChecker& qac) ; // cpy ctor
34fbdb5b 31 virtual ~AliHMPIDQAChecker() ; // dtor
32
86017bd8 33 virtual void Check(Double_t * test, AliQAv1::ALITASK_t index, TObjArray ** list, const AliDetectorRecoParam * recoParam) ;
632b3830 34
fdd7f404 35 Double_t CheckEntries(TObjArray * list) const ;
2ac899f2 36 Double_t CheckRec(TObjArray *listrec, TObjArray *listref) const ;
37 Double_t CheckSim(TObjArray *listsim, TObjArray *listref) const ;
fdd7f404 38
b990acb3 39private:
96e065b3 40 AliHMPIDQAChecker& operator= (const AliHMPIDQAChecker&); // Not implemented
34fbdb5b 41 Bool_t fNoReference ; //! flag telling if reference data hqve been found or not
42 TObjArray * fQARefRec ; //! Reference data from OCDB
43
b990acb3 44 ClassDef(AliHMPIDQAChecker,1) // description
45
46};
47
48#endif // AliHMPIDQAChecker_H