]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCQAChecker.h
Coverity fix (an obsolete constructor removed)
[u/mrichter/AliRoot.git] / ZDC / AliZDCQAChecker.h
CommitLineData
075a0e70 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
796c8b58 13#include "AliQAv1.h"
075a0e70 14#include "AliQACheckerBase.h"
15
891ddd89 16class TObjArray;
17
075a0e70 18class AliZDCQAChecker: public AliQACheckerBase {
19
20public:
21 AliZDCQAChecker() : AliQACheckerBase("ZDC","ZDC Quality Assurance Data Maker") {;} // ctor
22 AliZDCQAChecker(const AliZDCQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
075a0e70 23 virtual ~AliZDCQAChecker() {;} // dtor
24
25 protected:
26
a42ceb0e 27 virtual void Check(Double_t * test, AliQAv1::ALITASK_t index, TObjArray ** list,
486788fc 28 const AliDetectorRecoParam * /*recoParam*/);
891ddd89 29 void SetupHisto(const TObjArray& messages, TH1& histo, Float_t& code);
075a0e70 30
31 ClassDef(AliZDCQAChecker,1) // description
32
33};
34
35#endif // AliZDCQAChecker_H