]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROQADataMakerRec.h
correct binError calc + check that histograms exist before trying to use them
[u/mrichter/AliRoot.git] / VZERO / AliVZEROQADataMakerRec.h
CommitLineData
0b19d121 1#ifndef ALIVZEROQADATAMAKERREC_H
2#define ALIVZEROQADATAMAKERREC_H
508b9fc0 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
508b9fc0 6
0b19d121 7// Produces the data needed to calculate the quality assurance
8// All data must be mergeable objects
9// Handles ESDs and RAWs
10// Histos will be used for Raw Data control and monitoring
508b9fc0 11
12// --- ROOT system ---
3f563b2b 13class TH1F;
14class TH1I;
15class TObjArray;
508b9fc0 16
17// --- Standard library ---
18
19// --- AliRoot header files ---
20#include "AliQADataMakerRec.h"
21
23eb5160 22class AliCDBManager;
23class AliCDBStorage;
24class AliVZEROCalibData;
508b9fc0 25
26class AliVZEROQADataMakerRec: public AliQADataMakerRec {
27
9bd82f77 28public:
0b19d121 29 // Histograms for Raw data control
30 enum HRawType_t {kPedestalInt0,kPedestalInt1,kPedestalCycleInt0,kPedestalCycleInt1,kPedestalTimeInt0,kPedestalTimeInt1
31 ,kChargeEoIInt0,kChargeEoIInt1,kChargeEoITimeInt0,kChargeEoITimeInt1,kChargeEoICycleInt0,kChargeEoICycleInt1
32 ,kChargeEoIBBInt0,kChargeEoIBBInt1,kChargeEoIBGInt0,kChargeEoIBGInt1,kChargeVsClockInt0,kChargeVsClockInt1
33 ,kChargeMBBB0BG0Int0,kChargeMBBB0BG1Int0,kChargeMBBB1BG0Int0,kChargeMBBB1BG1Int0
34 ,kChargeMBBB0BG0Int1,kChargeMBBB0BG1Int1,kChargeMBBB1BG0Int1,kChargeMBBB1BG1Int1
35 ,kWidth,kWidthBB,kWidthBG,kHPTDCTime,kHPTDCTimeBB,kHPTDCTimeBG,kBBFlagVsClock,kBGFlagVsClock
36 ,kMultiV0A,kMultiV0C,kChargeV0A,kChargeV0C,kChargeV0
37 ,kV0ATime,kV0CTime,kDiffTime
a8e23456 38 ,kRawMIPV0A,kRawMIPV0C,kRawMIPV0,kRawMIPChannel
3dc953e2 39 ,kRawMeanChargePerRing,kRawMeanFlagPerRing,kRawDQMCharge,kRawDQMFlag} ;
9bd82f77 40
0b19d121 41 enum HESDType_t {kCellMultiV0A,kCellMultiV0C,kMIPMultiV0A,kMIPMultiV0C,kMIPMultiChannel
42 ,kBBFlag,kBGFlag,kChargeChannel,kTimeChannel
43 ,kESDV0ATime,kESDV0CTime,kESDDiffTime};
9bd82f77 44
508b9fc0 45public:
0b19d121 46 AliVZEROQADataMakerRec() ; // constructor
508b9fc0 47 AliVZEROQADataMakerRec(const AliVZEROQADataMakerRec& qadm) ;
48 AliVZEROQADataMakerRec& operator = (const AliVZEROQADataMakerRec& qadm) ;
49 virtual ~AliVZEROQADataMakerRec() {;} // destructor
23eb5160 50 AliVZEROCalibData *GetCalibData() const;
6252ceeb 51 virtual void InitRaws() ;
a8e23456 52 void SetTrendingUpdateTime(size_t time) {fTrendingUpdateTime = time;};
508b9fc0 53
23eb5160 54protected:
0b19d121 55 AliVZEROCalibData *fCalibData; //! calibration data
23eb5160 56
508b9fc0 57private:
57eead61 58 virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list) ;
508b9fc0 59 virtual void InitESDs() ;
44ed7a66 60 virtual void InitDigits();
508b9fc0 61 virtual void MakeESDs(AliESDEvent * esd) ;
44ed7a66 62 virtual void MakeRaws(AliRawReader* rawReader) ;
6252ceeb 63 virtual void MakeDigits() ;
44ed7a66 64 virtual void MakeDigits(TTree* digitTree) ;
508b9fc0 65 virtual void StartOfDetectorCycle() ;
a8e23456 66 void AddTrendingEntry();
508b9fc0 67
57eead61 68 Int_t fEvent; // event index
69 Int_t fEven[64]; // even charge integrators
70 Int_t fOdd[64]; // odd charge intergators
71 Float_t fADCmean[128]; // mean adc per integrator
72 size_t fNTotEvents; // total number of events
73 size_t fNSubEvents; // number of events used in trending histos
74 size_t fTrendingUpdateEvent; // event index of last update of the trending histos
75 size_t fNTrendingUpdates; // number of updates in trending histos
76 size_t fTrendingUpdateTime; // trending histos update time
77 UInt_t fCycleStartTime; // timestamp of QA start-of-cycle
78 UInt_t fCycleStopTime; // timestamp of QA end-of-cycle
79 Double_t fMonitorRate; // monitoring rate
80 Double_t fChargePerRing[8]; // charge per ring
81 Double_t fFlagPerRing[8]; // flag per ring
82 Double_t fChargePerChannel[64]; // charge per channel
83 Double_t fFlagPerChannel[64]; // flag per channel
84 Double_t fMeanChargePerChannel[64]; // mean charge per channel
85 Double_t fMeanFlagPerChannel[64]; // mean flag per channel
23eb5160 86
3dc953e2 87 ClassDef(AliVZEROQADataMakerRec,2) // description
508b9fc0 88
89};
90
0b19d121 91#endif // AliVZEROQADATAMAKERREC_H