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