]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ACORDE/AliACORDEQAChecker.h
style modifications (Markus)
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQAChecker.h
1 #ifndef ALIACORDEQACHECKER_H
2 #define ALIACORDEQACHECKER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 //
7 //  Checks the quality assurance for ACORDE. 
8 //  Default implementation from Yves skeleton
9 //
10 //  Authors:
11 //      Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)
12 //      Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
13 //      Arturo Fernandez <afernan@mail.cern.ch> (FCFM-BUAP)
14 //  Last update: Nov. 14t 2009 --> MRC <mrodrigu@mail.cern.ch> (FCFM-BUAP) 
15 //...
16
17
18 // --- ROOT system ---
19 class TFile ; 
20 class TH1F ; 
21 class TObjArray ;
22
23 // --- Standard library ---
24
25 // --- AliRoot header files ---
26 #include "AliQACheckerBase.h"
27
28 class AliACORDEQAChecker: public AliQACheckerBase {
29
30 public:
31   AliACORDEQAChecker() : AliQACheckerBase("ACORDE","ACORDE Quality Assurance Data Checker") {;}          // constructor
32   virtual ~AliACORDEQAChecker() {;} // destructor
33   virtual void Check(Double_t *, AliQAv1::ALITASK_t /*index*/) ;
34   virtual void Check(Double_t *, AliQAv1::ALITASK_t /*index*/, TObjArray ** list, const AliDetectorRecoParam * /* recoParam*/) ;
35
36   Double_t CheckAcordeRefHits(const TH1 * href, const TH1 * hdata) const;
37
38 private:
39
40   
41   ClassDef(AliACORDEQAChecker,1)  // description 
42
43 };
44
45 #endif // AliACORDEQAChecker_H