]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCQAChecker.h
Fixes for #93692: Physics selection does not work in QA for 2012 data - missing trigger
[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
075a0e70 22 virtual ~AliZDCQAChecker() {;} // dtor
23
24 protected:
25
a42ceb0e 26 virtual void Check(Double_t * test, AliQAv1::ALITASK_t index, TObjArray ** list,
486788fc 27 const AliDetectorRecoParam * /*recoParam*/);
891ddd89 28 void SetupHisto(const TObjArray& messages, TH1& histo, Float_t& code);
b94da054 29
30 private:
31 AliZDCQAChecker(const AliZDCQAChecker& qac); // cpy ctor
32 AliZDCQAChecker& operator= (const AliZDCQAChecker & /*checker*/);
075a0e70 33 ClassDef(AliZDCQAChecker,1) // description
34
35};
36
37#endif // AliZDCQAChecker_H