]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONQAChecker.h
ESD file is added to the list of proof output files. It is then automatically merged...
[u/mrichter/AliRoot.git] / MUON / AliMUONQAChecker.h
CommitLineData
8aa336b1 1#ifndef ALIMUONQACHECKER_H
2#define ALIMUONQACHECKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
bf4d93eb 6// $Id$
8aa336b1 7
8/// \ingroup rec
9/// \class AliMUONQAChecker
f587a77d 10/// \brief Implementation of AliQACheckerBase for MCH and MTR
8aa336b1 11///
f587a77d 12// Author: Laurent Aphecetche
8aa336b1 13
14// --- AliRoot header files ---
15#include "AliQACheckerBase.h"
16
17class AliMUONQAChecker: public AliQACheckerBase {
18
19public:
20 AliMUONQAChecker();
21 AliMUONQAChecker(const AliMUONQAChecker& qac);
8aa336b1 22 virtual ~AliMUONQAChecker();
23
f587a77d 24protected:
25
ea49e931 26 virtual const Double_t Check(AliQA::ALITASK_t index) ;
f587a77d 27 virtual const Double_t Check(AliQA::ALITASK_t index, TObjArray * list) ;
28 virtual void SetQA(AliQA::ALITASK_t index, const Double_t value) const ;
29
30 const Double_t CheckRaws(TObjArray* list);
31
8aa336b1 32private:
33
34 ClassDef(AliMUONQAChecker,1) // MUON quality assurance checker
35
36};
37#endif