]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSQADataMaker.cxx
Initialiye the runloader also when processing ESD
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQADataMaker.cxx
CommitLineData
ddd1a39c 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>
d5cf81bd 30#include <TH2F.h>
ddd1a39c 31
32// --- Standard library ---
33
34// --- AliRoot header files ---
35#include "AliESDCaloCluster.h"
36#include "AliESDEvent.h"
37#include "AliLog.h"
38#include "AliPHOSDigit.h"
39#include "AliPHOSHit.h"
b8274834 40#include "AliPHOSQADataMaker.h"
41#include "AliQAChecker.h"
ddd1a39c 42#include "AliPHOSCpvRecPoint.h"
43#include "AliPHOSEmcRecPoint.h"
44#include "AliPHOSRecParticle.h"
45#include "AliPHOSTrackSegment.h"
d5cf81bd 46#include "AliPHOSRawDecoder.h"
ddd1a39c 47
b8274834 48ClassImp(AliPHOSQADataMaker)
ddd1a39c 49
50//____________________________________________________________________________
b8274834 51 AliPHOSQADataMaker::AliPHOSQADataMaker() :
52 AliQADataMaker(AliQA::GetDetName(AliQA::kPHOS), "PHOS Quality Assurance Data Maker")
ddd1a39c 53{
54 // ctor
ddd1a39c 55}
56
57//____________________________________________________________________________
b8274834 58AliPHOSQADataMaker::AliPHOSQADataMaker(const AliPHOSQADataMaker& qadm) :
59 AliQADataMaker()
ddd1a39c 60{
61 //copy ctor
62 SetName((const char*)qadm.GetName()) ;
63 SetTitle((const char*)qadm.GetTitle());
64}
65
66//__________________________________________________________________
b8274834 67AliPHOSQADataMaker& AliPHOSQADataMaker::operator = (const AliPHOSQADataMaker& qadm )
ddd1a39c 68{
69 // Equal operator.
b8274834 70 this->~AliPHOSQADataMaker();
71 new(this) AliPHOSQADataMaker(qadm);
ddd1a39c 72 return *this;
73}
74
5b188f2f 75//____________________________________________________________________________
b8274834 76void AliPHOSQADataMaker::EndOfDetectorCycle(AliQA::TASKINDEX task, TList * list)
5b188f2f 77{
78 //Detector specific actions at end of cycle
a4976ef3 79 // do the QA checking
b8274834 80 AliQAChecker::Instance()->Run(AliQA::kPHOS, task, list) ;
5b188f2f 81}
82
ddd1a39c 83//____________________________________________________________________________
b8274834 84void AliPHOSQADataMaker::InitESDs()
ddd1a39c 85{
86 //create ESDs histograms in ESDs subdir
117e9d0d 87 TH1F * h0 = new TH1F("hPhosESDs", "ESDs energy distribution in PHOS", 100, 0., 100.) ;
88 h0->Sumw2() ;
89 Add2ESDsList(h0, 0) ;
90 TH1I * h1 = new TH1I("hPhosESDsMul", "ESDs multiplicity distribution in PHOS", 100, 0., 100) ;
91 h1->Sumw2() ;
92 Add2ESDsList(h1, 1) ;
ddd1a39c 93}
94
95//____________________________________________________________________________
b8274834 96void AliPHOSQADataMaker::InitHits()
ddd1a39c 97{
98 // create Hits histograms in Hits subdir
117e9d0d 99 TH1F * h0 = new TH1F("hPhosHits", "Hits energy distribution in PHOS", 100, 0., 100.) ;
100 h0->Sumw2() ;
101 Add2HitsList(h0, 0) ;
102 TH1I * h1 = new TH1I("hPhosHitsMul", "Hits multiplicity distribution in PHOS", 500, 0., 10000) ;
103 h1->Sumw2() ;
104 Add2HitsList(h1, 1) ;
ddd1a39c 105}
106
107//____________________________________________________________________________
b8274834 108void AliPHOSQADataMaker::InitDigits()
ddd1a39c 109{
110 // create Digits histograms in Digits subdir
117e9d0d 111 TH1I * h0 = new TH1I("hPhosDigits", "Digits amplitude distribution in PHOS", 500, 0, 5000) ;
112 h0->Sumw2() ;
113 Add2DigitsList(h0, 0) ;
114 TH1I * h1 = new TH1I("hPhosDigitsMul", "Digits multiplicity distribution in PHOS", 500, 0, 1000) ;
115 h1->Sumw2() ;
c65c502a 116 Add2DigitsList(h1, 1) ;
ddd1a39c 117}
118
119//____________________________________________________________________________
b8274834 120//void AliPHOSQADataMaker::InitRecParticles()
117e9d0d 121//{
122// // create Reconstructed particles histograms in RecParticles subdir
123// fhRecParticles = new TH1F("hPhosRecParticles", "RecParticles energy distribution in PHOS", 100, 0., 100.) ;
124// fhRecParticles->Sumw2() ;
125// fhRecParticlesMul = new TH1I("hPhosRecParticlesMul", "RecParticles multiplicity distribution in PHOS", 100, 0, 100) ;
126// fhRecParticlesMul->Sumw2() ;
127//}
ddd1a39c 128
129//____________________________________________________________________________
b8274834 130void AliPHOSQADataMaker::InitRecPoints()
ddd1a39c 131{
132 // create Reconstructed Points histograms in RecPoints subdir
117e9d0d 133 TH1F * h0 = new TH1F("hEmcPhosRecPoints", "EMCA RecPoints energy distribution in PHOS", 100, 0., 100.) ;
134 h0->Sumw2() ;
135 Add2RecPointsList(h0, 0) ;
136 TH1I * h1 = new TH1I("hEmcPhosRecPointsMul", "EMCA RecPoints multiplicity distribution in PHOS", 100, 0, 100) ;
137 h1->Sumw2() ;
138 Add2RecPointsList(h1, 1) ;
ddd1a39c 139
117e9d0d 140 TH1F * h2 = new TH1F("hCpvPhosRecPoints", "CPV RecPoints energy distribution in PHOS", 100, 0., 100.) ;
141 h2->Sumw2() ;
142 Add2RecPointsList(h2, 2) ;
143 TH1I * h3 = new TH1I("hCpvPhosRecPointsMul", "CPV RecPoints multiplicity distribution in PHOS", 100, 0, 100) ;
144 h3->Sumw2() ;
145 Add2RecPointsList(h3, 3) ;
ddd1a39c 146}
147
148//____________________________________________________________________________
b8274834 149void AliPHOSQADataMaker::InitRaws()
ddd1a39c 150{
117e9d0d 151 // create Raws histograms in Raws subdir
d5cf81bd 152 const Int_t modMax = 5 ;
a4976ef3 153 TH2I * h0[modMax*2] ;
f5c02bae 154 char name[32] ;
155 char title[32] ;
42ce5548 156 for (Int_t mod = 0; mod < modMax; mod++) {
a4976ef3 157 sprintf(title, "Low Gain Rows x Columns for PHOS module %d", mod) ;
158 sprintf(name, "hLowPHOSxyMod%d", mod) ;
159 h0[mod] = new TH2I(name, title, 64, 1, 65, 56, 1, 57) ;
160 Add2RawsList(h0[mod], mod) ;
161 sprintf(title, "High Gain Rows x Columns for PHOS module %d", mod) ;
162 sprintf(name, "hHighPHOSxyMod%d", mod) ;
163 h0[mod+modMax] = new TH2I(name, title, 64, 1, 65, 56, 1, 57) ;
164 Add2RawsList(h0[mod+modMax], mod+modMax) ;
d5cf81bd 165 }
a4976ef3 166 TH1I * h10 = new TH1I("hLowPhosModules", "Low Gain Hits in EMCA PHOS modules", 6, 0, 6) ;
167 h10->Sumw2() ;
168 Add2RawsList(h10, 10) ;
169 TH1I * h11 = new TH1I("hHighPhosModules", "High Gain Hits in EMCA PHOS modules", 6, 0, 6) ;
170 h11->Sumw2() ;
171 Add2RawsList(h11, 11) ;
172 TH1F * h12 = new TH1F("hLowPhosRawtime", "Low Gain Time of raw hits in PHOS", 100, 0, 100.) ;
173 h12->Sumw2() ;
174 Add2RawsList(h12, 12) ;
175 TH1F * h13 = new TH1F("hHighPhosRawtime", "High Gain Time of raw hits in PHOS", 100, 0, 100.) ;
176 h13->Sumw2() ;
177 Add2RawsList(h13, 13) ;
178 TH1F * h14 = new TH1F("hLowPhosRawEnergy", "Low Gain Energy of raw hits in PHOS", 100, 0., 100.) ;
179 h14->Sumw2() ;
180 Add2RawsList(h14, 14) ;
181 TH1F * h15 = new TH1F("hHighPhosRawEnergy", "High Gain Energy of raw hits in PHOS", 100, 0., 100.) ;
182 h15->Sumw2() ;
183 Add2RawsList(h15, 15) ;
d5cf81bd 184
ddd1a39c 185}
186
187//____________________________________________________________________________
b8274834 188void AliPHOSQADataMaker::InitSDigits()
ddd1a39c 189{
117e9d0d 190 // create SDigits histograms in SDigits subdir
191 TH1F * h0 = new TH1F("hPhosSDigits", "SDigits energy distribution in PHOS", 100, 0., 100.) ;
192 h0->Sumw2() ;
193 Add2SDigitsList(h0, 0) ;
194 TH1I * h1 = new TH1I("hPhosSDigitsMul", "SDigits multiplicity distribution in PHOS", 500, 0, 10000) ;
195 h1->Sumw2() ;
196 Add2SDigitsList(h1, 1) ;
ddd1a39c 197}
198
117e9d0d 199//____________________________________________________________________________
b8274834 200//void AliPHOSQADataMaker::InitTrackSegments()
117e9d0d 201//{
202// // create Track Segments histograms in TrackSegments subdir
203// fhTrackSegments = new TH1F("hPhosTrackSegments", "TrackSegments EMC-CPV distance in PHOS", 500, 0., 5000.) ;
204// fhTrackSegments->Sumw2() ;
205// fhTrackSegmentsMul = new TH1I("hPhosTrackSegmentsMul", "TrackSegments multiplicity distribution in PHOS", 100, 0, 100) ;
206// fhTrackSegmentsMul->Sumw2() ;
207//}
208
ddd1a39c 209//____________________________________________________________________________
b8274834 210void AliPHOSQADataMaker::MakeESDs(AliESDEvent * esd)
ddd1a39c 211{
212 // make QA data from ESDs
a9f12b13 213
214 Int_t count = 0 ;
215 for ( Int_t index = esd->GetFirstPHOSCluster(); index < esd->GetNumberOfCaloClusters() ; index++ ) {
216 AliESDCaloCluster * clu = esd->GetCaloCluster(index) ;
217 if ( clu->IsPHOS() ) {
218 GetESDsData(0)->Fill(clu->E()) ;
219 count++ ;
220 }
ddd1a39c 221 }
117e9d0d 222 GetESDsData(1)->Fill(count) ;
ddd1a39c 223}
224
225//____________________________________________________________________________
b8274834 226void AliPHOSQADataMaker::MakeHits(TClonesArray * hits)
ddd1a39c 227{
cffe9bac 228 //make QA data from Hits
ddd1a39c 229
117e9d0d 230 GetHitsData(1)->Fill(hits->GetEntriesFast()) ;
d76c31f4 231 TIter next(hits) ;
232 AliPHOSHit * hit ;
233 while ( (hit = dynamic_cast<AliPHOSHit *>(next())) ) {
117e9d0d 234 GetHitsData(0)->Fill( hit->GetEnergy()) ;
d76c31f4 235 }
d76c31f4 236}
cffe9bac 237
238//____________________________________________________________________________
239void AliPHOSQADataMaker::MakeHits(TTree * hitTree)
240{
241 // make QA data from Hit Tree
242
243 TClonesArray * hits = new TClonesArray("AliPHOSHit", 1000);
244
245 TBranch * branch = hitTree->GetBranch("PHOS") ;
246 if ( ! branch ) {
247 AliWarning("PHOS branch in Hit Tree not found") ;
248 } else {
249 TClonesArray * tmp = new TClonesArray("AliPHOSHit", 1000) ;
250 branch->SetAddress(&tmp) ;
251 Int_t index = 0 ;
252 for (Int_t ientry = 0 ; ientry < branch->GetEntries() ; ientry++) {
253 branch->GetEntry(ientry) ;
254 for (Int_t ihit = 0 ; ihit < tmp->GetEntries() ; ihit++) {
255 AliPHOSHit * hit = dynamic_cast<AliPHOSHit *> (tmp->At(ihit)) ;
256 new((*hits)[index]) AliPHOSHit(*hit) ;
257 index++ ;
258 }
259 }
260 tmp->Delete() ;
261 delete tmp ;
262 MakeHits(hits) ;
263 }
264}
265
ddd1a39c 266//____________________________________________________________________________
b8274834 267void AliPHOSQADataMaker::MakeDigits(TClonesArray * digits)
ddd1a39c 268{
269 // makes data from Digits
270
117e9d0d 271 GetDigitsData(1)->Fill(digits->GetEntriesFast()) ;
d76c31f4 272 TIter next(digits) ;
273 AliPHOSDigit * digit ;
274 while ( (digit = dynamic_cast<AliPHOSDigit *>(next())) ) {
117e9d0d 275 GetDigitsData(0)->Fill( digit->GetEnergy()) ;
d76c31f4 276 }
ddd1a39c 277}
278
cffe9bac 279//____________________________________________________________________________
280void AliPHOSQADataMaker::MakeDigits(TTree * digitTree)
281{
282 // makes data from Digit Tree
283 TClonesArray * digits = new TClonesArray("AliPHOSDigit", 1000) ;
284
285 TBranch * branch = digitTree->GetBranch("PHOS") ;
286 if ( ! branch ) {
287 AliWarning("PHOS branch in Digit Tree not found") ;
288 } else {
289 branch->SetAddress(&digits) ;
290 branch->GetEntry(0) ;
291 MakeDigits(digits) ;
292 }
293}
294
ddd1a39c 295//____________________________________________________________________________
b8274834 296// void AliPHOSQADataMaker::MakeRecParticles(TTree * recpar)
d76c31f4 297// {
298// // makes data from RecParticles
ddd1a39c 299
d76c31f4 300// TClonesArray * recparticles = dynamic_cast<TClonesArray*>(fData) ;
301// fhRecParticlesMul->Fill(recparticles->GetEntriesFast()) ;
302// TIter next(recparticles) ;
303// AliPHOSRecParticle * recparticle ;
304// while ( (recparticle = dynamic_cast<AliPHOSRecParticle *>(next())) ) {
305// fhRecParticles->Fill( recparticle->Energy()) ;
306// }
307// }
ddd1a39c 308
117e9d0d 309//____________________________________________________________________________
b8274834 310void AliPHOSQADataMaker::MakeRaws(AliRawReader* rawReader)
117e9d0d 311{
a4976ef3 312 const Int_t modMax = 5 ;
d5cf81bd 313 rawReader->Reset() ;
314 AliPHOSRawDecoder decoder(rawReader);
42ce5548 315 decoder.SetOldRCUFormat(kTRUE);
a4976ef3 316 decoder.SubtractPedestals(kTRUE);
317
42ce5548 318 Int_t count = 0 ;
d5cf81bd 319 while (decoder.NextDigit()) {
320 Int_t module = decoder.GetModule() ;
321 Int_t row = decoder.GetRow() ;
322 Int_t col = decoder.GetColumn() ;
323 Double_t time = decoder.GetTime() ;
a4976ef3 324 Double_t energy = decoder.GetEnergy() ;
325 Bool_t lowGain = decoder.IsLowGain();
326 if (lowGain) {
327 GetRawsData(module)->Fill(row, col) ;
328 GetRawsData(10)->Fill(module) ;
329 GetRawsData(12)->Fill(time) ;
330 GetRawsData(14)->Fill(energy) ;
331 } else {
332 GetRawsData(module+modMax)->Fill(row, col) ;
333 GetRawsData(11)->Fill(module) ;
334 GetRawsData(13)->Fill(time) ;
335 GetRawsData(15)->Fill(energy) ;
336 }
f5c02bae 337 //AliInfo(Form(" %d %d %d %d %f %f\n", count, module, row, col, time, energy)) ;
42ce5548 338 count++ ;
d5cf81bd 339 }
117e9d0d 340}
341
ddd1a39c 342//____________________________________________________________________________
b8274834 343void AliPHOSQADataMaker::MakeRecPoints(TTree * clustersTree)
ddd1a39c 344{
d76c31f4 345 {
346 // makes data from RecPoints
347 TBranch *emcbranch = clustersTree->GetBranch("PHOSEmcRP");
348 if (!emcbranch) {
349 AliError("can't get the branch with the PHOS EMC clusters !");
350 return;
351 }
352 TObjArray * emcrecpoints = new TObjArray(100) ;
353 emcbranch->SetAddress(&emcrecpoints);
354 emcbranch->GetEntry(0);
355
117e9d0d 356 GetRecPointsData(1)->Fill(emcrecpoints->GetEntriesFast()) ;
d76c31f4 357 TIter next(emcrecpoints) ;
ddd1a39c 358 AliPHOSEmcRecPoint * rp ;
359 while ( (rp = dynamic_cast<AliPHOSEmcRecPoint *>(next())) ) {
117e9d0d 360 GetRecPointsData(0)->Fill( rp->GetEnergy()) ;
ddd1a39c 361 }
d76c31f4 362 emcrecpoints->Delete();
363 delete emcrecpoints;
364 }
365 {
366 TBranch *cpvbranch = clustersTree->GetBranch("PHOSCpvRP");
367 if (!cpvbranch) {
368 AliError("can't get the branch with the PHOS CPV clusters !");
369 return;
370 }
371 TObjArray *cpvrecpoints = new TObjArray(100) ;
372 cpvbranch->SetAddress(&cpvrecpoints);
373 cpvbranch->GetEntry(0);
374
117e9d0d 375 GetRecPointsData(1)->Fill(cpvrecpoints->GetEntriesFast()) ;
d76c31f4 376 TIter next(cpvrecpoints) ;
ddd1a39c 377 AliPHOSCpvRecPoint * rp ;
378 while ( (rp = dynamic_cast<AliPHOSCpvRecPoint *>(next())) ) {
117e9d0d 379 GetRecPointsData(0)->Fill( rp->GetEnergy()) ;
ddd1a39c 380 }
d76c31f4 381 cpvrecpoints->Delete();
382 delete cpvrecpoints;
383 }
ddd1a39c 384}
385
386//____________________________________________________________________________
b8274834 387void AliPHOSQADataMaker::MakeSDigits(TClonesArray * sdigits)
ddd1a39c 388{
389 // makes data from SDigits
d76c31f4 390
d5cf81bd 391 GetSDigitsData(1)->Fill(sdigits->GetEntriesFast()) ;
d76c31f4 392 TIter next(sdigits) ;
393 AliPHOSDigit * sdigit ;
394 while ( (sdigit = dynamic_cast<AliPHOSDigit *>(next())) ) {
117e9d0d 395 GetSDigitsData(0)->Fill( sdigit->GetEnergy()) ;
d76c31f4 396 }
ddd1a39c 397}
398
cffe9bac 399//____________________________________________________________________________
400void AliPHOSQADataMaker::MakeSDigits(TTree * sdigitTree)
401{
402 // makes data from SDigit Tree
403 TClonesArray * sdigits = new TClonesArray("AliPHOSDigit", 1000) ;
404
405 TBranch * branch = sdigitTree->GetBranch("PHOS") ;
406 if ( ! branch ) {
407 AliWarning("PHOS branch in SDigit Tree not found") ;
408 } else {
409 branch->SetAddress(&sdigits) ;
410 branch->GetEntry(0) ;
411 MakeSDigits(sdigits) ;
412 }
413}
414
ddd1a39c 415//____________________________________________________________________________
b8274834 416// void AliPHOSQADataMaker::MakeTrackSegments(TTree * ts)
d76c31f4 417// {
418// // makes data from TrackSegments
ddd1a39c 419
d76c31f4 420// TClonesArray * tracksegments = dynamic_cast<TClonesArray*>(fData) ;
ddd1a39c 421
d76c31f4 422// fhTrackSegmentsMul->Fill(tracksegments->GetEntriesFast()) ;
423// TIter next(tracksegments) ;
424// AliPHOSTrackSegment * ts ;
425// while ( (ts = dynamic_cast<AliPHOSTrackSegment *>(next())) ) {
426// fhTrackSegments->Fill( ts->GetCpvDistance()) ;
427// }
428// }
5b188f2f 429
430//____________________________________________________________________________
b8274834 431void AliPHOSQADataMaker::StartOfDetectorCycle()
5b188f2f 432{
433 //Detector specific actions at start of cycle
434
435}