]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCQAChecker.h
Creation of vertex constrained track parameters is moved to AliHLTVertexer,
[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 "AliQA.h"
14 #include "AliQACheckerBase.h"
15
16 class AliZDCQAChecker: public AliQACheckerBase {
17
18 public:
19   AliZDCQAChecker() : AliQACheckerBase("ZDC","ZDC Quality Assurance Data Maker") {;}          // ctor
20   AliZDCQAChecker(const AliZDCQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
21   virtual ~AliZDCQAChecker() {;} // dtor
22
23  protected:
24
25   virtual Double_t * Check(AliQAv1::ALITASK_t index, TObjArray ** list,
26       AliDetectorRecoParam * /*recoParam*/); 
27   
28   ClassDef(AliZDCQAChecker,1)  // description 
29
30 };
31
32 #endif // AliZDCQAChecker_H