]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFQAChecker.h
Coding convention: RC12 rule violation -> suppression
[u/mrichter/AliRoot.git] / TOF / AliTOFQAChecker.h
CommitLineData
6a9d0c9d 1#ifndef ALITOFQACHECKER_H
2#define ALITOFQACHECKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
8fd6fd6c 6/////////////////////////////////////////////////////////////////////
7// //
8// Checks the quality assurance. //
9// By analysis of the histograms & comparing with reference data //
10// Author S.Arcelli //
11// //
12/////////////////////////////////////////////////////////////////////
6a9d0c9d 13
14class TFile ;
15class TH1F ;
16class TH1I ;
17#include "AliQACheckerBase.h"
18
19class AliTOFQAChecker: public AliQACheckerBase {
20
21public:
22 AliTOFQAChecker() : AliQACheckerBase("TOF","TOF Quality Assurance Data Maker") {;} // ctor
23 AliTOFQAChecker(const AliTOFQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
24 AliTOFQAChecker& operator = (const AliTOFQAChecker& qac) ;
25 virtual ~AliTOFQAChecker() {;} // dtor
26
27private:
693a790d 28
ad310671 29 const Double_t Check(TList * list) ;
30 Double_t Check() const {return 0.;} ;
6a9d0c9d 31
693a790d 32 ClassDef(AliTOFQAChecker,2) // description
6a9d0c9d 33
34};
35
36#endif // AliTOFQAChecker_H