]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALQAChecker.h
remove unnecessary histogram booking, filling, storing; QA classes handle that now
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALQAChecker.h
CommitLineData
94594e5d 1#ifndef ALIEMCALQACHECKER_H
2#define ALIEMCALQACHECKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7/*
8 Checks the quality assurance.
9 By comparing with reference data
10
11 Based on PHOS code written by
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 AliEMCALLoader ;
26
27class AliEMCALQAChecker: public AliQACheckerBase {
28
29public:
30 AliEMCALQAChecker() : AliQACheckerBase("EMCAL","EMCAL Quality Assurance Data Maker") {;} // ctor
31 AliEMCALQAChecker(const AliEMCALQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
32 AliEMCALQAChecker& operator = (const AliEMCALQAChecker& qac) ;
33 virtual ~AliEMCALQAChecker() {;} // dtor
34
35private:
36
37 ClassDef(AliEMCALQAChecker,1) // description
38
39};
40
41#endif // AliEMCALQAChecker_H