]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQAChecker.h
Bug fix (Vladimir Pospisil)
[u/mrichter/AliRoot.git] / ITS / AliITSQAChecker.h
CommitLineData
1507771f 1#ifndef ALIITSQACHECKER_H
2#define ALIITSQACHECKER_H
3/* Copyright(c) 2007-2009, 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// INFN Torino
13// W. Ferrarese Oct 2007
14//
15
16
17// --- ROOT system ---
18class TFile ;
19class TH2F ;
20
21// --- AliRoot header files ---
22#include "AliQACheckerBase.h"
23class AliITSLoader ;
24
25class AliITSQAChecker: public AliQACheckerBase {
26
27public:
28 AliITSQAChecker() : AliQACheckerBase("ITS","SDD Quality Assurance Data Maker") {;} // ctor
29 AliITSQAChecker(const AliITSQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
30 AliITSQAChecker& operator = (const AliITSQAChecker& qac) ; //operator =
31 virtual ~AliITSQAChecker() {;} // dtor
32
33private:
34
35 ClassDef(AliITSQAChecker,1) // description
36
37};
38
39#endif // AliITSQAChecker_H