]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSQADataMakerRec.cxx
Minor change for LHC11e
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQADataMakerRec.cxx
CommitLineData
04236e67 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 **************************************************************************/
15
16
17/* $Id$ */
18
19/*
20 Produces the data needed to calculate the quality assurance.
21 All data must be mergeable objects.
22 Y. Schutz CERN July 2007
23*/
24
25// --- ROOT system ---
26#include <TClonesArray.h>
27#include <TFile.h>
28#include <TH1F.h>
29#include <TH1I.h>
30#include <TH2F.h>
3bffaa2f 31#include <TParameter.h>
04236e67 32
33// --- Standard library ---
34
35// --- AliRoot header files ---
379c5c09 36#include "AliCaloRawStreamV3.h"
04236e67 37#include "AliESDCaloCluster.h"
38#include "AliESDEvent.h"
39#include "AliLog.h"
40#include "AliPHOSQADataMakerRec.h"
92664bc8 41#include "AliPHOSDigit.h"
04236e67 42#include "AliPHOSCpvRecPoint.h"
43#include "AliPHOSEmcRecPoint.h"
379c5c09 44#include "AliPHOSRawFitterv0.h"
45#include "AliPHOSRawFitterv1.h"
46#include "AliPHOSRawFitterv2.h"
47#include "AliPHOSReconstructor.h"
04236e67 48#include "AliPHOSRecParticle.h"
49#include "AliPHOSTrackSegment.h"
379c5c09 50#include "AliQAChecker.h"
51#include "AliRawReader.h"
04236e67 52
53ClassImp(AliPHOSQADataMakerRec)
54
55//____________________________________________________________________________
56 AliPHOSQADataMakerRec::AliPHOSQADataMakerRec() :
4e25ac79 57 AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kPHOS), "PHOS Quality Assurance Data Maker")
04236e67 58{
59 // ctor
60}
61
62//____________________________________________________________________________
63AliPHOSQADataMakerRec::AliPHOSQADataMakerRec(const AliPHOSQADataMakerRec& qadm) :
64 AliQADataMakerRec()
65{
66 //copy ctor
67 SetName((const char*)qadm.GetName()) ;
68 SetTitle((const char*)qadm.GetTitle());
69}
70
71//__________________________________________________________________
72AliPHOSQADataMakerRec& AliPHOSQADataMakerRec::operator = (const AliPHOSQADataMakerRec& qadm )
73{
74 // Equal operator.
75 this->~AliPHOSQADataMakerRec();
76 new(this) AliPHOSQADataMakerRec(qadm);
77 return *this;
78}
79
80//____________________________________________________________________________
4e25ac79 81void AliPHOSQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
04236e67 82{
83 //Detector specific actions at end of cycle
92664bc8 84 ResetEventTrigClasses();
85
6252ceeb 86 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
92664bc8 87 if (! IsValidEventSpecie(specie, list)) continue;
88 SetEventSpecie(AliRecoParam::ConvertIndex(specie));
89 //
90 for (int itc=-1;itc<GetNTrigClasses();itc++) { // RS: loop over all trigger clones
91 //
92 if(GetRawsData(kHGqualMod0,itc) && GetRawsData(kHGmod0,itc))
93 GetRawsData(kHGqualMod0,itc)->Divide( GetRawsData(kHGmod0,itc) );
94 if(GetRawsData(kHGqualMod1,itc) && GetRawsData(kHGmod1,itc))
95 GetRawsData(kHGqualMod1,itc)->Divide( GetRawsData(kHGmod1,itc) );
96 if(GetRawsData(kHGqualMod2,itc) && GetRawsData(kHGmod2,itc))
97 GetRawsData(kHGqualMod2,itc)->Divide( GetRawsData(kHGmod2,itc) );
98 if(GetRawsData(kHGqualMod3,itc) && GetRawsData(kHGmod3,itc))
99 GetRawsData(kHGqualMod3,itc)->Divide( GetRawsData(kHGmod3,itc) );
100 if(GetRawsData(kHGqualMod4,itc) && GetRawsData(kHGmod4,itc))
101 GetRawsData(kHGqualMod4,itc)->Divide( GetRawsData(kHGmod4,itc) );
102 } // RS: loop over all trigger clones
6252ceeb 103 }
04236e67 104 // do the QA checking
4e25ac79 105 AliQAChecker::Instance()->Run(AliQAv1::kPHOS, task, list) ;
04236e67 106}
107
108//____________________________________________________________________________
109void AliPHOSQADataMakerRec::InitESDs()
110{
ebde5500 111 //Create histograms to controll ESD
112
7d297381 113 const Bool_t expert = kTRUE ;
114 const Bool_t image = kTRUE ;
33055c0e 115
db72ff3b 116 TH1F * h1 = new TH1F("hESDPhosSpectrum", "ESDs spectrum in PHOS; Energy [MeV];Counts" , 200, 0., 20.) ;
39569d36 117 h1->Sumw2() ;
7d297381 118 Add2ESDsList(h1, kESDSpec, !expert, image) ;
e862ee5c 119
db72ff3b 120 TH1I * h2 = new TH1I("hESDPhosMul", "ESDs multiplicity distribution in PHOS; # of clusters;Counts", 100, 0, 100 ) ;
39569d36 121 h2->Sumw2() ;
7d297381 122 Add2ESDsList(h2, kESDNtot, !expert, image) ;
ebde5500 123
db72ff3b 124 TH1F * h3 = new TH1F("hESDPhosEtot", "ESDs total energy;Energy [MeV];Counts" , 2000, 0, 200.) ;
39569d36 125 h3->Sumw2() ;
7d297381 126 Add2ESDsList(h3, kESDEtot, !expert, image) ; //Expert histo
ebde5500 127
db72ff3b 128 TH1F * h4 = new TH1F("hESDpid", "ESDs PID distribution in PHOS;Particle Id;Counts" , 100, 0., 1.) ;
39569d36 129 h4->Sumw2() ;
7d297381 130 Add2ESDsList(h4, kESDpid, !expert, image) ; //Expert histo
92664bc8 131 //
132 ClonePerTrigClass(AliQAv1::kESDS); // this should be the last line
04236e67 133}
134
44ed7a66 135//____________________________________________________________________________
136void AliPHOSQADataMakerRec::InitDigits()
137{
138 // create Digits histograms in Digits subdir
139 const Bool_t expert = kTRUE ;
140 const Bool_t image = kTRUE ;
db72ff3b 141 TH1I * h0 = new TH1I("hPhosDigits", "Digits amplitude distribution in PHOS;Amplitude [ADC counts];Counts", 500, 0, 1000) ;
44ed7a66 142 h0->Sumw2() ;
143 Add2DigitsList(h0, kDigits, !expert, image) ;
db72ff3b 144 TH1I * h1 = new TH1I("hPhosDigitsMul", "Digits multiplicity distribution in PHOS;# of Digits;Entries", 2000, 0, 10000) ;
44ed7a66 145 h1->Sumw2() ;
146 Add2DigitsList(h1, kDigitsMul, !expert, image) ;
92664bc8 147 //
148 ClonePerTrigClass(AliQAv1::kDIGITS); // this should be the last line
44ed7a66 149}
150
04236e67 151//____________________________________________________________________________
152void AliPHOSQADataMakerRec::InitRecPoints()
153{
154 // create Reconstructed Points histograms in RecPoints subdir
7d297381 155 const Bool_t expert = kTRUE ;
156 const Bool_t image = kTRUE ;
7285e69f 157
db72ff3b 158 TH2I * h0 = new TH2I("hRpPHOSxyMod1","RecPoints Rows x Columns for PHOS module 1;Row #;Column #", 64, -72., 72., 56, -63., 63.) ;
7d297381 159 Add2RecPointsList(h0,kRPmod1, expert, !image) ;
db72ff3b 160 TH2I * h1 = new TH2I("hRpPHOSxyMod2","RecPoints Rows x Columns for PHOS module 2;Row #;Column #", 64, -72., 72., 56, -63., 63.) ;
7d297381 161 Add2RecPointsList(h1,kRPmod2, expert, !image) ;
db72ff3b 162 TH2I * h2 = new TH2I("hRpPHOSxyMod3","RecPoints Rows x Columns for PHOS module 3;Row #;Column #", 64, -72., 72., 56, -63., 63.) ;
7d297381 163 Add2RecPointsList(h2,kRPmod3, expert, !image) ;
db72ff3b 164 TH2I * h3 = new TH2I("hRpPHOSxyMod4","RecPoints Rows x Columns for PHOS module 4;Row #;Column #", 64, -72., 72., 56, -63., 63.) ;
7d297381 165 Add2RecPointsList(h3,kRPmod4, expert, !image) ;
db72ff3b 166 TH2I * h4 = new TH2I("hRpPHOSxyMod5","RecPoints Rows x Columns for PHOS module 5;Row #;Column #", 64, -72., 72., 56, -63., 63.) ;
7d297381 167 Add2RecPointsList(h4,kRPmod5, expert, !image) ;
ebde5500 168
db72ff3b 169 TH1F * h5 = new TH1F("hEmcPhosRecPointsSpectrum", "EMC RecPoints spectrum in PHOS;Energy [MeV];Counts", 2000, 0., 20.) ;
ebde5500 170 h5->Sumw2() ;
7d297381 171 Add2RecPointsList(h5, kRPSpec, !expert, image) ;
ebde5500 172
db72ff3b 173 TH1I * h6 = new TH1I("hEmcPhosRecPointsMul", "EMC RecPoints multiplicity distribution in PHOS;# of EMC Clusters;Entries", 100, 0, 100) ;
ebde5500 174 h6->Sumw2() ;
7d297381 175 Add2RecPointsList(h6, kRPNtot, !expert, image) ;
ebde5500 176
db72ff3b 177 TH1I * h7 = new TH1I("hEmcPhosRecPointsEtot", "EMC RecPoints Etot;Energy [MeV];Counts", 200, 0, 200.) ;
ebde5500 178 h7->Sumw2() ;
7d297381 179 Add2RecPointsList(h7, kRPEtot, !expert, image) ;
04236e67 180
db72ff3b 181 TH1I * h8 = new TH1I("hCpvPhosRecPointsMul", "CPV RecPoints multiplicity distribution in PHOS;# of CPV clusters;Counts", 100, 0, 100) ;
ebde5500 182 h8->Sumw2() ;
7d297381 183 Add2RecPointsList(h8, kRPNcpv, !expert, image) ;
92664bc8 184 //
185 ClonePerTrigClass(AliQAv1::kRECPOINTS); // this should be the last line
04236e67 186}
187
188//____________________________________________________________________________
189void AliPHOSQADataMakerRec::InitRaws()
190{
191 // create Raws histograms in Raws subdir
7d297381 192 const Bool_t expert = kTRUE ;
193 const Bool_t saveCorr = kTRUE ;
194 const Bool_t image = kTRUE ;
195
80f1c279 196 TH2I * h0 = new TH2I("hHighPHOSxyMod0","High Gain in PHOS module 0", 64, 0, 64, 56, 0, 56) ;
197 h0->SetXTitle("x, cells"); h0->SetYTitle("z, cells");
198 Add2RawsList(h0,kHGmod0, expert, !image, !saveCorr) ;
199 TH2I * h1 = new TH2I("hHighPHOSxyMod1","High Gain in PHOS module 1", 64, 0, 64, 56, 0, 56) ;
200 h1->SetXTitle("x, cells"); h1->SetYTitle("z, cells");
201 Add2RawsList(h1,kHGmod1, expert, !image, !saveCorr) ;
202 TH2I * h2 = new TH2I("hHighPHOSxyMod2","High Gain in PHOS module 2", 64, 0, 64, 56, 0, 56) ;
203 h2->SetXTitle("x, cells"); h2->SetYTitle("z, cells");
204 Add2RawsList(h2,kHGmod2, expert, !image, !saveCorr) ;
205 TH2I * h3 = new TH2I("hHighPHOSxyMod3","High Gain in PHOS module 3", 64, 0, 64, 56, 0, 56) ;
206 h3->SetXTitle("x, cells"); h3->SetYTitle("z, cells");
207 Add2RawsList(h3,kHGmod3, expert, !image, !saveCorr) ;
208 TH2I * h4 = new TH2I("hHighPHOSxyMod4","High Gain in PHOS module 4", 64, 0, 64, 56, 0, 56) ;
209 h4->SetXTitle("x, cells"); h4->SetYTitle("z, cells");
210 Add2RawsList(h4,kHGmod4, expert, !image, !saveCorr) ;
211
212 TH2I * h5 = new TH2I("hLowPHOSxyMod0","Low Gain in PHOS module 0", 64, 0, 64, 56, 0, 56) ;
213 h5->SetXTitle("x, cells"); h5->SetYTitle("z, cells");
214 Add2RawsList(h5,kLGmod0, expert, !image, !saveCorr) ;
215 TH2I * h6 = new TH2I("hLowPHOSxyMod1","Low Gain in PHOS module 1", 64, 0, 64, 56, 0, 56) ;
216 h6->SetXTitle("x, cells"); h6->SetYTitle("z, cells");
217 Add2RawsList(h6,kLGmod1, expert, !image, !saveCorr) ;
218 TH2I * h7 = new TH2I("hLowPHOSxyMod2","Low Gain in PHOS module 2", 64, 0, 64, 56, 0, 56) ;
219 h7->SetXTitle("x, cells"); h7->SetYTitle("z, cells");
220 Add2RawsList(h7,kLGmod2, expert, !image, !saveCorr) ;
221 TH2I * h8 = new TH2I("hLowPHOSxyMod3","Low Gain in PHOS module 3", 64, 0, 64, 56, 0, 56) ;
222 h8->SetXTitle("x, cells"); h8->SetYTitle("z, cells");
223 Add2RawsList(h8,kLGmod3, expert, !image, !saveCorr) ;
224 TH2I * h9 = new TH2I("hLowPHOSxyMod4","Low Gain in PHOS module 4", 64, 0, 64, 56, 0, 56) ;
225 h9->SetXTitle("x, cells"); h9->SetYTitle("z, cells");
226 Add2RawsList(h9,kLGmod4, expert, !image, !saveCorr) ;
227
228 TH1I * h10 = new TH1I("hLowPhosModules", "Low Gain Hits in EMCA PHOS modules", 5, 0, 5) ;
229 h10->SetXTitle("Module number");
7d297381 230 Add2RawsList(h10, kNmodLG, !expert, image, !saveCorr) ;
80f1c279 231 TH1I * h11 = new TH1I("hHighPhosModules", "High Gain Hits in EMCA PHOS modules",5, 0, 5) ;
232 h11->SetXTitle("Module number");
7d297381 233 Add2RawsList(h11, kNmodHG, !expert, image, !saveCorr) ;
98e3f48c 234
80f1c279 235 TH1F * h12 = new TH1F("hLowPhosRawtime" , "Low Gain Time of raw hits in PHOS" , 500, -50., 200.) ;
236 h12->SetXTitle("Time [samples]");
98e3f48c 237 h12->Sumw2() ;
80f1c279 238 Add2RawsList(h12, kLGtime, expert, !image, !saveCorr) ;
239 TH1F * h13 = new TH1F("hHighPhosRawtime", "High Gain Time of raw hits in PHOS", 500, -50., 200.) ;
240 h13->SetXTitle("Time [samples]");
98e3f48c 241 h13->Sumw2() ;
80f1c279 242 Add2RawsList(h13, kHGtime, expert, !image, !saveCorr) ;
98e3f48c 243
80f1c279 244 TH1F * h14 = new TH1F("hLowPhosRawEnergy" , "Low Gain Energy of raw hits in PHOS" , 512, 0., 1024.) ;
245 h14->SetXTitle("Energy [ADC counts]");
98e3f48c 246 h14->Sumw2() ;
7d297381 247 Add2RawsList(h14, kSpecLG, !expert, image, !saveCorr) ;
80f1c279 248 TH1F * h15 = new TH1F("hHighPhosRawEnergy", "High Gain Energy of raw hits in PHOS", 512, 0., 1024.) ;
249 h15->SetXTitle("Energy [ADC counts]");
98e3f48c 250 h15->Sumw2() ;
7d297381 251 Add2RawsList(h15, kSpecHG, !expert, image, !saveCorr) ;
98e3f48c 252
80f1c279 253 TH1F * h16 = new TH1F("hLowNtot" , "Low Gain Total Number of raw hits in PHOS" , 500, 0., 5000.) ;
254 h16->SetXTitle("Number of hits");
98e3f48c 255 h16->Sumw2() ;
80f1c279 256 Add2RawsList(h16, kNtotLG, !expert, image, saveCorr) ;
257 TH1F * h17 = new TH1F("hHighNtot", "High Gain Total Number of raw hits in PHOS", 500, 0., 5000.) ;
258 h17->SetXTitle("Number of hits");
98e3f48c 259 h17->Sumw2() ;
80f1c279 260 Add2RawsList(h17, kNtotHG, !expert, image, saveCorr) ;
98e3f48c 261
80f1c279 262 TH1F * h18 = new TH1F("hLowEtot" , "Low Gain Total Energy of raw hits in PHOS" , 500, 0., 100000.) ;
263 h18->SetXTitle("Energy [ADC counts]");
98e3f48c 264 h18->Sumw2() ;
80f1c279 265 Add2RawsList(h18, kEtotLG, !expert, image, saveCorr) ;
266 TH1F * h19 = new TH1F("hHighEtot", "High Gain Total Energy of raw hits in PHOS", 500, 0., 100000.) ;
267 h19->SetXTitle("Energy [ADC counts]");
98e3f48c 268 h19->Sumw2() ;
80f1c279 269 Add2RawsList(h19, kEtotHG, !expert, image, saveCorr) ;
270
271 TH2F * h20 = new TH2F("hQualHGxyMod0","High Gain signal quality in module 0", 64, 0, 64, 56, 0, 56) ;
272 h20->SetXTitle("x, cells"); h20->SetYTitle("z, cells");
273 Add2RawsList(h20,kHGqualMod0, expert, !image, !saveCorr) ;
274 TH2F * h21 = new TH2F("hQualHGxyMod1","High Gain signal quality in module 1", 64, 0, 64, 56, 0, 56) ;
275 h21->SetXTitle("x, cells"); h21->SetYTitle("z, cells");
276 Add2RawsList(h21,kHGqualMod1, expert, !image, !saveCorr) ;
277 TH2F * h22 = new TH2F("hQualHGxyMod2","High Gain signal quality in module 2", 64, 0, 64, 56, 0, 56) ;
278 h22->SetXTitle("x, cells"); h22->SetYTitle("z, cells");
279 Add2RawsList(h22,kHGqualMod2, expert, !image, !saveCorr) ;
280 TH2F * h23 = new TH2F("hQualHGxyMod3","High Gain signal quality in module 3", 64, 0, 64, 56, 0, 56) ;
281 h23->SetXTitle("x, cells"); h23->SetYTitle("z, cells");
282 Add2RawsList(h23,kHGqualMod3, expert, !image, !saveCorr) ;
283 TH2F * h24 = new TH2F("hQualHGxyMod4","High Gain signal quality in module 4", 64, 0, 64, 56, 0, 56) ;
284 h24->SetXTitle("x, cells"); h24->SetYTitle("z, cells");
285 Add2RawsList(h24,kHGqualMod4, expert, !image, !saveCorr) ;
286
287 TH2F * h25 = new TH2F("hQualLGxyMod0","Low Gain signal quality in module 0", 64, 0, 64, 56, 0, 56) ;
288 h25->SetXTitle("x, cells"); h25->SetYTitle("z, cells");
289 Add2RawsList(h25,kLGqualMod0, expert, !image, !saveCorr) ;
290 TH2F * h26 = new TH2F("hQualLGxyMod1","Low Gain signal quality in module 1", 64, 0, 64, 56, 0, 56) ;
291 h26->SetXTitle("x, cells"); h26->SetYTitle("z, cells");
292 Add2RawsList(h26,kLGqualMod1, expert, !image, !saveCorr) ;
293 TH2F * h27 = new TH2F("hQualLGxyMod2","Low Gain signal quality in module 2", 64, 0, 64, 56, 0, 56) ;
294 h27->SetXTitle("x, cells"); h27->SetYTitle("z, cells");
295 Add2RawsList(h27,kLGqualMod2, expert, !image, !saveCorr) ;
296 TH2F * h28 = new TH2F("hQualLGxyMod3","Low Gain signal quality in module 3", 64, 0, 64, 56, 0, 56) ;
297 h28->SetXTitle("x, cells"); h28->SetYTitle("z, cells");
298 Add2RawsList(h28,kLGqualMod3, expert, !image, !saveCorr) ;
299 TH2F * h29 = new TH2F("hQualLGxyMod4","Low Gain signal quality in module 4", 64, 0, 64, 56, 0, 56) ;
300 h29->SetXTitle("x, cells"); h29->SetYTitle("z, cells");
301 Add2RawsList(h29,kLGqualMod4, expert, !image, !saveCorr) ;
302
303 TH1F * h30 = new TH1F("hLGpedRMS" ,"Low Gain pedestal RMS" ,200,0.,20.) ;
304 h30->SetXTitle("RMS [ADC counts]");
7285e69f 305 h30->Sumw2() ;
80f1c279 306 Add2RawsList(h30,kLGpedRMS, expert, !image, !saveCorr) ;
307 TH1F * h31 = new TH1F("hHGpedRMS" ,"High Gain pedestal RMS",200,0.,20.) ;
308 h31->SetXTitle("RMS [ADC counts]");
7285e69f 309 h31->Sumw2() ;
80f1c279 310 Add2RawsList(h31,kHGpedRMS, expert, !image, !saveCorr) ;
311
312 TH2F * h32 = new TH2F("hpedRMSHGxyMod0","High Gain pedestal RMS in module 0", 64, 0, 64, 56, 0, 56) ;
313 h32->SetXTitle("x, cells"); h32->SetYTitle("z, cells");
314 Add2RawsList(h32,kHGpedRMSMod0, expert, !image, !saveCorr) ;
315 TH2F * h33 = new TH2F("hpedRMSHGxyMod1","High Gain pedestal RMS in module 1", 64, 0, 64, 56, 0, 56) ;
316 h33->SetXTitle("x, cells"); h33->SetYTitle("z, cells");
317 Add2RawsList(h33,kHGpedRMSMod1, expert, !image, !saveCorr) ;
318 TH2F * h34 = new TH2F("hpedRMSHGxyMod2","High Gain pedestal RMS in module 2", 64, 0, 64, 56, 0, 56) ;
319 h34->SetXTitle("x, cells"); h34->SetYTitle("z, cells");
320 Add2RawsList(h34,kHGpedRMSMod2, expert, !image, !saveCorr) ;
321 TH2F * h35 = new TH2F("hpedRMSHGxyMod3","High Gain pedestal RMS in module 3", 64, 0, 64, 56, 0, 56) ;
322 h35->SetXTitle("x, cells"); h35->SetYTitle("z, cells");
323 Add2RawsList(h35,kHGpedRMSMod3, expert, !image, !saveCorr) ;
324 TH2F * h36 = new TH2F("hpedRMSHGxyMod4","High Gain pedestal RMS in module 4", 64, 0, 64, 56, 0, 56) ;
325 h36->SetXTitle("x, cells"); h36->SetYTitle("z, cells");
326 Add2RawsList(h36,kHGpedRMSMod4, expert, !image, !saveCorr) ;
327
328 TH2F * h37 = new TH2F("hpedRMSLGxyMod0","Low Gain pedestal RMS in module 0", 64, 0, 64, 56, 0, 56) ;
329 h37->SetXTitle("x, cells"); h37->SetYTitle("z, cells");
330 Add2RawsList(h37,kLGpedRMSMod0, expert, !image, !saveCorr) ;
331 TH2F * h38 = new TH2F("hpedRMSLGxyMod1","Low Gain pedestal RMS in module 1", 64, 0, 64, 56, 0, 56) ;
332 h38->SetXTitle("x, cells"); h38->SetYTitle("z, cells");
333 Add2RawsList(h38,kLGpedRMSMod1, expert, !image, !saveCorr) ;
334 TH2F * h39 = new TH2F("hpedRMSLGxyMod2","Low Gain pedestal RMS in module 2", 64, 0, 64, 56, 0, 56) ;
335 h39->SetXTitle("x, cells"); h39->SetYTitle("z, cells");
336 Add2RawsList(h39,kLGpedRMSMod2, expert, !image, !saveCorr) ;
337 TH2F * h40 = new TH2F("hpedRMSLGxyMod3","Low Gain pedestal RMS in module 3", 64, 0, 64, 56, 0, 56) ;
338 h40->SetXTitle("x, cells"); h40->SetYTitle("z, cells");
339 Add2RawsList(h40,kLGpedRMSMod3, expert, !image, !saveCorr) ;
340 TH2F * h41 = new TH2F("hpedRMSLGxyMod4","Low Gain pedestal RMS in module 4", 64, 0, 64, 56, 0, 56) ;
341 h41->SetXTitle("x, cells"); h41->SetYTitle("z, cells");
342 Add2RawsList(h41,kLGpedRMSMod4, expert, !image, !saveCorr) ;
92664bc8 343 //
344 ClonePerTrigClass(AliQAv1::kRAWS); // this should be the last line
04236e67 345}
346
04236e67 347//____________________________________________________________________________
348void AliPHOSQADataMakerRec::MakeESDs(AliESDEvent * esd)
349{
92664bc8 350 // make QA data from ESDs
ebde5500 351 Int_t nTot = 0 ;
352 Double_t eTot = 0 ;
04236e67 353 for ( Int_t index = 0; index < esd->GetNumberOfCaloClusters() ; index++ ) {
ebde5500 354 AliESDCaloCluster * clu = esd->GetCaloCluster(index) ;
355 if( clu->IsPHOS() ) {
92664bc8 356 FillESDsData(kESDSpec,clu->E()) ;
c8fe2783 357 const Double_t * pid = clu->GetPID() ;
92664bc8 358 FillESDsData(kESDpid,pid[AliPID::kPhoton]) ;
ebde5500 359 eTot+=clu->E() ;
360 nTot++ ;
361 }
04236e67 362 }
92664bc8 363 FillESDsData(kESDNtot,nTot) ;
364 FillESDsData(kESDEtot,eTot) ;
365 //
366 IncEvCountCycleESDs();
367 IncEvCountTotalESDs();
368 //
04236e67 369}
370
04236e67 371//____________________________________________________________________________
372void AliPHOSQADataMakerRec::MakeRaws(AliRawReader* rawReader)
373{
39569d36 374 //Fill prepared histograms with Raw digit properties
eca4fa66 375
ebde5500 376 rawReader->Reset() ;
379c5c09 377
378 const TObjArray* maps = AliPHOSRecoParam::GetMappings();
379 if(!maps) AliFatal("Cannot retrieve ALTRO mappings!!");
380
176f6510 381 AliAltroMapping *mapping[20];
382 for(Int_t i = 0; i < 20; i++) {
379c5c09 383 mapping[i] = (AliAltroMapping*)maps->At(i);
384 }
385
66eae3f0 386 AliCaloRawStreamV3 fRawStream(rawReader,"PHOS",mapping);
379c5c09 387
388 AliPHOSRawFitterv0 * fitter ;
389 if (strcmp(GetRecoParam()->EMCFitterVersion(),"v1")==0)
390 fitter=new AliPHOSRawFitterv1();
391 else if(strcmp(GetRecoParam()->EMCFitterVersion(),"v2")==0)
80f1c279 392 fitter=new AliPHOSRawFitterv2();
393 else
394 fitter=new AliPHOSRawFitterv0();
ebde5500 395 Double_t lgEtot=0. ;
396 Double_t hgEtot=0. ;
379c5c09 397 Int_t lgNtot=0 ;
398 Int_t hgNtot=0 ;
399
80f1c279 400 while (fRawStream.NextDDL()) {
66eae3f0 401 while (fRawStream.NextChannel()) {
402 Int_t module = fRawStream.GetModule();
403 Int_t cellX = fRawStream.GetCellX();
404 Int_t cellZ = fRawStream.GetCellZ();
405 Int_t caloFlag = fRawStream.GetCaloFlag(); // 0=LG, 1=HG, 2=TRU
379c5c09 406
e10f780e 407 if(caloFlag!=0 && caloFlag!=1) continue; //TRU data!
408
409 fitter->SetChannelGeo(module+1,cellX+1,cellZ+1,caloFlag);
410
411 if(fitter->GetAmpOffset()==0 && fitter->GetAmpThreshold()==0) {
80f1c279 412 Short_t altroCFG1 = fRawStream.GetAltroCFG1();
413 Bool_t ZeroSuppressionEnabled = (altroCFG1 >> 15) & 0x1;
e10f780e 414 if(ZeroSuppressionEnabled) {
80f1c279 415 Short_t offset = (altroCFG1 >> 10) & 0xf;
416 Short_t threshold = altroCFG1 & 0x3ff;
e10f780e 417 fitter->SubtractPedestals(kFALSE);
418 fitter->SetAmpOffset(offset);
419 fitter->SetAmpThreshold(threshold);
420 }
80f1c279 421 else
422 fitter->SubtractPedestals(kTRUE);
e10f780e 423 }
424
379c5c09 425 Int_t nBunches = 0;
66eae3f0 426 while (fRawStream.NextBunch()) {
379c5c09 427 nBunches++;
428 if (nBunches > 1) continue;
66eae3f0 429 const UShort_t *sig = fRawStream.GetSignals();
430 Int_t sigStart = fRawStream.GetStartTimeBin();
431 Int_t sigLength = fRawStream.GetBunchLength();
92236b27 432 fitter->Eval(sig,sigStart,sigLength);
379c5c09 433 } // End of NextBunch()
434
379c5c09 435 Double_t energy = fitter->GetEnergy() ;
436 Double_t time = fitter->GetTime() ;
437
438 if (caloFlag == 0) { // LG
92664bc8 439 FillRawsData(kLGpedRMS,fitter->GetPedestalRMS()) ;
379c5c09 440 switch(module){
92664bc8 441 case 0: FillRawsData(kLGmod0,cellX,cellZ) ; break ;
442 case 1: FillRawsData(kLGmod1,cellX,cellZ) ; break ;
443 case 2: FillRawsData(kLGmod2,cellX,cellZ) ; break ;
444 case 3: FillRawsData(kLGmod3,cellX,cellZ) ; break ;
445 case 4: FillRawsData(kLGmod4,cellX,cellZ) ; break ;
379c5c09 446 }
447 switch (module){
92664bc8 448 case 0: FillRawsData(kLGpedRMSMod0,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
449 case 1: FillRawsData(kLGpedRMSMod1,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
450 case 2: FillRawsData(kLGpedRMSMod2,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
451 case 3: FillRawsData(kLGpedRMSMod3,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
452 case 4: FillRawsData(kLGpedRMSMod4,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
379c5c09 453 }
454 //if quality was evaluated, fill histo
455 if(strcmp(GetRecoParam()->EMCFitterVersion(),"v1")==0){
456 switch (module){
92664bc8 457 case 0: FillRawsData(kLGqualMod0,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
458 case 1: FillRawsData(kLGqualMod1,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
459 case 2: FillRawsData(kLGqualMod2,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
460 case 3: FillRawsData(kLGqualMod3,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
461 case 4: FillRawsData(kLGqualMod4,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
379c5c09 462 }
463 }
92664bc8 464 FillRawsData(kNmodLG,module) ;
465 FillRawsData(kLGtime,time) ;
466 FillRawsData(kSpecLG,energy) ;
379c5c09 467 lgEtot+=energy ;
468 lgNtot++ ;
80f1c279 469 }
470 else if (caloFlag == 1) { // HG
92664bc8 471 FillRawsData(kHGpedRMS,fitter->GetPedestalRMS()) ;
379c5c09 472 switch (module){
92664bc8 473 case 0: FillRawsData(kHGmod0,cellX,cellZ) ; break ;
474 case 1: FillRawsData(kHGmod1,cellX,cellZ) ; break ;
475 case 2: FillRawsData(kHGmod2,cellX,cellZ) ; break ;
476 case 3: FillRawsData(kHGmod3,cellX,cellZ) ; break ;
477 case 4: FillRawsData(kHGmod4,cellX,cellZ) ; break ;
379c5c09 478 }
479 switch (module){
92664bc8 480 case 0: FillRawsData(kHGpedRMSMod0,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
481 case 1: FillRawsData(kHGpedRMSMod1,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
482 case 2: FillRawsData(kHGpedRMSMod2,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
483 case 3: FillRawsData(kHGpedRMSMod3,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
484 case 4: FillRawsData(kHGpedRMSMod4,cellX,cellZ,fitter->GetPedestalRMS()) ; break ;
379c5c09 485 }
486 //if quality was evaluated, fill histo
487 if(strcmp(GetRecoParam()->EMCFitterVersion(),"v1")==0){
488 switch (module){
92664bc8 489 case 0: FillRawsData(kHGqualMod0,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
490 case 1: FillRawsData(kHGqualMod1,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
491 case 2: FillRawsData(kHGqualMod2,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
492 case 3: FillRawsData(kHGqualMod3,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
493 case 4: FillRawsData(kHGqualMod4,cellX,cellZ,fitter->GetSignalQuality()) ; break ;
80f1c279 494 }
379c5c09 495 }
92664bc8 496 FillRawsData(kNmodHG,module) ;
497 FillRawsData(kHGtime,time) ;
498 FillRawsData(kSpecHG,energy) ;
379c5c09 499 hgEtot+=energy ;
500 hgNtot++ ;
501 }
502 } // End of NextChannel
503 } // End of NextDDL
504 delete fitter;
505
92664bc8 506 FillRawsData(kEtotLG,lgEtot) ;
379c5c09 507 TParameter<double> * p;
508 p = dynamic_cast<TParameter<double>*>(GetParameterList()->
509 FindObject(Form("%s_%s_%s", GetName(),
510 AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(),
511 GetRawsData(kEtotLG)->GetName()))) ;
719e870c 512 if (p) p->SetVal(lgEtot) ;
92664bc8 513 FillRawsData(kEtotHG,hgEtot) ;
379c5c09 514 p = dynamic_cast<TParameter<double>*>(GetParameterList()->
515 FindObject(Form("%s_%s_%s", GetName(),
516 AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(),
517 GetRawsData(kEtotHG)->GetName()))) ;
719e870c 518 if (p) p->SetVal(hgEtot) ;
92664bc8 519 FillRawsData(kNtotLG,lgNtot) ;
379c5c09 520 p = dynamic_cast<TParameter<double>*>(GetParameterList()->
521 FindObject(Form("%s_%s_%s", GetName(),
522 AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(),
523 GetRawsData(kNtotLG)->GetName()))) ;
719e870c 524 if (p) p->SetVal(lgNtot) ;
92664bc8 525 FillRawsData(kNtotHG,hgNtot) ;
379c5c09 526 p = dynamic_cast<TParameter<double>*>(GetParameterList()->
527 FindObject(Form("%s_%s_%s",
528 GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(),
529 GetRawsData(kNtotHG)->GetName()))) ;
719e870c 530 if (p) p->SetVal(hgNtot) ;
92664bc8 531 //
532 IncEvCountCycleRaws();
533 IncEvCountTotalRaws();
534 //
04236e67 535}
44ed7a66 536
537//____________________________________________________________________________
6252ceeb 538void AliPHOSQADataMakerRec::MakeDigits()
44ed7a66 539{
540 // makes data from Digits
92664bc8 541
542 if ( ! GetDigitsData(kDigitsMul) ) InitDigits() ;
543 FillDigitsData(kDigitsMul,fDigitsArray->GetEntriesFast()) ;
6252ceeb 544 TIter next(fDigitsArray) ;
44ed7a66 545 AliPHOSDigit * digit ;
546 while ( (digit = dynamic_cast<AliPHOSDigit *>(next())) ) {
92664bc8 547 FillDigitsData(kDigits, digit->GetEnergy()) ;
44ed7a66 548 }
92664bc8 549 //
44ed7a66 550}
551
552//____________________________________________________________________________
553void AliPHOSQADataMakerRec::MakeDigits(TTree * digitTree)
554{
92664bc8 555 // makes data from Digit Tree
556 if (fDigitsArray)
6252ceeb 557 fDigitsArray->Clear() ;
558 else
559 fDigitsArray = new TClonesArray("AliPHOSDigit", 1000) ;
44ed7a66 560
92664bc8 561 TBranch * branch = digitTree->GetBranch("PHOS") ;
562 if ( ! branch ) {AliWarning("PHOS branch in Digit Tree not found"); return;}
563 branch->SetAddress(&fDigitsArray) ;
564 branch->GetEntry(0) ;
565 MakeDigits() ;
566 //
567 IncEvCountCycleDigits();
568 IncEvCountTotalDigits();
569 //
44ed7a66 570}
571
04236e67 572//____________________________________________________________________________
573void AliPHOSQADataMakerRec::MakeRecPoints(TTree * clustersTree)
574{
575 {
576 // makes data from RecPoints
577 TBranch *emcbranch = clustersTree->GetBranch("PHOSEmcRP");
578 if (!emcbranch) {
579 AliError("can't get the branch with the PHOS EMC clusters !");
580 return;
581 }
eca4fa66 582
04236e67 583 TObjArray * emcrecpoints = new TObjArray(100) ;
584 emcbranch->SetAddress(&emcrecpoints);
585 emcbranch->GetEntry(0);
586
92664bc8 587 FillRecPointsData(kRPNtot,emcrecpoints->GetEntriesFast()) ;
04236e67 588 TIter next(emcrecpoints) ;
589 AliPHOSEmcRecPoint * rp ;
ebde5500 590 Double_t eTot = 0. ;
eca4fa66 591 while ( (rp = static_cast<AliPHOSEmcRecPoint *>(next())) ) {
92664bc8 592 FillRecPointsData(kRPSpec, rp->GetEnergy()) ;
ebde5500 593 Int_t mod = rp->GetPHOSMod() ;
594 TVector3 pos ;
595 rp->GetLocalPosition(pos) ;
596 switch(mod){
92664bc8 597 case 1: FillRecPointsData(kRPmod1,pos.X(),pos.Z()) ; break ;
598 case 2: FillRecPointsData(kRPmod2,pos.X(),pos.Z()) ; break ;
599 case 3: FillRecPointsData(kRPmod3,pos.X(),pos.Z()) ; break ;
600 case 4: FillRecPointsData(kRPmod4,pos.X(),pos.Z()) ; break ;
601 case 5: FillRecPointsData(kRPmod5,pos.X(),pos.Z()) ; break ;
ebde5500 602 }
603 eTot+= rp->GetEnergy() ;
04236e67 604 }
92664bc8 605 FillRecPointsData(kRPEtot,eTot) ;
04236e67 606 emcrecpoints->Delete();
607 delete emcrecpoints;
608 }
609 {
610 TBranch *cpvbranch = clustersTree->GetBranch("PHOSCpvRP");
611 if (!cpvbranch) {
612 AliError("can't get the branch with the PHOS CPV clusters !");
613 return;
614 }
615 TObjArray *cpvrecpoints = new TObjArray(100) ;
616 cpvbranch->SetAddress(&cpvrecpoints);
617 cpvbranch->GetEntry(0);
618
92664bc8 619 FillRecPointsData(kRPNcpv,cpvrecpoints->GetEntriesFast()) ;
04236e67 620 cpvrecpoints->Delete();
621 delete cpvrecpoints;
622 }
92664bc8 623 //
624 IncEvCountCycleRecPoints();
625 IncEvCountTotalRecPoints();
626 //
04236e67 627}
628
04236e67 629//____________________________________________________________________________
630void AliPHOSQADataMakerRec::StartOfDetectorCycle()
631{
632 //Detector specific actions at start of cycle
633
634}