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 | |
14 | class TObjArray; |
15 | class TH2F; |
f162af62 |
16 | |
17 | class AliRawReader; |
18 | |
289cc637 |
19 | class AliTRDCalDet; |
20 | class AliTRDCalPad; |
170c35f1 |
21 | class AliTRDCalROC; |
22 | class AliTRDCalPadStatus; |
5e64ce0d |
23 | class AliTRDrawStreamBase; |
f162af62 |
24 | class AliTRDgeometry; |
25 | |
170c35f1 |
26 | struct eventHeaderStruct; |
27 | |
28 | class AliTRDCalibPadStatus : public TObject { |
29 | |
30 | public: |
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); |
6bbdc11a |
40 | Int_t ProcessEvent(const eventHeaderStruct *event, Bool_t nocheck = kFALSE); |
170c35f1 |
41 | |
8799e123 |
42 | void Destroy(); |
170c35f1 |
43 | Int_t UpdateHisto(const Int_t idet, const Int_t iRow, const Int_t iCol, |
e4db522f |
44 | const Int_t signal, const Int_t crowMax, const Int_t ccold, const Int_t icMcm); |
6ace5fe2 |
45 | |
170c35f1 |
46 | void AnalyseHisto(); |
47 | AliTRDCalPadStatus *CreateCalPadStatus(); |
289cc637 |
48 | AliTRDCalPad *CreateCalPad(); |
0bc7827a |
49 | AliTRDCalDet *CreateCalDet() const; |
3a0f6479 |
50 | |
6ace5fe2 |
51 | void SetCalRocMean(AliTRDCalROC *mean, Int_t det); |
52 | void SetCalRocRMS(AliTRDCalROC *rms, Int_t det); |
53 | |
e4db522f |
54 | void SetCalRocMeand(AliTRDCalROC *mean, Int_t det); |
55 | void SetCalRocRMSd(AliTRDCalROC *rms, Int_t det); |
56 | |
170c35f1 |
57 | // |
170c35f1 |
58 | AliTRDCalROC* GetCalRocMean(Int_t det, Bool_t force=kFALSE); // get calibration object |
59 | AliTRDCalROC* GetCalRocRMS(Int_t det, Bool_t force=kFALSE); // get calibration object |
60 | |
e4db522f |
61 | AliTRDCalROC* GetCalRocMeand(Int_t det, Bool_t force=kFALSE); // get calibration object |
62 | AliTRDCalROC* GetCalRocRMSd(Int_t det, Bool_t force=kFALSE); // get calibration object |
63 | |
170c35f1 |
64 | TH2F* GetHisto (Int_t det, Bool_t force=kFALSE); // get refernce histogram |
65 | |
8368e0ee |
66 | void DumpToFile(const Char_t *filename, const Char_t *dir="", Bool_t append=kFALSE); |
170c35f1 |
67 | // |
68 | Int_t GetAdcMin() const { return fAdcMin; } |
69 | Int_t GetAdcMax() const { return fAdcMax; } |
70 | |
71 | void SetRangeAdc (Int_t aMin, Int_t aMax){ fAdcMin=aMin; fAdcMax=aMax; } // Set adc range |
72 | |
73 | |
d95484e4 |
74 | Bool_t TestEventHisto(Int_t nevent, Int_t sm, Int_t ch); //test the fast approach to fill histograms |
170c35f1 |
75 | |
e4db522f |
76 | private: |
170c35f1 |
77 | |
f162af62 |
78 | // Geometry |
79 | AliTRDgeometry *fGeo; //! The TRD geometry |
80 | |
170c35f1 |
81 | Int_t fAdcMin; // min adc channel of pedestal value |
82 | Int_t fAdcMax; // max adc channel of pedestal value |
83 | Int_t fDetector; // Current detector |
cf46274d |
84 | Int_t fNumberOfTimeBins; // Current number of time bins |
170c35f1 |
85 | |
170c35f1 |
86 | TObjArray fCalRocArrayMean; // Array of AliTRDCalROC class for signal width calibration |
87 | TObjArray fCalRocArrayRMS; // Array of AliTRDCalROC class for mean width calibration |
88 | |
e4db522f |
89 | TObjArray fCalRocArrayMeand; // Array of AliTRDCalROC class for signal width calibration doubled |
90 | TObjArray fCalRocArrayRMSd; // Array of AliTRDCalROC class for mean width calibration doubled |
91 | |
170c35f1 |
92 | TObjArray fHistoArray; // Array of histos for mean width calibration |
93 | |
e4db522f |
94 | |
cf46274d |
95 | AliTRDCalROC* GetCalRoc(Int_t det, TObjArray* arr, Bool_t force); |
96 | |
170c35f1 |
97 | TH2F* GetHisto(Int_t det, TObjArray *arr, |
98 | Int_t nbinsY, Float_t ymin, Float_t ymax, |
a6e0ebfe |
99 | const Char_t *type, Bool_t force); |
170c35f1 |
100 | |
101 | // Some basic geometry function |
053767a4 |
102 | virtual Int_t GetLayer(Int_t d) const; |
103 | virtual Int_t GetStack(Int_t d) const; |
170c35f1 |
104 | virtual Int_t GetSector(Int_t d) const; |
105 | |
3a0f6479 |
106 | ClassDef(AliTRDCalibPadStatus,1) |
170c35f1 |
107 | |
3a0f6479 |
108 | }; |
170c35f1 |
109 | #endif |