]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDCalibPadStatus.h
Additional protection in the destructor: when you have a chain of calls returning...
[u/mrichter/AliRoot.git] / TRD / AliTRDCalibPadStatus.h
CommitLineData
cf46274d 1#ifndef ALITRDCALIBPADSTATUS_H
170c35f1 2#define ALITRDCALIBPADSTATUS_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9// //
10// TRD calibration class for online calibration //
11// //
12///////////////////////////////////////////////////////////////////////////////
13
14class TObjArray;
15class TH2F;
f162af62 16
17class AliRawReader;
18
289cc637 19class AliTRDCalDet;
20class AliTRDCalPad;
170c35f1 21class AliTRDCalROC;
22class AliTRDCalPadStatus;
5e64ce0d 23class AliTRDrawStreamBase;
f162af62 24class AliTRDgeometry;
25
170c35f1 26struct eventHeaderStruct;
27
28class AliTRDCalibPadStatus : public TObject {
29
30public:
31
32 AliTRDCalibPadStatus();
33 AliTRDCalibPadStatus(const AliTRDCalibPadStatus &ped);
34 virtual ~AliTRDCalibPadStatus();
35
36 AliTRDCalibPadStatus& operator = (const AliTRDCalibPadStatus &source);
37
5e64ce0d 38 Int_t ProcessEvent(AliTRDrawStreamBase *rawStream, Bool_t nocheck = kFALSE);
3a0f6479 39 Int_t ProcessEvent(AliRawReader *rawReader, Bool_t nocheck = kFALSE);
3a433fc4 40 Int_t ProcessEvent(eventHeaderStruct *event, Bool_t nocheck = kFALSE);
170c35f1 41
170c35f1 42 Int_t UpdateHisto(const Int_t idet, const Int_t iRow, const Int_t iCol,
e4db522f 43 const Int_t signal, const Int_t crowMax, const Int_t ccold, const Int_t icMcm);
6ace5fe2 44
170c35f1 45 void AnalyseHisto();
46 AliTRDCalPadStatus *CreateCalPadStatus();
289cc637 47 AliTRDCalPad *CreateCalPad();
0bc7827a 48 AliTRDCalDet *CreateCalDet() const;
3a0f6479 49
6ace5fe2 50 void SetCalRocMean(AliTRDCalROC *mean, Int_t det);
51 void SetCalRocRMS(AliTRDCalROC *rms, Int_t det);
52
e4db522f 53 void SetCalRocMeand(AliTRDCalROC *mean, Int_t det);
54 void SetCalRocRMSd(AliTRDCalROC *rms, Int_t det);
55
170c35f1 56 //
170c35f1 57 AliTRDCalROC* GetCalRocMean(Int_t det, Bool_t force=kFALSE); // get calibration object
58 AliTRDCalROC* GetCalRocRMS(Int_t det, Bool_t force=kFALSE); // get calibration object
59
e4db522f 60 AliTRDCalROC* GetCalRocMeand(Int_t det, Bool_t force=kFALSE); // get calibration object
61 AliTRDCalROC* GetCalRocRMSd(Int_t det, Bool_t force=kFALSE); // get calibration object
62
170c35f1 63 TH2F* GetHisto (Int_t det, Bool_t force=kFALSE); // get refernce histogram
64
65 void DumpToFile(const Char_t *filename, const Char_t *dir="", const Bool_t append=kFALSE);
66 //
67 Int_t GetAdcMin() const { return fAdcMin; }
68 Int_t GetAdcMax() const { return fAdcMax; }
69
70 void SetRangeAdc (Int_t aMin, Int_t aMax){ fAdcMin=aMin; fAdcMax=aMax; } // Set adc range
71
72
d95484e4 73 Bool_t TestEventHisto(Int_t nevent, Int_t sm, Int_t ch); //test the fast approach to fill histograms
170c35f1 74
e4db522f 75 private:
170c35f1 76
f162af62 77 // Geometry
78 AliTRDgeometry *fGeo; //! The TRD geometry
79
170c35f1 80 Int_t fAdcMin; // min adc channel of pedestal value
81 Int_t fAdcMax; // max adc channel of pedestal value
82 Int_t fDetector; // Current detector
cf46274d 83 Int_t fNumberOfTimeBins; // Current number of time bins
170c35f1 84
170c35f1 85 TObjArray fCalRocArrayMean; // Array of AliTRDCalROC class for signal width calibration
86 TObjArray fCalRocArrayRMS; // Array of AliTRDCalROC class for mean width calibration
87
e4db522f 88 TObjArray fCalRocArrayMeand; // Array of AliTRDCalROC class for signal width calibration doubled
89 TObjArray fCalRocArrayRMSd; // Array of AliTRDCalROC class for mean width calibration doubled
90
170c35f1 91 TObjArray fHistoArray; // Array of histos for mean width calibration
92
e4db522f 93
cf46274d 94 AliTRDCalROC* GetCalRoc(Int_t det, TObjArray* arr, Bool_t force);
95
170c35f1 96 TH2F* GetHisto(Int_t det, TObjArray *arr,
97 Int_t nbinsY, Float_t ymin, Float_t ymax,
98 Char_t *type, Bool_t force);
99
100 // Some basic geometry function
053767a4 101 virtual Int_t GetLayer(Int_t d) const;
102 virtual Int_t GetStack(Int_t d) const;
170c35f1 103 virtual Int_t GetSector(Int_t d) const;
104
3a0f6479 105 ClassDef(AliTRDCalibPadStatus,1)
170c35f1 106
3a0f6479 107};
170c35f1 108#endif
109