]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFQAChecker.h
converted multiplicity selector into task
[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
6/*
7 Checks the quality assurance.
8 By analysis of the histograms & comparing with reference data
9 Author S.Arcelli
10*/
11
12class TFile ;
13class TH1F ;
14class TH1I ;
15#include "AliQACheckerBase.h"
16
17class AliTOFQAChecker: public AliQACheckerBase {
18
19public:
20 AliTOFQAChecker() : AliQACheckerBase("TOF","TOF Quality Assurance Data Maker") {;} // ctor
21 AliTOFQAChecker(const AliTOFQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
22 AliTOFQAChecker& operator = (const AliTOFQAChecker& qac) ;
23 virtual ~AliTOFQAChecker() {;} // dtor
24
25private:
26
27 ClassDef(AliTOFQAChecker,1) // description
28
29};
30
31#endif // AliTOFQAChecker_H