]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALQAChecker.h
1) New library EMCALUtils with geometry and PID utils for the analysis: New classes...
[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
94594e5d 31 virtual ~AliEMCALQAChecker() {;} // dtor
32
33private:
07548920 34 AliEMCALQAChecker(const AliEMCALQAChecker& qac);
35 AliEMCALQAChecker& operator = (const AliEMCALQAChecker& qac) ;
94594e5d 36
37 ClassDef(AliEMCALQAChecker,1) // description
38
39};
40
41#endif // AliEMCALQAChecker_H