]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliQADataMakerRec.h
Make use of new method AliRawReader::GetNumberOfEvents() - goinf to the last event...
[u/mrichter/AliRoot.git] / STEER / AliQADataMakerRec.h
CommitLineData
202374b1 1#ifndef ALIQADATAMAKERREC_H
2#define ALIQADATAMAKERREC_H
04236e67 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7/* $Id$ */
8
202374b1 9//
10// Base Class:
11// Produces the data needed to calculate the quality assurance.
12// All data must be mergeable objects.
13// Y. Schutz CERN July 2007
14//
04236e67 15
16// --- ROOT system ---
17
18// --- Standard library ---
19
20// --- AliRoot header files ---
21#include "AliQADataMaker.h"
92a357bf 22#include "AliQA.h"
04236e67 23
24class AliQADataMakerRec: public AliQADataMaker {
25
26public:
27
28 AliQADataMakerRec(const char * name="", const char * title="") ; // ctor
29 AliQADataMakerRec(const AliQADataMakerRec& qadm) ;
30 AliQADataMakerRec& operator = (const AliQADataMakerRec& qadm) ;
63c6f8ae 31 virtual ~AliQADataMakerRec() ; // dtor
04236e67 32
54194e95 33 virtual Int_t Add2DigitsList(TH1 * /*hist*/, const Int_t /*index*/) { return -1 ; }
34 virtual Int_t Add2ESDsList(TH1 * hist, const Int_t index) { return Add2List(hist, index, fESDsQAList) ; }
35 virtual Int_t Add2HitsList(TH1 * /*hist*/, const Int_t /*index*/) { return -1 ; }
36 virtual Int_t Add2RecPointsList(TH1 * hist, const Int_t index) { return Add2List(hist, index, fRecPointsQAList) ; }
37 virtual Int_t Add2RawsList(TH1 * hist, const Int_t index) { return Add2List(hist, index, fRawsQAList) ; }
38 virtual Int_t Add2SDigitsList(TH1 * /*hist*/, const Int_t /*index*/) { return -1 ; }
96d67a8d 39 virtual void Exec(AliQA::TASKINDEX_t task, TObject * data) ;
40 virtual void EndOfCycle(AliQA::TASKINDEX_t task) ;
b7691c68 41 virtual void EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * ) {AliInfo("To be implemented by detectors");}
04236e67 42 virtual TH1 * GetDigitsData(const Int_t /*index*/) { return NULL ; }
43 virtual TH1 * GetESDsData(const Int_t index) { return dynamic_cast<TH1 *>(GetData(fESDsQAList, index)) ; }
44 virtual TH1 * GetHitsData(const Int_t /*index*/) { return NULL ; }
45 virtual TH1 * GetRecPointsData(const Int_t index) { return dynamic_cast<TH1 *>(GetData(fRecPointsQAList, index)) ; }
eaff8e3b 46 virtual TH1 * GetRawsData(const Int_t index) { return dynamic_cast<TH1 *>(GetData(fRawsQAList, index)) ; }
04236e67 47 virtual TH1 * GetSDigitsData(const Int_t /*index*/) { return NULL ; }
96d67a8d 48 virtual TObjArray * Init(AliQA::TASKINDEX_t task, Int_t run, Int_t cycles = -1) ;
49 virtual void Init(AliQA::TASKINDEX_t task, TObjArray * list, Int_t run, Int_t cycles = -1) ;
50 virtual void StartOfCycle(AliQA::TASKINDEX_t task, const Bool_t sameCycle = kFALSE) ;
04236e67 51
b8bd1ab8 52 virtual void SetRecoParam(const AliDetectorRecoParam *param) { fRecoParam = param; }
53
04236e67 54protected:
55
04236e67 56 virtual void InitDigits() {AliFatal("Call not valid") ; }
57 virtual void InitESDs() {AliInfo("To be implemented by detectors");}
58 virtual void InitHits() {AliFatal("Call not valid") ; }
59 //virtual void InitRecParticles() {AliInfo("To be implemented by detectors");}
60 virtual void InitRecPoints() {AliInfo("To be implemented by detectors");}
61 virtual void InitRaws() {AliInfo("To be implemented by detectors");}
62 virtual void InitSDigits() {AliFatal("Call not valid") ; }
63 //virtual void InitTrackSegments() {AliInfo("To ne implemented by detectors");}
64 virtual void MakeESDs(AliESDEvent * ) {AliInfo("To be implemented by detectors");}
65 virtual void MakeHits(TClonesArray * ) {AliFatal("Call not valid") ; }
66 virtual void MakeHits(TTree * ) {AliFatal("Call not valid") ; }
67 virtual void MakeDigits(TClonesArray * ) {AliFatal("Call not valid") ; }
68 virtual void MakeDigits(TTree * ) {AliFatal("Call not valid") ; }
69 //virtual void MakeRecParticles(TClonesArray * ) {AliInfo("To be implemented by detectors");}
70 virtual void MakeRaws(AliRawReader *) {AliInfo("To be implemented by detectors");}
71 virtual void MakeRecPoints(TTree * ) {AliInfo("To be implemented by detectors");}
72 virtual void MakeSDigits(TClonesArray * ) {AliFatal("Call not valid") ; }
73 virtual void MakeSDigits(TTree * ) {AliFatal("Call not valid") ; }
74 virtual void StartOfDetectorCycle() {AliInfo("To be implemented by detectors");}
75
76 TObjArray * fESDsQAList ; //! list of the ESDs QA data objects
77 TObjArray * fRawsQAList ; //! list of the raws QA data objects
78 TObjArray * fRecPointsQAList ; //! list of the RecPoints QA data objects
b8bd1ab8 79
80 const AliDetectorRecoParam *fRecoParam; //! const pointer to the reco parameters to be used in the reco QA
04236e67 81
b8bd1ab8 82 ClassDef(AliQADataMakerRec,2) // description
04236e67 83
84};
85
202374b1 86#endif // ALIQADATAMAKERREC_H