#ifndef ALIACORDEQACHECKER_H #define ALIACORDEQACHECKER_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ // // Checks the quality assurance for ACORDE. // Default implementation from Yves skeleton // // Authors: // Mario Rodriguez Cahuantzi (FCFM-BUAP) // Luciano Diaz Gonzalez (ICN-UNAM) // Arturo Fernandez (FCFM-BUAP) // Last update: Nov. 14t 2009 --> MRC (FCFM-BUAP) //... // --- ROOT system --- class TFile ; class TH1F ; class TObjArray ; class TLine; class TPaveText; // --- Standard library --- // --- AliRoot header files --- #include "AliQACheckerBase.h" class AliACORDEQAChecker: public AliQACheckerBase { public: AliACORDEQAChecker(); // constructor AliACORDEQAChecker(const AliACORDEQAChecker& qac); AliACORDEQAChecker& operator = (const AliACORDEQAChecker& qac); virtual ~AliACORDEQAChecker(); // destructor virtual void Check(Double_t *, AliQAv1::ALITASK_t /*index*/) ; virtual void Check(Double_t *, AliQAv1::ALITASK_t /*index*/, TObjArray ** list, const AliDetectorRecoParam * /* recoParam*/) ; Double_t CheckAcordeRefHits(const TH1 * href, const TH1 * hdata) const; private: // for DQM shifter plots TPaveText * fTextDQMShifterInfo; //! Pave text for alarm in DQM plots TLine * fMax; //! Maximum hits allowed per module (normalized data) ClassDef(AliACORDEQAChecker,1) // description }; #endif // AliACORDEQAChecker_H