]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliQADataMakerSim.h
Fix fixed-string length bug
[u/mrichter/AliRoot.git] / STEER / AliQADataMakerSim.h
CommitLineData
54194e95 1#ifndef AliQADataMakerSim_H
2#define AliQADataMakerSim_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
54194e95 9// Base Class:
10// Produces the data needed to calculate the quality assurance.
11// All data must be mergeable objects.
12// Y. Schutz CERN July 2007
04236e67 13
14
15// --- ROOT system ---
16
17// --- Standard library ---
18
19// --- AliRoot header files ---
20#include "AliQADataMaker.h"
21
22class AliQADataMakerSim: public AliQADataMaker {
23
24public:
25
26 AliQADataMakerSim(const char * name="", const char * title="") ; // ctor
27 AliQADataMakerSim(const AliQADataMakerSim& qadm) ;
28 AliQADataMakerSim& operator = (const AliQADataMakerSim& qadm) ;
63c6f8ae 29 virtual ~AliQADataMakerSim() ; // dtor
04236e67 30
54194e95 31 virtual Int_t Add2DigitsList(TH1 * hist, const Int_t index) { return Add2List(hist, index, fDigitsQAList) ; }
32 virtual Int_t Add2ESDsList(TH1 * /*hist*/, const Int_t /*index*/) { return -1 ; }
33 virtual Int_t Add2HitsList(TH1 * hist, const Int_t index) { return Add2List(hist, index, fHitsQAList) ; }
34 virtual Int_t Add2RecPointsList(TH1 * /*hist*/, const Int_t /*index*/) { return -1 ; }
35 virtual Int_t Add2RawsList(TH1 * /*hist*/, const Int_t /*index*/) { return -1 ; }
36 virtual Int_t Add2SDigitsList(TH1 * hist, const Int_t index) { return Add2List(hist, index, fSDigitsQAList) ; }
96d67a8d 37 virtual void Exec(AliQA::TASKINDEX_t task, TObject * data) ;
38 virtual void EndOfCycle(AliQA::TASKINDEX_t task) ;
04236e67 39 virtual TH1 * GetDigitsData(const Int_t index) { return dynamic_cast<TH1 *>(GetData(fDigitsQAList, index)) ; }
40 virtual TH1 * GetESDsData(const Int_t /*index*/) { return NULL ; }
41 virtual TH1 * GetHitsData(const Int_t index) { return dynamic_cast<TH1 *>(GetData(fHitsQAList, index)) ; }
42 virtual TH1 * GetRecPointsData(const Int_t /*index*/) { return NULL ; }
43 virtual TH1 * GetRawsData(const Int_t /*index*/) { return NULL ; }
44 virtual TH1 * GetSDigitsData(const Int_t index) { return dynamic_cast<TH1 *>(GetData(fSDigitsQAList, index)) ; }
96d67a8d 45 virtual TObjArray * Init(AliQA::TASKINDEX_t task, Int_t run, Int_t cycles = -1) ;
46 virtual void Init(AliQA::TASKINDEX_t task, TObjArray * list, Int_t run, Int_t cycles = -1) ;
47 virtual void StartOfCycle(AliQA::TASKINDEX_t task, const Bool_t sameCycle = kFALSE) ;
04236e67 48
49protected:
50
96d67a8d 51 virtual void EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * ) {AliInfo("To be implemented by detectors");}
04236e67 52 virtual void InitDigits() {AliInfo("To be implemented by detectors");}
53 virtual void InitESDs() {AliFatal("Call not valid") ; }
54 virtual void InitHits() {AliInfo("To be implemented by detectors");}
55 virtual void InitRecPoints() {AliFatal("Call not valid") ; }
56 virtual void InitRaws() {AliFatal("Call not valid") ; }
57 virtual void InitSDigits() {AliInfo("To be implemented by detectors");}
58 virtual void MakeESDs(AliESDEvent * ) {AliFatal("Call not valid") ; }
59 virtual void MakeHits(TClonesArray * ) {AliInfo("To be implemented by detectors");}
60 virtual void MakeHits(TTree * ) {AliInfo("To be implemented by detectors");}
61 virtual void MakeDigits(TClonesArray * ) {AliInfo("To be implemented by detectors");}
62 virtual void MakeDigits(TTree * ) {AliInfo("To be implemented by detectors");}
63 virtual void MakeRaws(AliRawReader *) {AliFatal("Call not valid") ; }
64 virtual void MakeRecPoints(TTree * ) {AliFatal("Call not valid") ; }
65 virtual void MakeSDigits(TClonesArray * ) {AliInfo("To be implemented by detectors");}
66 virtual void MakeSDigits(TTree * ) {AliInfo("To be implemented by detectors");}
67 virtual void StartOfDetectorCycle() {AliInfo("To be implemented by detectors");}
68
69 TObjArray * fDigitsQAList ; //! list of the digits QA data objects
70 TObjArray * fHitsQAList ; //! list of the hits QA data objects
71 TObjArray * fSDigitsQAList ; //! list of the sdigits QA data objects
72
73 ClassDef(AliQADataMakerSim,1) // description
74
75};
76
77#endif // AliQADataMakerSim_H
eaff8e3b 78