]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDQAChecker.h
First V0 MC Analysis from H.Ricaud
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQAChecker.h
CommitLineData
b990acb3 1#ifndef ALIHMPIDQACHECKER_H
2#define ALIHMPIDQACHECKER_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// Skeleton for HMPID
13//
14
15
16// --- ROOT system ---
17class TFile ;
18class TH1F ;
19
20// --- Standard library ---
21
22// --- AliRoot header files ---
23#include "AliQACheckerBase.h"
24
25class AliHMPIDQAChecker: public AliQACheckerBase {
26
27public:
28 AliHMPIDQAChecker() : AliQACheckerBase("HMPID","HMPID Quality Assurance Data Checker") {;} // ctor
29 AliHMPIDQAChecker(const AliHMPIDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
30 AliHMPIDQAChecker& operator = (const AliHMPIDQAChecker& qac) ;
31 virtual ~AliHMPIDQAChecker() {;} // dtor
32
33private:
34
35 ClassDef(AliHMPIDQAChecker,1) // description
36
37};
38
39#endif // AliHMPIDQAChecker_H