]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0QAChecker.h
fix of some rule violations
[u/mrichter/AliRoot.git] / T0 / AliT0QAChecker.h
CommitLineData
c03351ac 1#ifndef ALIT0QACHECKER_H
2#define ALIT0QACHECKER_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 T0
13//
14
15
16// --- ROOT system ---
17class TFile ;
18class TH1F ;
19
20// --- Standard library ---
21
22// --- AliRoot header files ---
23#include "AliQACheckerBase.h"
24
25class AliT0QAChecker: public AliQACheckerBase {
26
27public:
28 AliT0QAChecker() : AliQACheckerBase("T0","T0 Quality Assurance Data Checker") {;} // ctor
c4b97145 29 AliT0QAChecker(const AliT0QAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
0d849919 30 // dtor
31 virtual ~AliT0QAChecker() {;}
8825d145 32 Double_t CheckRaw(TObjArray *listrec , TObjArray *listref) const ;
c03351ac 33private:
a42ceb0e 34 virtual void Check(Double_t * test, AliQAv1::ALITASK_t, TObjArray ** list, const AliDetectorRecoParam * recoParam) ;
c03351ac 35
36 ClassDef(AliT0QAChecker,1) // description
37
38};
39
40#endif // AliT0QAChecker_H