]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0QADataMakerRec.h
Centrality update (Alberica)
[u/mrichter/AliRoot.git] / T0 / AliT0QADataMakerRec.h
CommitLineData
04236e67 1#ifndef AliT0QADataMakerRec_H
2#define AliT0QADataMakerRec_H
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
9//
332b9234 10// Alla.Maevskaya@cern.ch
11//
04236e67 12
13
14// --- ROOT system ---
15
16
17
18// --- Standard library ---
19// --- AliRoot header files ---
20
21#include "AliQADataMakerRec.h"
332b9234 22#include "AliT0RecoParam.h"
04236e67 23
24class AliT0QADataMakerRec: public AliQADataMakerRec {
25
26public:
27 AliT0QADataMakerRec() ; // ctor
28 AliT0QADataMakerRec(const AliT0QADataMakerRec& qadm) ;
29 AliT0QADataMakerRec& operator = (const AliT0QADataMakerRec& qadm) ;
59f47540 30 virtual ~AliT0QADataMakerRec(); // dtor
04236e67 31
32private:
33 virtual void InitRaws() ; //book Digit QA histo
34 virtual void InitRecPoints(); //book cluster QA histo
44ed7a66 35 virtual void InitDigits() ;
04236e67 36 virtual void InitESDs() ; //book ESD QA histo
37 virtual void MakeRaws(AliRawReader* rawReader) ;
38 virtual void MakeRecPoints(TTree * clusters) ; //Fill cluster QA histo
6252ceeb 39 virtual void MakeDigits() {;}
44ed7a66 40 virtual void MakeDigits(TTree * digTree);
04236e67 41 virtual void MakeESDs(AliESDEvent * esd) ; //Fill hit QA histo
4e25ac79 42 virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** list) ;
04236e67 43 virtual void StartOfDetectorCycle() ;
345c3cf8 44 virtual void ResetDetector(AliQAv1::TASKINDEX_t task) ;
1d7681da 45
332b9234 46 const AliT0RecoParam* GetRecoParam() { return dynamic_cast<const AliT0RecoParam*>(fRecoParam);}
92664bc8 47
48 // RS Commented by Ruben, read below:
49 /*
50 // RS: Don't use custom counters, they create problems with trigger cloning
51 // Use instead framework counters, incremented in the end of this routine
52 // RS: There is some inconsistency here: the separation of physics and calib. events/histos is done by
53 // fEventSpecie. Why do we book separate histos on different slots for calib and physics ?
54 // I am changing this in such way that we don't need local counters like fNumTriggers (the corresponding
55 // histos now incremented in the MakeRaws, and for the normalization I will use the framework's counters
56 // AliQADataMaker::GetEvCountCycle(...), AliQADataMaker::GetEvCountTotal(...)
57 //
58 // I think the histos xx+250 should be suppressed (the xx calib histos of specie==calibration will be
59 // used automatically)
60
61
1d7681da 62 Int_t fNumTriggers[6]; //number of trigger signals;
63 Int_t fNumTriggersCal[6]; //number of calibration trigger signals;
1d7681da 64
332b9234 65 Int_t fnEventCal;
66 Int_t fnEventPhys;
1a78aa31 67 Int_t feffC[24];
68 Int_t feffPhysC[24];
0d849919 69 Int_t feffA[24];
1a78aa31 70 Int_t feffPhysA[24];
394c1a6d 71 Int_t feffqtc[24];
1a78aa31 72 Int_t feffqtcPhys[24];
332b9234 73 Float_t fTrEffCal[6];
74 Float_t fTrEffPhys[6];
59f47540 75 TH1F* fhTimeDiff[24];
f542cc56 76*/
faca085d 77 Int_t fMeans[24];
1d7681da 78
92664bc8 79 ClassDef(AliT0QADataMakerRec,7) // description
04236e67 80
81};
82
83#endif // AliT0QADataMakerRec_H