]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSQAChecker.h
Getting keyword substitution to work.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQAChecker.h
CommitLineData
b8274834 1#ifndef ALIPHOSQACHECKER_H
2#define ALIPHOSQACHECKER_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 Y. Schutz CERN July 2007
13*/
14
15
16// --- ROOT system ---
17class TFile ;
18class TH1F ;
19class TH1I ;
20
21// --- Standard library ---
22
23// --- AliRoot header files ---
24#include "AliQACheckerBase.h"
25class AliPHOSLoader ;
26
27class AliPHOSQAChecker: public AliQACheckerBase {
28
29public:
30 AliPHOSQAChecker() : AliQACheckerBase("PHOS","PHOS Quality Assurance Data Maker") {;} // ctor
31 AliPHOSQAChecker(const AliPHOSQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
b8274834 32 virtual ~AliPHOSQAChecker() {;} // dtor
33
34private:
35
36 ClassDef(AliPHOSQAChecker,1) // description
37
38};
39
40#endif // AliPHOSQAChecker_H