]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCQAChecker.h
Update in QA class to follow change in TDC cabling
[u/mrichter/AliRoot.git] / ZDC / AliZDCQAChecker.h
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
16 class TObjArray;
17
18 class AliZDCQAChecker: public AliQACheckerBase {
19
20 public:
21   AliZDCQAChecker() : AliQACheckerBase("ZDC","ZDC Quality Assurance Data Maker") {;}          // ctor
22   AliZDCQAChecker(const AliZDCQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
23   virtual ~AliZDCQAChecker() {;} // dtor
24
25  protected:
26
27   virtual void Check(Double_t * test, AliQAv1::ALITASK_t index, TObjArray ** list,
28       const AliDetectorRecoParam * /*recoParam*/); 
29   void SetupHisto(const TObjArray& messages, TH1& histo, Float_t& code);
30   
31   ClassDef(AliZDCQAChecker,1)  // description 
32
33 };
34
35 #endif // AliZDCQAChecker_H