]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFQAChecker.h
free arrays before of return in PropagateBack
[u/mrichter/AliRoot.git] / TOF / AliTOFQAChecker.h
CommitLineData
6a9d0c9d 1#ifndef ALITOFQACHECKER_H
2#define ALITOFQACHECKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
8fd6fd6c 6/////////////////////////////////////////////////////////////////////
7// //
8// Checks the quality assurance. //
9// By analysis of the histograms & comparing with reference data //
10// Author S.Arcelli //
11// //
12/////////////////////////////////////////////////////////////////////
6a9d0c9d 13
4e25ac79 14#include "AliQAv1.h"
6a9d0c9d 15#include "AliQACheckerBase.h"
16
5c7c93fa 17//class TFile ;
18//class TH1F ;
19//class TH1I ;
20
6a9d0c9d 21class AliTOFQAChecker: public AliQACheckerBase {
22
23public:
24 AliTOFQAChecker() : AliQACheckerBase("TOF","TOF Quality Assurance Data Maker") {;} // ctor
25 AliTOFQAChecker(const AliTOFQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
a3b608e8 26 AliTOFQAChecker& operator = (const AliTOFQAChecker& qac);
32f820ea 27
6a9d0c9d 28 virtual ~AliTOFQAChecker() {;} // dtor
29
f2265adb 30 protected:
31
a42ceb0e 32 virtual void Check(Double_t * test, AliQAv1::ALITASK_t /*index*/, TObjArray ** list,
486788fc 33 const AliDetectorRecoParam * recoParam=0) ;
32f820ea 34 Int_t CheckRaws(TH1* histo, Int_t specie);
35
693a790d 36 ClassDef(AliTOFQAChecker,2) // description
6a9d0c9d 37
38};
39
40#endif // AliTOFQAChecker_H