075a0e70 |
1 | /************************************************************************** |
2 | * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
3 | * * |
4 | * Author: The ALICE Off-line Project. * |
5 | * Contributors are mentioned in the code where appropriate. * |
6 | * * |
7 | * Permission to use, copy, modify and distribute this software and its * |
8 | * documentation strictly for non-commercial purposes is hereby granted * |
9 | * without fee, provided that the above copyright notice appears in all * |
10 | * copies and that both the copyright notice and this permission notice * |
11 | * appear in the supporting documentation. The authors make no claims * |
12 | * about the suitability of this software for any purpose. It is * |
13 | * provided "as is" without express or implied warranty. * |
14 | **************************************************************************/ |
fdc38bb2 |
15 | |
16 | /////////////////////////////////////////////////////////////////////// |
17 | // // |
18 | // Produces the data needed to calculate the ZDC quality assurance. // |
19 | // QA objects are 1 & 2 Dimensional histograms. // |
20 | // author: C. Oppedisano // |
21 | // // |
22 | /////////////////////////////////////////////////////////////////////// |
23 | |
075a0e70 |
24 | // --- ROOT system --- |
25 | #include <TClonesArray.h> |
26 | #include <TFile.h> |
27 | #include <TH1F.h> |
28 | #include <TH2F.h> |
29 | #include <TProfile.h> |
30 | #include <Riostream.h> |
31 | // --- Standard library --- |
32 | |
33 | // --- AliRoot header files --- |
34 | #include "AliLog.h" |
35 | #include "AliQAChecker.h" |
f5e4ee59 |
36 | #include "AliZDCReco.h" |
78328afd |
37 | #include "AliRawReader.h" |
075a0e70 |
38 | #include "AliZDCQADataMakerRec.h" |
796c8b58 |
39 | #include "AliZDCPedestals.h" |
075a0e70 |
40 | #include "AliZDCRawStream.h" |
44ed7a66 |
41 | #include "AliZDCDigit.h" |
075a0e70 |
42 | #include "AliESDZDC.h" |
43 | #include "AliESDEvent.h" |
44 | |
45 | ClassImp(AliZDCQADataMakerRec) |
46 | |
47 | //____________________________________________________________________________ |
48 | AliZDCQADataMakerRec::AliZDCQADataMakerRec() : |
eca4fa66 |
49 | AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kZDC), "ZDC Quality Assurance Data Maker"), |
796c8b58 |
50 | fPedCalibData(0x0) |
075a0e70 |
51 | { |
52 | // ctor |
53 | } |
54 | |
55 | //____________________________________________________________________________ |
56 | AliZDCQADataMakerRec::AliZDCQADataMakerRec(const AliZDCQADataMakerRec& qadm) : |
eca4fa66 |
57 | AliQADataMakerRec(), |
2537e870 |
58 | fPedCalibData(qadm.fPedCalibData) |
796c8b58 |
59 | |
075a0e70 |
60 | { |
61 | //copy ctor |
62 | SetName((const char*)qadm.GetName()); |
63 | SetTitle((const char*)qadm.GetTitle()); |
64 | } |
65 | |
66 | //__________________________________________________________________ |
67 | AliZDCQADataMakerRec& AliZDCQADataMakerRec::operator = (const AliZDCQADataMakerRec& qadm ) |
68 | { |
69 | // Equal operator. |
70 | this->~AliZDCQADataMakerRec(); |
71 | new(this) AliZDCQADataMakerRec(qadm); |
72 | return *this; |
73 | } |
74 | |
2537e870 |
75 | //____________________________________________________________________________ |
76 | AliZDCQADataMakerRec::~AliZDCQADataMakerRec() |
77 | { |
98994547 |
78 | if(fPedCalibData && !(AliCDBManager::Instance()->GetCacheFlag())){ |
2537e870 |
79 | delete fPedCalibData; |
80 | fPedCalibData=0; |
81 | } |
82 | } |
83 | |
44ed7a66 |
84 | //____________________________________________________________________________ |
796c8b58 |
85 | AliZDCPedestals* AliZDCQADataMakerRec::GetPedCalibData() const |
86 | { |
87 | |
88 | // Retrieving pedestal calibration object from OCDB |
89 | AliCDBEntry *entry = AliCDBManager::Instance()->Get("ZDC/Calib/Pedestals"); |
90 | if(!entry) AliWarning("No calibration data loaded!"); |
91 | |
92 | AliZDCPedestals *calibdata = (AliZDCPedestals*) (entry->GetObject()); |
93 | if(!calibdata) AliFatal("Wrong calibration object in calibration file!"); |
94 | |
95 | return calibdata; |
96 | |
97 | } |
98 | |
2537e870 |
99 | //____________________________________________________________________________ |
100 | void AliZDCQADataMakerRec::InitDigits() |
101 | { |
102 | // create Digits histograms in Digits subdir |
103 | // |
104 | const Bool_t expert = kTRUE ; |
105 | const Bool_t image = kTRUE ; |
106 | |
107 | // ------------------- HIGH GAIN CHAIN --------------------------- |
108 | TH1F * hDigZNCTot = new TH1F("hDigZNCTot", "Signal in ZNC;Amplitude [ADC counts];Counts", 100, 0., 6000.); |
109 | TH1F * hDigZNATot = new TH1F("hDigZNATot", "Signal in ZNA;Amplitude [ADC counts];Counts", 100, 0., 6000.); |
110 | TH1F * hDigZPCTot = new TH1F("hDigZPCTot", "Signal in ZPC;Amplitude [ADC counts];Counts", 100, 0., 6000.); |
111 | TH1F * hDigZPATot = new TH1F("hDigZPATot", "Signal in ZPA;Amplitude [ADC counts];Counts", 100, 0., 6000.); |
112 | Add2DigitsList(hDigZNCTot, 0, !expert, image); |
113 | Add2DigitsList(hDigZNATot, 1, !expert, image); |
114 | Add2DigitsList(hDigZPCTot, 2, !expert, image); |
115 | Add2DigitsList(hDigZPATot, 3, !expert, image); |
116 | // |
117 | TH1F * hDigSumQZNC = new TH1F("hDigSumQZNC", "Signal in 4 ZNC PMQ;Amplitude [ADC counts];Counts",100, 0., 4000.); |
118 | TH1F * hDigSumQZNA = new TH1F("hDigSumQZNA", "Signal in 4 ZNA PMQ;Amplitude [ADC counts];Counts",100, 0., 4000.); |
119 | TH1F * hDigSumQZPC = new TH1F("hDigSumQZPC", "Signal in 4 ZPC PMQ;Amplitude [ADC counts];Counts",100, 0., 4000.); |
120 | TH1F * hDigSumQZPA = new TH1F("hDigSumQZPA", "Signal in 4 ZPA PMQ;Amplitude [ADC counts];Counts",100, 0., 4000.); |
121 | Add2DigitsList(hDigSumQZNC, 4, expert, !image); |
122 | Add2DigitsList(hDigSumQZNA, 5, expert, !image); |
123 | Add2DigitsList(hDigSumQZPC, 6, expert, !image); |
124 | Add2DigitsList(hDigSumQZPA, 7, expert, !image); |
125 | // |
126 | TH1F * hDigPMCZNC = new TH1F("hDigPMCZNC", "Signal in ZNC PMC;Amplitude [ADC counts];Counts",100, 0., 4000.); |
127 | TH1F * hDigPMCZNA = new TH1F("hDigPMCZNA", "Signal in ZNA PMC;Amplitude [ADC counts];Counts",100, 0., 4000.); |
128 | TH1F * hDigPMCZPC = new TH1F("hDigPMCZPC", "Signal in ZPC PMC;Amplitude [ADC counts];Counts",100, 0., 4000.); |
129 | TH1F * hDigPMCZPA = new TH1F("hDigPMCZPA", "Signal in ZPA PMC;Amplitude [ADC counts];Counts",100, 0., 4000.); |
130 | Add2DigitsList(hDigPMCZNC, 8, expert, !image); |
131 | Add2DigitsList(hDigPMCZNA, 9, expert, !image); |
132 | Add2DigitsList(hDigPMCZPC, 10, expert, !image); |
133 | Add2DigitsList(hDigPMCZPA, 11, expert, !image); |
134 | // |
135 | // ------------------- LOW GAIN CHAIN --------------------------- |
136 | TH1F * hDigZNCTotlg = new TH1F("hDigZNCTotlg", "Digit lg signal in ZNC", 100, 0., 6000.); |
137 | TH1F * hDigZNATotlg = new TH1F("hDigZNATotlg", "Digit lg signal in ZNA", 100, 0., 6000.); |
138 | TH1F * hDigZPCTotlg = new TH1F("hDigZPCTotlg", "Digit lg signal in ZPC", 100, 0., 6000.); |
139 | TH1F * hDigZPATotlg = new TH1F("hDigZPATotlg", "Digit lg signal in ZPA", 100, 0., 6000.); |
140 | Add2DigitsList(hDigZNCTotlg, 12, expert, !image); |
141 | Add2DigitsList(hDigZNATotlg, 13, expert, !image); |
142 | Add2DigitsList(hDigZPCTotlg, 14, expert, !image); |
143 | Add2DigitsList(hDigZPATotlg, 15, expert, !image); |
144 | // |
145 | TH1F * hDigSumQZNClg = new TH1F("hDigSumQZNClg", "Signal in 4 ZNC PMQlg",100, 0., 4000.); |
146 | TH1F * hDigSumQZNAlg = new TH1F("hDigSumQZNAlg", "Signal in 4 ZNA PMQlg",100, 0., 4000.); |
147 | TH1F * hDigSumQZPClg = new TH1F("hDigSumQZPClg", "Signal in 4 ZPC PMQlg",100, 0., 4000.); |
148 | TH1F * hDigSumQZPAlg = new TH1F("hDigSumQZPAlg", "Signal in 4 ZPA PMQlg",100, 0., 4000.); |
149 | Add2DigitsList(hDigSumQZNClg, 16, expert, !image); |
150 | Add2DigitsList(hDigSumQZNAlg, 17, expert, !image); |
151 | Add2DigitsList(hDigSumQZPClg, 18, expert, !image); |
152 | Add2DigitsList(hDigSumQZPAlg, 19, expert, !image); |
153 | // |
154 | TH1F * hDigPMCZNClg = new TH1F("hDigPMCZNClg", "Signal in ZNC PMClg",100, 0., 4000.); |
155 | TH1F * hDigPMCZNAlg = new TH1F("hDigPMCZNAlg", "Signal in ZNA PMClg",100, 0., 4000.); |
156 | TH1F * hDigPMCZPClg = new TH1F("hDigPMCZPClg", "Signal in ZPC PMClg",100, 0., 4000.); |
157 | TH1F * hDigPMCZPAlg = new TH1F("hDigPMCZPAlg", "Signal in ZPA PMClg",100, 0., 4000.); |
158 | Add2DigitsList(hDigPMCZNClg, 20, expert, !image); |
159 | Add2DigitsList(hDigPMCZNAlg, 21, expert, !image); |
160 | Add2DigitsList(hDigPMCZPClg, 22, expert, !image); |
161 | Add2DigitsList(hDigPMCZPAlg, 23, expert, !image); |
162 | |
163 | } |
164 | |
796c8b58 |
165 | //____________________________________________________________________________ |
166 | void AliZDCQADataMakerRec::InitRaws() |
44ed7a66 |
167 | { |
168 | // create Digits histograms in Digits subdir |
44ed7a66 |
169 | const Bool_t expert = kTRUE ; |
170 | const Bool_t image = kTRUE ; |
171 | |
796c8b58 |
172 | // **************************** NON EXPERT HISTOS **************************** |
c040bf07 |
173 | TH1F * hZNCSpectrum = new TH1F("hZNCSpectrum","ZNC spectrum;Amplitude [ADC counts];Counts",100,7.,1007.); |
174 | TH1F * hZPCSpectrum = new TH1F("hZPCSpectrum","ZPC spectrum;Amplitude [ADC counts];Counts",100,7.,1007.); |
175 | TH1F * hZNASpectrum = new TH1F("hZNASpectrum","ZNA spectrum;Amplitude [ADC counts];Counts",100,7.,1007.); |
176 | TH1F * hZPASpectrum = new TH1F("hZPASpectrum","ZPA spectrum;Amplitude [ADC counts];Counts",100,7.,1007.); |
177 | TH1F * hZEM1Spectrum = new TH1F("hZEM1Spectrum","ZEM1 spectrum;Amplitude [ADC counts];Counts",100,7.,2007.); |
178 | TH1F * hZEM2Spectrum = new TH1F("hZEM2Spectrum","ZEM2 spectrum;Amplitude [ADC counts];Counts",100,7.,2007.); |
796c8b58 |
179 | Add2RawsList(hZNCSpectrum, 0, !expert, image); |
180 | Add2RawsList(hZNASpectrum, 1, !expert, image); |
181 | Add2RawsList(hZPCSpectrum, 2, !expert, image); |
182 | Add2RawsList(hZPASpectrum, 3, !expert, image); |
183 | Add2RawsList(hZEM1Spectrum, 4, !expert, image); |
184 | Add2RawsList(hZEM2Spectrum, 5, !expert, image); |
c040bf07 |
185 | |
796c8b58 |
186 | // **************************** EXPERT HISTOS **************************** |
c040bf07 |
187 | TH1F * hRawSumQZNC = new TH1F("hRawSumQZNC", "Raw sumQ ZNC;Amplitude [ADC counts];Counts",100, 7., 1007.); |
188 | TH1F * hRawSumQZNA = new TH1F("hRawSumQZNA", "Raw sumQ ZNA;Amplitude [ADC counts];Counts",100, 7., 1007.); |
189 | TH1F * hRawSumQZPC = new TH1F("hRawSumQZPC", "Raw sumQ ZPC;Amplitude [ADC counts];Counts",100, 7., 1007.); |
190 | TH1F * hRawSumQZPA = new TH1F("hRawSumQZPA", "Raw sumQ ZPA;Amplitude [ADC counts];Counts",100, 7., 1007.); |
796c8b58 |
191 | Add2RawsList(hRawSumQZNC, 10, expert, !image); |
192 | Add2RawsList(hRawSumQZNA, 11, expert, !image); |
193 | Add2RawsList(hRawSumQZPC, 12, expert, !image); |
194 | Add2RawsList(hRawSumQZPA, 13, expert, !image); |
44ed7a66 |
195 | // |
c040bf07 |
196 | TH1F * hRawPMCZNC = new TH1F("hRawPMCZNC", "Raw ZNC PMC;Amplitude [ADC counts];Counts",100, 7., 1007.); |
197 | TH1F * hRawPMCZNA = new TH1F("hRawPMCZNA", "Raw ZNA PMC;Amplitude [ADC counts];Counts",100, 7., 1007.); |
198 | TH1F * hRawPMCZPC = new TH1F("hRawPMCZPC", "Raw ZPC PMC;Amplitude [ADC counts];Counts",100, 7., 1007.); |
199 | TH1F * hRawPMCZPA = new TH1F("hRawPMCZPA", "Raw ZPA PMC;Amplitude [ADC counts];Counts",100, 7., 1007.); |
796c8b58 |
200 | Add2RawsList(hRawPMCZNC, 6, expert, !image); |
201 | Add2RawsList(hRawPMCZNA, 7, expert, !image); |
202 | Add2RawsList(hRawPMCZPC, 8, expert, !image); |
203 | Add2RawsList(hRawPMCZPA, 9, expert, !image); |
c040bf07 |
204 | |
205 | TH2F * hZNCpmCvsPMq = new TH2F("hZNCpmCvsPMq", "ZNC;PMC [ADC counts];Sum(PMQ) [ADC counts]",50,7.,1407.,50,7., 1407.); |
206 | TH2F * hZPCpmCvsPMq = new TH2F("hZPCpmCvsPMq", "ZPC;PMC [ADC counts];Sum(PMQ) [ADC counts]",50,7.,1407.,50,7., 1407.); |
207 | TH2F * hZNApmCvsPMq = new TH2F("hZNApmCvsPMq", "ZNA;PMC [ADC counts];Sum(PMQ) [ADC counts]",50,7.,1407.,50,7., 1407.); |
208 | TH2F * hZPApmCvsPMq = new TH2F("hZPApmCvsPMq", "ZPA;PMC [ADC counts];Sum(PMQ) [ADC counts]",50,7.,1407.,50,7., 1407.); |
209 | Add2RawsList(hZNCpmCvsPMq, 10, !expert, image); |
210 | Add2RawsList(hZPCpmCvsPMq, 11, !expert, image); |
211 | Add2RawsList(hZNApmCvsPMq, 12, !expert, image); |
212 | Add2RawsList(hZPApmCvsPMq, 13, !expert, image); |
44ed7a66 |
213 | } |
214 | |
f5e4ee59 |
215 | //____________________________________________________________________________ |
216 | void AliZDCQADataMakerRec::InitRecPoints() |
217 | { |
218 | // create Digits histograms in Digits subdir |
219 | const Bool_t expert = kTRUE ; |
220 | const Bool_t image = kTRUE ; |
221 | // |
222 | // ------------------- HIGH GAIN CHAIN --------------------------- |
796c8b58 |
223 | TH1F * hRecZNCTot = new TH1F("hRecZNCTot", "Rec signal in ZNC;Amplitude [ADC counts];Counts", 100, 0., 2000.); |
224 | TH1F * hRecZNATot = new TH1F("hRecZNATot", "Rec signal in ZNA;Amplitude [ADC counts];Counts", 100, 0., 2000.); |
225 | TH1F * hRecZPCTot = new TH1F("hRecZPCTot", "Rec signal in ZPC;Amplitude [ADC counts];Counts", 100, 0., 8000.); |
226 | TH1F * hRecZPATot = new TH1F("hRecZPATot", "Rec signal in ZPA;Amplitude [ADC counts];Counts", 100, 0., 8000.); |
227 | Add2RecPointsList(hRecZNCTot, 0, !expert, image); |
228 | Add2RecPointsList(hRecZNATot, 1, !expert, image); |
229 | Add2RecPointsList(hRecZPCTot, 2, !expert, image); |
230 | Add2RecPointsList(hRecZPATot, 3, !expert, image); |
f5e4ee59 |
231 | // |
796c8b58 |
232 | TH1F * hRecSumQZNC = new TH1F("hRecSumQZNC", "Rec summed 4 ZNC quadrants;Amplitude [ADC counts];Counts",100, 0., 2000.); |
233 | TH1F * hRecSumQZNA = new TH1F("hRecSumQZNA", "Rec summed 4 ZNA quadrants;Amplitude [ADC counts];Counts",100, 0., 2000.); |
234 | TH1F * hRecSumQZPC = new TH1F("hRecSumQZPC", "Rec summed 4 ZPC quadrants;Amplitude [ADC counts];Counts",100, 0., 2000.); |
235 | TH1F * hRecSumQZPA = new TH1F("hRecSumQZPA", "Rec summed 4 ZPA quadrants;Amplitude [ADC counts];Counts",100, 0., 2000.); |
f5e4ee59 |
236 | Add2RecPointsList(hRecSumQZNC, 4, expert, !image); |
237 | Add2RecPointsList(hRecSumQZNA, 5, expert, !image); |
238 | Add2RecPointsList(hRecSumQZPC, 6, expert, !image); |
239 | Add2RecPointsList(hRecSumQZPA, 7, expert, !image); |
240 | // |
796c8b58 |
241 | TH1F * hRecPMCZNC = new TH1F("hRecPMCZNC", "Rec common ZNC PMT;Amplitude [ADC counts];Counts",100, 0., 2000.); |
242 | TH1F * hRecPMCZNA = new TH1F("hRecPMCZNA", "Rec common ZNA PMT;Amplitude [ADC counts];Counts",100, 0., 2000.); |
243 | TH1F * hRecPMCZPC = new TH1F("hRecPMCZPC", "Rec common ZPC PMT;Amplitude [ADC counts];Counts",100, 0., 2000.); |
244 | TH1F * hRecPMCZPA = new TH1F("hRecPMCZPA", "Rec common ZPA PMT;Amplitude [ADC counts];Counts",100, 0., 2000.); |
245 | Add2RecPointsList(hRecPMCZNC, 8 , expert, !image); |
246 | Add2RecPointsList(hRecPMCZNA, 9 , expert, !image); |
247 | Add2RecPointsList(hRecPMCZPC, 10, expert, !image); |
248 | Add2RecPointsList(hRecPMCZPA, 11, expert, !image); |
f5e4ee59 |
249 | } |
250 | |
075a0e70 |
251 | //____________________________________________________________________________ |
252 | void AliZDCQADataMakerRec::InitESDs() |
253 | { |
254 | //Booking ESDs histograms |
255 | // |
b72460a5 |
256 | const Bool_t expert = kTRUE ; |
257 | const Bool_t image = kTRUE ; |
7d297381 |
258 | |
796c8b58 |
259 | TH2F * hZNCcentr = new TH2F("hZNCcentr", "Centroid in ZNC;X [cm];Y[cm]", 100, -5.,5.,100,-5.,5.); |
260 | TH2F * hZNAcentr = new TH2F("hZNAcentr", "Centroid in ZNA;X [cm];Y[cm]", 100, -5.,5.,100,-5.,5.); |
261 | Add2ESDsList(hZNCcentr, 0, !expert, image); |
262 | Add2ESDsList(hZNAcentr, 1, !expert, image); |
075a0e70 |
263 | // |
fdc38bb2 |
264 | // ------------------- HIGH GAIN CHAIN --------------------------- |
796c8b58 |
265 | TH1F * hESDZNCTot = new TH1F("hESDZNCTot", "Energy in ZNC", 100, 0., 4000.); |
266 | TH1F * hESDZNATot = new TH1F("hESDZNATot", "Energy in ZNA", 100, 0., 4000.); |
267 | TH1F * hESDZPCTot = new TH1F("hESDZPCTot", "Energy in ZPC", 100, 0., 4000.); |
268 | TH1F * hESDZPATot = new TH1F("hESDZPATot", "Energy in ZPA", 100, 0., 4000.); |
269 | Add2ESDsList(hESDZNCTot, 2, !expert, image); |
270 | Add2ESDsList(hESDZNATot, 3, !expert, image); |
271 | Add2ESDsList(hESDZPCTot, 4, !expert, image); |
272 | Add2ESDsList(hESDZPATot, 5, !expert, image); |
273 | // |
274 | TH1F * hESDZEM1 = new TH1F("hESDZEM1", "Energy in ZEM1", 100, 0., 2000.); |
275 | TH1F * hESDZEM2 = new TH1F("hESDZEM2", "Energy in ZEM2", 100, 0., 2000.); |
276 | Add2ESDsList(hESDZEM1,6, !expert, image); |
277 | Add2ESDsList(hESDZEM2,7, !expert, image); |
075a0e70 |
278 | // |
796c8b58 |
279 | TH1F * hESDSumQZNC = new TH1F("hESDSumQZNC", "Sum of 4 ZNC energy",100, 0., 2000.); |
280 | TH1F * hESDSumQZNA = new TH1F("hESDSumQZNA", "Sum of 4 ZNA energy",100, 0., 2000.); |
281 | TH1F * hESDSumQZPC = new TH1F("hESDSumQZPC", "Sum of 4 ZPC energy",100, 0., 2000.); |
282 | TH1F * hESDSumQZPA = new TH1F("hESDSumQZPA", "Sum of 4 ZPA energy",100, 0., 2000.); |
283 | Add2ESDsList(hESDSumQZNC, 8, expert, !image); |
284 | Add2ESDsList(hESDSumQZNA, 9, expert, !image); |
285 | Add2ESDsList(hESDSumQZPC, 10, expert, !image); |
286 | Add2ESDsList(hESDSumQZPA, 11, expert, !image); |
075a0e70 |
287 | // |
796c8b58 |
288 | TH1F * hESDPMCZNC = new TH1F("hESDPMCZNC", "Energy in ZNC PMC",100, 0., 2000.); |
289 | TH1F * hESDPMCZNA = new TH1F("hESDPMCZNA", "Energy in ZNA PMC",100, 0., 2000.); |
290 | TH1F * hESDPMCZPC = new TH1F("hESDPMCZPC", "Energy in ZPC PMC",100, 0., 2000.); |
291 | TH1F * hESDPMCZPA = new TH1F("hESDPMCZPA", "Energy in ZPA PMC",100, 0., 2000.); |
292 | Add2ESDsList(hESDPMCZNC, 12, expert, !image); |
293 | Add2ESDsList(hESDPMCZNA, 13, expert, !image); |
294 | Add2ESDsList(hESDPMCZPC, 14, expert, !image); |
295 | Add2ESDsList(hESDPMCZPA, 15, expert, !image); |
075a0e70 |
296 | // |
213a7d34 |
297 | // ------------------- LOW GAIN CHAIN --------------------------- |
3d26d59b |
298 | TH1F * hESDSumQZNClg = new TH1F("hESDSumQZNClg", "Sum of 4 lg ZNC sectors",100, 0., 4000.); |
3d26d59b |
299 | TH1F * hESDSumQZNAlg = new TH1F("hESDSumQZNAlg", "Sum of 4 lg ZNA sectors",100, 0., 4000.); |
fdc38bb2 |
300 | TH1F * hESDSumQZPClg = new TH1F("hESDSumQZPClg", "Sum of 4 lg ZPC sectors",100, 0., 4000.); |
3d26d59b |
301 | TH1F * hESDSumQZPAlg = new TH1F("hESDSumQZPAlg", "Sum of 4 lg ZPA sectors",100, 0., 4000.); |
796c8b58 |
302 | Add2ESDsList(hESDSumQZNClg, 16, expert, !image); |
303 | Add2ESDsList(hESDSumQZNAlg, 17, expert, !image); |
304 | Add2ESDsList(hESDSumQZPClg, 18, expert, !image); |
305 | Add2ESDsList(hESDSumQZPAlg, 19, expert, !image); |
075a0e70 |
306 | // |
3d26d59b |
307 | TH1F * hESDPMCZNClg = new TH1F("hESDPMCZNClg", "Signal in common ZNC lg PMT",100, 0., 4000.); |
3d26d59b |
308 | TH1F * hESDPMCZNAlg = new TH1F("hESDPMCZNAlg", "Signal in common ZNA lg PMT",100, 0., 4000.); |
fdc38bb2 |
309 | TH1F * hESDPMCZPClg = new TH1F("hESDPMCZPClg", "Signal in common ZPC lg PMT",100, 0., 4000.); |
3d26d59b |
310 | TH1F * hESDPMCZPAlg = new TH1F("hESDPMCZPAlg", "Signal in common ZPA lg PMT",100, 0., 4000.); |
796c8b58 |
311 | Add2ESDsList(hESDPMCZNClg, 20, expert, !image); |
312 | Add2ESDsList(hESDPMCZNAlg, 21, expert, !image); |
313 | Add2ESDsList(hESDPMCZPClg, 22, expert, !image); |
314 | Add2ESDsList(hESDPMCZPAlg, 23, expert, !image); |
075a0e70 |
315 | } |
075a0e70 |
316 | |
2537e870 |
317 | //___________________________________________________________________________ |
318 | void AliZDCQADataMakerRec::MakeDigits(TTree *digitTree) |
319 | { |
320 | // makes data from Digit Tree |
321 | if(!GetDigitsData(0)) InitDigits(); |
322 | |
323 | if(!digitTree){ |
324 | AliError("Can't get ZDC digit tree!!"); |
325 | return; |
326 | } |
327 | |
328 | TBranch * branch = digitTree->GetBranch("ZDC"); |
329 | if(!branch){ |
330 | AliError("ZDC branch in digit tree not found"); |
331 | return; |
332 | } |
333 | |
334 | AliZDCDigit *digit = 0x0; |
335 | branch->SetAddress(&digit); |
336 | |
337 | Float_t adcSum_ZNC=0., adcSum_ZNA=0., adcSum_ZPC=0., adcSum_ZPA=0.; |
338 | Float_t adcSumQ_ZNC=0., adcSumQ_ZNA=0., adcSumQ_ZPC=0., adcSumQ_ZPA=0.; |
339 | Float_t adcSum_ZNC_lg=0., adcSum_ZNA_lg=0., adcSum_ZPC_lg=0., adcSum_ZPA_lg=0.; |
340 | Float_t adcSumQ_ZNC_lg=0., adcSumQ_ZNA_lg=0., adcSumQ_ZPC_lg=0., adcSumQ_ZPA_lg=0.; |
341 | |
342 | Int_t ndig = digitTree->GetEntries(); |
343 | for(Int_t i=0; i<ndig; i++){ |
344 | branch->GetEntry(i); |
345 | |
346 | if(digit->GetSector(0)==1 && digit->GetSector(1)!=5){ |
347 | adcSum_ZNC += digit->GetADCValue(0); |
348 | adcSum_ZNC_lg += digit->GetADCValue(1); |
349 | // |
350 | if(digit->GetSector(1)!=0){ |
351 | adcSumQ_ZNC += digit->GetADCValue(0); |
352 | adcSumQ_ZNC_lg+= digit->GetADCValue(1); |
353 | } |
354 | else{ |
355 | GetDigitsData(8)->Fill(digit->GetADCValue(0)); |
356 | GetDigitsData(20)->Fill(digit->GetADCValue(1)); |
357 | } |
358 | } |
359 | else if(digit->GetSector(0)==2){ |
360 | adcSum_ZPC += digit->GetADCValue(0); |
361 | adcSum_ZPC_lg += digit->GetADCValue(1); |
362 | // |
363 | if(digit->GetSector(1)!=0){ |
364 | adcSumQ_ZPC += digit->GetADCValue(0); |
365 | adcSumQ_ZPC_lg+= digit->GetADCValue(1); |
366 | } |
367 | else{ |
368 | GetDigitsData(10)->Fill(digit->GetADCValue(0)); |
369 | GetDigitsData(22)->Fill(digit->GetADCValue(1)); |
370 | } |
371 | } |
372 | else if(digit->GetSector(0)==4 && digit->GetSector(1)!=5){ |
373 | adcSum_ZNA += digit->GetADCValue(0); |
374 | adcSum_ZNA_lg += digit->GetADCValue(1); |
375 | // |
376 | if(digit->GetSector(1)!=0){ |
377 | adcSumQ_ZNA += digit->GetADCValue(0); |
378 | adcSumQ_ZNA_lg+= digit->GetADCValue(1); |
379 | } |
380 | else{ |
381 | GetDigitsData(9)->Fill(digit->GetADCValue(0)); |
382 | GetDigitsData(21)->Fill(digit->GetADCValue(1)); |
383 | } |
384 | } |
385 | else if(digit->GetSector(0)==5){ |
386 | adcSum_ZPA += digit->GetADCValue(0); |
387 | adcSum_ZPA_lg += digit->GetADCValue(1); |
388 | // |
389 | if(digit->GetSector(1)!=0){ |
390 | adcSumQ_ZPA += digit->GetADCValue(0); |
391 | adcSumQ_ZPA_lg+= digit->GetADCValue(1); |
392 | } |
393 | else{ |
394 | GetDigitsData(11)->Fill(digit->GetADCValue(0)); |
395 | GetDigitsData(23)->Fill(digit->GetADCValue(1)); |
396 | } |
397 | } |
398 | } |
399 | // |
400 | GetDigitsData(0)->Fill(adcSum_ZNC); |
401 | GetDigitsData(1)->Fill(adcSum_ZNA); |
402 | GetDigitsData(2)->Fill(adcSum_ZPC); |
403 | GetDigitsData(3)->Fill(adcSum_ZPA); |
404 | // |
405 | GetDigitsData(4)->Fill(adcSumQ_ZNC); |
406 | GetDigitsData(5)->Fill(adcSumQ_ZNA); |
407 | GetDigitsData(6)->Fill(adcSumQ_ZPC); |
408 | GetDigitsData(7)->Fill(adcSumQ_ZPA); |
409 | // |
410 | GetDigitsData(12)->Fill(adcSum_ZNC_lg); |
411 | GetDigitsData(13)->Fill(adcSum_ZNA_lg); |
412 | GetDigitsData(14)->Fill(adcSum_ZPC_lg); |
413 | GetDigitsData(15)->Fill(adcSum_ZPA_lg); |
414 | // |
415 | GetDigitsData(16)->Fill(adcSumQ_ZNC_lg); |
416 | GetDigitsData(17)->Fill(adcSumQ_ZNA_lg); |
417 | GetDigitsData(18)->Fill(adcSumQ_ZPC_lg); |
418 | GetDigitsData(19)->Fill(adcSumQ_ZPA_lg); |
419 | |
420 | delete digit; |
421 | digit=0; |
422 | |
423 | } |
424 | |
425 | |
796c8b58 |
426 | //____________________________________________________________________________ |
427 | void AliZDCQADataMakerRec::MakeRaws(AliRawReader *rawReader) |
44ed7a66 |
428 | { |
796c8b58 |
429 | // Filling Raws QA histos |
430 | // |
431 | // Check if histograms already created for this Event Specie |
432 | if(!GetRawsData(0)) InitRaws(); |
eca4fa66 |
433 | |
796c8b58 |
434 | // Parameters for mean value pedestal subtraction |
435 | int const kNch = 24; |
436 | Float_t meanPed[2*kNch]; |
437 | for(Int_t jj=0; jj<2*kNch; jj++) meanPed[jj] = fPedCalibData->GetMeanPed(jj); |
eca4fa66 |
438 | |
796c8b58 |
439 | AliZDCRawStream stream(rawReader); |
440 | while(stream.Next()){ |
44ed7a66 |
441 | |
796c8b58 |
442 | Float_t zncSignal=0., znaSignal=0., zpcSignal=0., zpaSignal=0.; |
443 | Float_t zncSumQ=0., znaSumQ=0., zpcSumQ=0., zpaSumQ=0.; |
c040bf07 |
444 | Float_t zncpmC=0., znapmC=0., zpcpmC=0., zpapmC=0.; |
796c8b58 |
445 | Bool_t isZNCFired=kFALSE, isZPCFired=kFALSE, isZNAFired=kFALSE, isZPAFired=kFALSE; |
446 | |
447 | if(stream.IsADCDataWord() && |
448 | (stream.GetADCModule()==0 || stream.GetADCModule()==1)){ |
449 | |
450 | Int_t det = stream.GetSector(0); |
451 | Int_t quad = stream.GetSector(1); |
452 | Int_t gain = stream.GetADCGain(); |
453 | Int_t pedindex=0; |
454 | |
455 | // Stuff for pedestal subtraction |
456 | if(quad != 5){ // ZDCs (not reference PTMs) |
457 | if(det == 1){ |
458 | pedindex = quad; |
459 | if(gain == 0){ |
460 | Float_t pedSubVal = (Float_t) (stream.GetADCValue()-meanPed[pedindex]); |
461 | zncSignal += pedSubVal; |
462 | isZNCFired = kTRUE; |
463 | if(quad!=0) zncSumQ += pedSubVal; |
c040bf07 |
464 | else{ |
465 | zncpmC = pedSubVal; |
466 | GetRawsData(10)->Fill(pedSubVal); |
467 | } |
796c8b58 |
468 | } |
469 | } |
470 | else if(det == 2){ |
471 | pedindex = quad+5; |
472 | if(gain == 0){ |
473 | Float_t pedSubVal = (Float_t) (stream.GetADCValue()-meanPed[pedindex]); |
474 | zpcSignal += pedSubVal; |
475 | isZPCFired = kTRUE; |
476 | if(quad!=0) zpcSumQ += pedSubVal; |
c040bf07 |
477 | else{ |
478 | zpcpmC = pedSubVal; |
479 | GetRawsData(12)->Fill(pedSubVal); |
480 | } |
796c8b58 |
481 | } |
482 | } |
483 | else if(det == 3){ |
484 | pedindex = quad+9; |
485 | if(quad==1){ |
486 | if(gain == 0){ |
487 | Float_t pedSubVal = (Float_t) (stream.GetADCValue()-meanPed[pedindex]); |
488 | GetRawsData(4)->Fill(pedSubVal); |
489 | } |
490 | } |
491 | else if(quad==2){ |
492 | if(gain == 0){ |
493 | Float_t pedSubVal = (Float_t) (stream.GetADCValue()-meanPed[pedindex]); |
494 | GetRawsData(5)->Fill(pedSubVal); |
495 | } |
496 | } |
497 | } |
498 | else if(det == 4){ |
499 | pedindex = quad+12; |
500 | if(gain == 0){ |
501 | Float_t pedSubVal = (Float_t) (stream.GetADCValue()-meanPed[pedindex]); |
c040bf07 |
502 | znaSignal += pedSubVal; |
796c8b58 |
503 | isZNAFired = kTRUE; |
504 | if(quad!=0) znaSumQ += pedSubVal; |
c040bf07 |
505 | else{ |
506 | znapmC = pedSubVal; |
507 | GetRawsData(11)->Fill(pedSubVal); |
508 | } |
796c8b58 |
509 | } |
510 | } |
511 | else if(det == 5){ |
512 | pedindex = quad+17; |
513 | if(gain == 0){ |
514 | Float_t pedSubVal = (Float_t) (stream.GetADCValue()-meanPed[pedindex]); |
c040bf07 |
515 | zpaSignal += pedSubVal; |
796c8b58 |
516 | isZPAFired = kTRUE; |
517 | if(quad!=0) zpaSumQ += pedSubVal; |
c040bf07 |
518 | else{ |
519 | zpapmC = pedSubVal; |
520 | GetRawsData(13)->Fill(pedSubVal); |
521 | } |
796c8b58 |
522 | } |
523 | } |
524 | } |
525 | |
526 | } //IsADCDataWord |
527 | // |
528 | if(isZNCFired){ |
529 | GetRawsData(0)->Fill(zncSignal); |
530 | GetRawsData(6)->Fill(zncSumQ); |
c040bf07 |
531 | GetRawsData(10)->Fill(zncpmC); |
44ed7a66 |
532 | } |
796c8b58 |
533 | if(isZPCFired){ |
534 | GetRawsData(2)->Fill(zpcSignal); |
535 | GetRawsData(8)->Fill(zncSumQ); |
c040bf07 |
536 | GetRawsData(11)->Fill(zpcpmC); |
b72460a5 |
537 | } |
796c8b58 |
538 | if(isZNAFired){ |
539 | GetRawsData(1)->Fill(znaSignal); |
540 | GetRawsData(7)->Fill(znaSumQ); |
c040bf07 |
541 | GetRawsData(12)->Fill(znapmC); |
44ed7a66 |
542 | } |
796c8b58 |
543 | if(isZPAFired){ |
544 | GetRawsData(3)->Fill(zpaSignal); |
545 | GetRawsData(9)->Fill(znaSumQ); |
c040bf07 |
546 | GetRawsData(13)->Fill(zpapmC); |
44ed7a66 |
547 | } |
796c8b58 |
548 | |
549 | } //stream.Next() |
550 | |
551 | // stream.Delete(); |
44ed7a66 |
552 | } |
553 | |
f5e4ee59 |
554 | //____________________________________________________________________________ |
555 | void AliZDCQADataMakerRec::MakeRecPoints(TTree * clustersTree) |
556 | { |
557 | // Filling QA histos from RecPoints |
558 | |
559 | TBranch *branch = clustersTree->GetBranch("ZDC"); |
560 | if(!branch){ |
561 | AliError("Can't get the ZDC branch for rec points!"); |
562 | return; |
563 | } |
564 | |
565 | if(!GetRecPointsData(0)) InitRecPoints() ; |
566 | |
567 | Float_t sum_ZNC=0., sum_ZNA=0., sum_ZPC=0., sum_ZPA=0.; |
568 | Float_t sumQ_ZNC=0., sumQ_ZNA=0., sumQ_ZPC=0., sumQ_ZPA=0.; |
569 | |
570 | AliZDCReco reco; |
571 | AliZDCReco* preco = &reco; |
572 | clustersTree->SetBranchAddress("ZDC", &preco); |
573 | |
574 | clustersTree->GetEntry(0); |
575 | for(Int_t i=0; i<5; i++){ |
576 | sum_ZNC += reco.GetZN1HREnTow(i); |
577 | sum_ZPC += reco.GetZN2HREnTow(i); |
578 | sum_ZNA += reco.GetZP1HREnTow(i); |
579 | sum_ZPA += reco.GetZP2HREnTow(i); |
580 | if(i==0){ |
581 | GetRecPointsData(8)->Fill(reco.GetZN1HREnTow(i)); |
582 | GetRecPointsData(9)->Fill(reco.GetZN2HREnTow(i)); |
583 | GetRecPointsData(10)->Fill(reco.GetZP1HREnTow(i)); |
584 | GetRecPointsData(11)->Fill(reco.GetZP2HREnTow(i)); |
585 | } |
586 | else{ |
587 | sumQ_ZNC += reco.GetZN1HREnTow(i); |
588 | sumQ_ZPC += reco.GetZN2HREnTow(i); |
589 | sumQ_ZNA += reco.GetZP1HREnTow(i); |
590 | sumQ_ZPA += reco.GetZP2HREnTow(i); |
591 | } |
592 | } |
593 | |
594 | GetRecPointsData(0)->Fill(sum_ZNC); |
796c8b58 |
595 | GetRecPointsData(1)->Fill(sum_ZNA); |
596 | GetRecPointsData(2)->Fill(sum_ZPC); |
f5e4ee59 |
597 | GetRecPointsData(3)->Fill(sum_ZPA); |
598 | // |
599 | GetRecPointsData(4)->Fill(sumQ_ZNC); |
796c8b58 |
600 | GetRecPointsData(5)->Fill(sumQ_ZNA); |
601 | GetRecPointsData(6)->Fill(sumQ_ZPC); |
f5e4ee59 |
602 | GetRecPointsData(7)->Fill(sumQ_ZPA); |
603 | |
604 | } |
605 | |
075a0e70 |
606 | //____________________________________________________________________________ |
607 | void AliZDCQADataMakerRec::MakeESDs(AliESDEvent * esd) |
608 | { |
609 | // make QA data from ESDs |
610 | // |
eca4fa66 |
611 | |
612 | // Check id histograms already created for this Event Specie |
796c8b58 |
613 | if(!GetESDsData(0)) InitESDs() ; |
eca4fa66 |
614 | |
075a0e70 |
615 | AliESDZDC * zdcESD = esd->GetESDZDC(); |
616 | // |
b72460a5 |
617 | TString beamType = esd->GetBeamType(); |
789b8a8d |
618 | Double_t centr_ZNC[2]={999.,999}, centr_ZNA[2]={999.,999}; |
b72460a5 |
619 | if(((beamType.CompareTo("pp"))==0) || ((beamType.CompareTo("p-p"))==0) |
620 | ||((beamType.CompareTo("PP"))==0) || ((beamType.CompareTo("P-P"))==0)){ |
789b8a8d |
621 | zdcESD->GetZNCentroidInpp(centr_ZNC, centr_ZNA); |
b72460a5 |
622 | } |
623 | else if((beamType.CompareTo("A-A")) == 0){ |
789b8a8d |
624 | Float_t beamEne = esd->GetBeamEnergy(); |
625 | zdcESD->GetZNCentroidInPbPb(beamEne, centr_ZNC, centr_ZNA); |
b72460a5 |
626 | } |
2537e870 |
627 | else printf(" AliZDCQADataMakerRec::MakeESDs: can't calculate centroids for beam type: %s\n\n",beamType.Data()); |
789b8a8d |
628 | GetESDsData(0)->Fill(centr_ZNC[0], centr_ZNC[1]); |
629 | GetESDsData(1)->Fill(centr_ZNA[0], centr_ZNA[1]); |
2b6cdc43 |
630 | |
075a0e70 |
631 | // |
632 | GetESDsData(2)->Fill(esd->GetZDCN1Energy()); |
fdc38bb2 |
633 | GetESDsData(3)->Fill(esd->GetZDCN2Energy()); |
634 | GetESDsData(4)->Fill(esd->GetZDCP1Energy()); |
075a0e70 |
635 | GetESDsData(5)->Fill(esd->GetZDCP2Energy()); |
796c8b58 |
636 | GetESDsData(6)->Fill(esd->GetZDCEMEnergy(0)); |
637 | GetESDsData(7)->Fill(esd->GetZDCEMEnergy(1)); |
075a0e70 |
638 | // |
fdc38bb2 |
639 | Double_t sumQZNC=0., sumQZPC=0., sumQZNA=0., sumQZPA=0.; |
213a7d34 |
640 | Double_t sumQZNC_lg=0., sumQZPC_lg=0., sumQZNA_lg=0., sumQZPA_lg=0.; |
075a0e70 |
641 | // |
fdc38bb2 |
642 | const Double_t *towZNC, *towZPC, *towZNA, *towZPA; |
213a7d34 |
643 | const Double_t *towZNC_lg, *towZPC_lg, *towZNA_lg, *towZPA_lg; |
075a0e70 |
644 | // |
fdc38bb2 |
645 | towZNC = zdcESD->GetZN1TowerEnergy(); |
646 | towZPC = zdcESD->GetZP1TowerEnergy(); |
647 | towZNA = zdcESD->GetZN2TowerEnergy(); |
648 | towZPA = zdcESD->GetZP2TowerEnergy(); |
075a0e70 |
649 | // |
213a7d34 |
650 | towZNC_lg = zdcESD->GetZN1TowerEnergyLR(); |
fdc38bb2 |
651 | towZPC_lg = zdcESD->GetZP1TowerEnergyLR(); |
652 | towZNA_lg = zdcESD->GetZN2TowerEnergyLR(); |
213a7d34 |
653 | towZPA_lg = zdcESD->GetZP2TowerEnergyLR(); |
075a0e70 |
654 | // |
655 | for(Int_t i=0; i<5; i++){ |
656 | if(i==0){ |
796c8b58 |
657 | GetESDsData(12)->Fill(towZNC[i]); |
658 | GetESDsData(13)->Fill(towZNA[i]); |
659 | GetESDsData(14)->Fill(towZPC[i]); |
660 | GetESDsData(15)->Fill(towZPA[i]); |
075a0e70 |
661 | // |
796c8b58 |
662 | GetESDsData(20)->Fill(towZNC_lg[i]); |
663 | GetESDsData(21)->Fill(towZNA_lg[i]); |
664 | GetESDsData(22)->Fill(towZPC_lg[i]); |
665 | GetESDsData(23)->Fill(towZPA_lg[i]); |
075a0e70 |
666 | } |
667 | else{ |
fdc38bb2 |
668 | sumQZNC += towZNC[i]; |
669 | sumQZPC += towZPC[i]; |
670 | sumQZNA += towZNA[i]; |
671 | sumQZPA += towZPA[i]; |
075a0e70 |
672 | // |
213a7d34 |
673 | sumQZNC_lg += towZNC_lg[i]; |
fdc38bb2 |
674 | sumQZPC_lg += towZPC_lg[i]; |
675 | sumQZNA_lg += towZNA_lg[i]; |
213a7d34 |
676 | sumQZPA_lg += towZPA_lg[i]; |
075a0e70 |
677 | } |
678 | } |
796c8b58 |
679 | GetESDsData(8)->Fill(sumQZNC); |
680 | GetESDsData(9)->Fill(sumQZNA); |
681 | GetESDsData(10)->Fill(sumQZPC); |
682 | GetESDsData(11)->Fill(sumQZPA); |
075a0e70 |
683 | // |
796c8b58 |
684 | GetESDsData(16)->Fill(sumQZNC_lg); |
685 | GetESDsData(17)->Fill(sumQZNA_lg); |
686 | GetESDsData(18)->Fill(sumQZPC_lg); |
687 | GetESDsData(19)->Fill(sumQZPA_lg); |
075a0e70 |
688 | } |
689 | |
690 | //____________________________________________________________________________ |
691 | void AliZDCQADataMakerRec::StartOfDetectorCycle() |
692 | { |
693 | //Detector specific actions at start of cycle |
796c8b58 |
694 | |
695 | fPedCalibData = GetPedCalibData(); |
075a0e70 |
696 | |
697 | } |
698 | |
699 | //____________________________________________________________________________ |
4e25ac79 |
700 | void AliZDCQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list) |
075a0e70 |
701 | { |
702 | //Detector specific actions at end of cycle |
703 | // do the QA checking |
4e25ac79 |
704 | AliQAChecker::Instance()->Run(AliQAv1::kZDC, task, list) ; |
075a0e70 |
705 | } |
706 | |