]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ZDC/AliZDCQAChecker.h
reviewing typos -- Cath
[u/mrichter/AliRoot.git] / ZDC / AliZDCQAChecker.h
... / ...
CommitLineData
1#ifndef ALIZDCQACHECKER_H
2#define ALIZDCQACHECKER_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// C. Oppedisano Chiara.Oppedisano@to.infn.it //
10// //
11//////////////////////////////////////////////////////
12
13#include "AliQAv1.h"
14#include "AliQACheckerBase.h"
15
16class TObjArray;
17
18class AliZDCQAChecker: public AliQACheckerBase {
19
20public:
21 AliZDCQAChecker() : AliQACheckerBase("ZDC","ZDC Quality Assurance Data Maker") {;} // ctor
22 virtual ~AliZDCQAChecker() {;} // dtor
23
24 protected:
25
26 virtual void Check(Double_t * test, AliQAv1::ALITASK_t index, TObjArray ** list,
27 const AliDetectorRecoParam * /*recoParam*/);
28 void SetupHisto(const TObjArray& messages, TH1& histo, Float_t& code);
29
30 private:
31 AliZDCQAChecker(const AliZDCQAChecker& qac); // cpy ctor
32 AliZDCQAChecker& operator= (const AliZDCQAChecker & /*checker*/);
33 ClassDef(AliZDCQAChecker,1) // description
34
35};
36
37#endif // AliZDCQAChecker_H