]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASDDDataMakerRec.cxx
MergeQA is now an intrinsic part of AliReconstruction
[u/mrichter/AliRoot.git] / ITS / AliITSQASDDDataMakerRec.cxx
CommitLineData
ebdd0606 1/**************************************************************************
2 * Copyright(c) 2007-2009, 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/* $Id$ */
17
18// *************************************************************
19// Checks the quality assurance
20// by comparing with reference data
21// contained in a DB
22// -------------------------------------------------------------
23// W. Ferrarese + P. Cerello Feb 2008
e41192d7 24// M.Siciliano Aug 2008 QA RecPoints and HLT mode
ebdd0606 25// INFN Torino
26
27// --- ROOT system ---
ad300de9 28
ebdd0606 29#include <TProfile2D.h>
30#include <TH2D.h>
31#include <TBranch.h>
32#include <TTree.h>
33#include <TGaxis.h>
34#include <TMath.h>
35#include <TDirectory.h>
e41192d7 36#include <TSystem.h>
ebdd0606 37// --- Standard library ---
38
39// --- AliRoot header files ---
40#include "AliITSQASDDDataMakerRec.h"
41#include "AliLog.h"
4e25ac79 42#include "AliQAv1.h"
ebdd0606 43#include "AliQAChecker.h"
44#include "AliRawReader.h"
e41192d7 45#include "AliITSRawStream.h"
ebdd0606 46#include "AliITSRawStreamSDD.h"
e41192d7 47#include "AliITSRawStreamSDDCompressed.h"
48#include "AliITSDetTypeRec.h"
5192f264 49#include "AliITSdigit.h"
ebdd0606 50#include "AliITSRecPoint.h"
51#include "AliITSgeomTGeo.h"
e41192d7 52#include "AliITSHLTforSDD.h"
ebdd0606 53#include "AliCDBManager.h"
54#include "AliCDBStorage.h"
55#include "AliCDBEntry.h"
ad300de9 56#include "Riostream.h"
fc89f88c 57#include "AliITSdigitSDD.h"
58#include "AliITS.h"
59#include "AliRunLoader.h"
60#include "AliITSLoader.h"
61#include "AliITSDetTypeRec.h"
62
63
ebdd0606 64
65ClassImp(AliITSQASDDDataMakerRec)
66
67//____________________________________________________________________________
68AliITSQASDDDataMakerRec::AliITSQASDDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode, Short_t ldc) :
69TObject(),
70fAliITSQADataMakerRec(aliITSQADataMakerRec),
71fkOnline(kMode),
72fLDC(ldc),
ad300de9 73fSDDhRawsTask(0),
44ed7a66 74fSDDhDigitsTask(0),
ad300de9 75fSDDhRecPointsTask(0),
ad300de9 76fGenRawsOffset(0),
44ed7a66 77fGenDigitsOffset(0),
ad300de9 78fGenRecPointsOffset(0),
ebdd0606 79fTimeBinSize(1),
e41192d7 80fDDLModuleMap(0),
81fHLTMode(0),
82fHLTSDD(0)
ebdd0606 83{
84 //ctor used to discriminate OnLine-Offline analysis
85 if(fLDC < 0 || fLDC > 4) {
86 AliError("Error: LDC number out of range; return\n");
87 }
e41192d7 88 if(!fkOnline){AliInfo("Offline mode: HLT set from AliITSDetTypeRec for SDD\n");}
89 else
90 if(fkOnline){
91 AliInfo("Online mode: HLT set from environment for SDD\n");
92 SetHLTModeFromEnvironment();
93 }
ebdd0606 94 //fDDLModuleMap=NULL;
95}
96
97//____________________________________________________________________________
98AliITSQASDDDataMakerRec::AliITSQASDDDataMakerRec(const AliITSQASDDDataMakerRec& qadm) :
99TObject(),
100fAliITSQADataMakerRec(qadm.fAliITSQADataMakerRec),
101fkOnline(qadm.fkOnline),
102fLDC(qadm.fLDC),
ad300de9 103fSDDhRawsTask(qadm.fSDDhRawsTask),
44ed7a66 104fSDDhDigitsTask(qadm.fSDDhDigitsTask),
ad300de9 105fSDDhRecPointsTask(qadm.fSDDhRecPointsTask),
ad300de9 106fGenRawsOffset(qadm.fGenRawsOffset),
44ed7a66 107fGenDigitsOffset(qadm.fGenDigitsOffset),
ad300de9 108fGenRecPointsOffset(qadm.fGenRecPointsOffset),
ebdd0606 109fTimeBinSize(1),
e41192d7 110fDDLModuleMap(0),
111fHLTMode(qadm.fHLTMode),
112fHLTSDD( qadm.fHLTSDD)
ebdd0606 113{
114 //copy ctor
115 fAliITSQADataMakerRec->SetName((const char*)qadm.fAliITSQADataMakerRec->GetName()) ;
116 fAliITSQADataMakerRec->SetTitle((const char*)qadm.fAliITSQADataMakerRec->GetTitle());
117 fDDLModuleMap=NULL;
118}
119
120//____________________________________________________________________________
121AliITSQASDDDataMakerRec::~AliITSQASDDDataMakerRec(){
122 // destructor
123 // if(fDDLModuleMap) delete fDDLModuleMap;
124}
125//__________________________________________________________________
126AliITSQASDDDataMakerRec& AliITSQASDDDataMakerRec::operator = (const AliITSQASDDDataMakerRec& qac )
127{
7a0e5776 128 // Equal operator.
ebdd0606 129 this->~AliITSQASDDDataMakerRec();
130 new(this) AliITSQASDDDataMakerRec(qac);
131 return *this;
132}
133
134//____________________________________________________________________________
135void AliITSQASDDDataMakerRec::StartOfDetectorCycle()
136{
137 //Detector specific actions at start of cycle
5379c4a3 138 AliDebug(AliQAv1::GetQADebugLevel(),"AliITSQADM::Start of SDD Cycle\n");
ebdd0606 139}
140
141//____________________________________________________________________________
4e25ac79 142void AliITSQASDDDataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t /*task*/, TObjArray* /*list*/)
ebdd0606 143{
144 // launch the QA checking
5379c4a3 145 AliDebug(AliQAv1::GetQADebugLevel(),"AliITSDM instantiates checker with Run(AliQAv1::kITS, task, list)\n");
ebdd0606 146}
147
148//____________________________________________________________________________
149void AliITSQASDDDataMakerRec::InitRaws()
150{
151 // Initialization for RAW data - SDD -
7d297381 152 const Bool_t expert = kTRUE ;
153 const Bool_t saveCorr = kTRUE ;
154 const Bool_t image = kTRUE ;
155
57acd2d2 156 fGenRawsOffset = (fAliITSQADataMakerRec->fRawsQAList[AliRecoParam::kDefault])->GetEntries();
ebdd0606 157 AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
158 Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
e41192d7 159 if(!ddlMapSDD)
160 {
161 AliError("Calibration object retrieval failed! SDD will not be processed");
162 fDDLModuleMap = NULL;
163 return;
164 }
ebdd0606 165 fDDLModuleMap = (AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
166 if(!cacheStatus)ddlMapSDD->SetObject(NULL);
167 ddlMapSDD->SetOwner(kTRUE);
e41192d7 168 if(!cacheStatus)
169 {
170 delete ddlMapSDD;
171 }
7a0e5776 172
e41192d7 173 if(fkOnline==kFALSE){
174 AliInfo("Offline mode: HLTforSDDobject used \n");
175 AliCDBEntry *hltforSDD = AliCDBManager::Instance()->Get("ITS/Calib/HLTforSDD");
176 if(!hltforSDD){
177 AliError("Calibration object retrieval failed! SDD will not be processed");
178 fHLTSDD=NULL;
179 return;
180 }
181 fHLTSDD = (AliITSHLTforSDD*)hltforSDD->GetObject();
182 if(!cacheStatus)hltforSDD->SetObject(NULL);
183 hltforSDD->SetOwner(kTRUE);
184 if(!cacheStatus)
185 {
186 delete hltforSDD;
187 }
188 }
ebdd0606 189 Int_t lay, lad, det;
ebdd0606 190 Int_t indexlast = 0;
191 Int_t index1 = 0;
192
7a0e5776 193 if(fkOnline)
194 {
195 AliInfo("Book Online Histograms for SDD\n");
196 }
197 else
198 {
199 AliInfo("Book Offline Histograms for SDD\n ");
200 }
201 TH1D *h0 = new TH1D("SDDModPattern","HW Modules pattern",fgknSDDmodules,239.5,499.5); //0
ebdd0606 202 h0->GetXaxis()->SetTitle("Module Number");
203 h0->GetYaxis()->SetTitle("Counts");
7d297381 204 fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h0)),0+fGenRawsOffset, expert, !image, !saveCorr);
ebdd0606 205 delete h0;
ad300de9 206 fSDDhRawsTask++;
7a0e5776 207
208 //zPhi distribution using ladder and modules numbers
209 TH2D *hphil3 = new TH2D("SDDphizL3","SDD #varphiz Layer3 ",6,0.5,6.5,14,0.5,14.5);
210 hphil3->GetXaxis()->SetTitle("z[#Module L3 ]");
211 hphil3->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
7d297381 212 fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hphil3)),1+fGenRawsOffset, !expert, image, saveCorr);
7a0e5776 213 delete hphil3;
214 fSDDhRawsTask++;
215
216 TH2D *hphil4 = new TH2D("SDDphizL4","SDD #varphiz Layer4 ",8,0.5,8.5,22,0.5,22.5);
217 hphil4->GetXaxis()->SetTitle("z[#Module L4]");
218 hphil4->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
7d297381 219 fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hphil4)),2+fGenRawsOffset, !expert, image, saveCorr);
7a0e5776 220 delete hphil4;
221 fSDDhRawsTask++;
222
ebdd0606 223
7a0e5776 224 if(fkOnline)
225 {
226
227 //DDL Pattern
228 TH2D *hddl = new TH2D("SDDDDLPattern","SDD DDL Pattern ",24,-0.5,23.5,24,-0.5,23.5);
ad300de9 229 hddl->GetXaxis()->SetTitle("Channel");
230 hddl->GetYaxis()->SetTitle("#DDL");
7d297381 231 fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hddl)),3+fGenRawsOffset, expert, !image, !saveCorr);
ad300de9 232 delete hddl;
233 fSDDhRawsTask++;
7a0e5776 234 Int_t indexlast1 = 0;
235
236 fTimeBinSize = 4;
237 indexlast = 0;
238 index1 = 0;
239 indexlast1 = fSDDhRawsTask;
240 char *hname[3];
241 for(Int_t i=0; i<3; i++) hname[i]= new char[50];
242 for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
243 for(Int_t iside=0;iside<fgknSide;iside++){
244 AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
245 sprintf(hname[0],"SDDchargeMapFSE_L%d_%d_%d_%d",lay,lad,det,iside);
246 sprintf(hname[1],"SDDChargeMapForSingleEvent_L%d_%d_%d_%d",lay,lad,det,iside);
fc89f88c 247 // sprintf(hname[2],"SDDhmonoDMap_L%d_%d_%d_%d",lay,lad,det,iside);
7a0e5776 248 TProfile2D *fModuleChargeMapFSE = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
249 fModuleChargeMapFSE->GetXaxis()->SetTitle("Time Bin");
250 fModuleChargeMapFSE->GetYaxis()->SetTitle("Anode");
7d297381 251 fAliITSQADataMakerRec->Add2RawsList((new TProfile2D(*fModuleChargeMapFSE)),indexlast1 + index1 + fGenRawsOffset, expert, !image, !saveCorr);
7a0e5776 252 delete fModuleChargeMapFSE;
253
254 fSDDhRawsTask++;
255 index1++;
ebdd0606 256 }
7a0e5776 257 }
258
259 for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
260 for(Int_t iside=0;iside<fgknSide;iside++){
261 AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
262 sprintf(hname[0],"SDDchargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
263 sprintf(hname[1],"SDDChargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
264 TProfile2D *fModuleChargeMap = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
265 fModuleChargeMap->GetXaxis()->SetTitle("Time Bin");
266 fModuleChargeMap->GetYaxis()->SetTitle("Anode");
7d297381 267 fAliITSQADataMakerRec->Add2RawsList((new TProfile2D(*fModuleChargeMap)),indexlast1 + index1 + fGenRawsOffset, expert, !image, !saveCorr);
7a0e5776 268 delete fModuleChargeMap;
269
270 fSDDhRawsTask++;
271 index1++;
ebdd0606 272 }
7a0e5776 273 }
274
275 } // kONLINE
ebdd0606 276
5379c4a3 277 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Raws histograms booked\n",fSDDhRawsTask));
ebdd0606 278}
279
280
281//____________________________________________________________________________
282void AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
283{
284 // Fill QA for RAW - SDD -
7a0e5776 285
ebdd0606 286 if(!fDDLModuleMap){
287 AliError("SDD DDL module map not available - skipping SDD QA");
288 return;
289 }
290 if(rawReader->GetType() != 7) return; // skips non physical triggers
5379c4a3 291 AliDebug(AliQAv1::GetQADebugLevel(),"entering MakeRaws\n");
7a0e5776 292
e41192d7 293 rawReader->Reset();
294 AliITSRawStream *stream;
295
296 if(fkOnline==kTRUE)
297 {
298 if(GetHLTMode()==kTRUE)
299 {
ad300de9 300 //AliInfo("Online mode: HLT C compressed mode used for SDD\n");
e41192d7 301 stream = new AliITSRawStreamSDDCompressed(rawReader); }
302 else{
ad300de9 303 //AliInfo("Online mode: HLT A mode used for SDD\n");
e41192d7 304 stream = new AliITSRawStreamSDD(rawReader);}
305 }
306 else
307 {
308 if(fHLTSDD->IsHLTmodeC()==kTRUE){
ad300de9 309 //AliInfo("Offline mode: HLT C compressed mode used for SDD\n");
e41192d7 310 stream = new AliITSRawStreamSDDCompressed(rawReader);
311 }else
312 {
ad300de9 313 //AliInfo("Offline mode: HLT A mode used for SDD\n");
7a0e5776 314 stream = new AliITSRawStreamSDD(rawReader);
315 }
e41192d7 316 }
317
318 //ckeck on HLT mode
7a0e5776 319
e41192d7 320 // AliITSRawStreamSDD s(rawReader);
321 stream->SetDDLModuleMap(fDDLModuleMap);
322
ebdd0606 323 Int_t lay, lad, det;
7a0e5776 324
ebdd0606 325 Int_t index=0;
326 if(fkOnline) {
327 for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
7a0e5776 328 for(Int_t iside=0;iside<fgknSide;iside++) {
329 if(fSDDhRawsTask > 4 + index) fAliITSQADataMakerRec->GetRawsData(4 + index +fGenRawsOffset)->Reset();
330 // 4 because the 2D histos for single events start after the fourth position
331 index++;
332 }
ebdd0606 333 }
334 }
e41192d7 335
ebdd0606 336 Int_t cnt = 0;
337 Int_t ildcID = -1;
338 Int_t iddl = -1;
339 Int_t isddmod = -1;
7a0e5776 340 Int_t coord1, coord2, signal, moduleSDD, activeModule, index1;
e41192d7 341
342 while(stream->Next()) {
ebdd0606 343 ildcID = rawReader->GetLDCId();
344 iddl = rawReader->GetDDLID() - fgkDDLIDshift;
7a0e5776 345
e41192d7 346 isddmod = fDDLModuleMap->GetModuleNumber(iddl,stream->GetCarlosId());
ebdd0606 347 if(isddmod==-1){
5379c4a3 348 AliDebug(AliQAv1::GetQADebugLevel(),Form("Found module with iddl: %d, stream->GetCarlosId: %d \n",iddl,stream->GetCarlosId()));
ebdd0606 349 continue;
350 }
e41192d7 351 if(stream->IsCompletedModule()) {
5379c4a3 352 AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedModule == KTRUE\n"));
ebdd0606 353 continue;
354 }
de075dae 355 if(stream->IsCompletedDDL()) {
5379c4a3 356 AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedDDL == KTRUE\n"));
de075dae 357 continue;
358 }
ebdd0606 359
e41192d7 360 coord1 = stream->GetCoord1();
361 coord2 = stream->GetCoord2();
362 signal = stream->GetSignal();
ebdd0606 363
7a0e5776 364 moduleSDD = isddmod - fgkmodoffset;
365
b62d7123 366 if(isddmod <fgkmodoffset|| isddmod>fgknSDDmodules+fgkmodoffset-1) {
5379c4a3 367 AliDebug(AliQAv1::GetQADebugLevel(),Form( "Module SDD = %d, resetting it to 1 \n",isddmod));
b62d7123 368 isddmod = 1;
ebdd0606 369 }
7a0e5776 370
ebdd0606 371 AliITSgeomTGeo::GetModuleId(isddmod, lay, lad, det);
ad300de9 372
7a0e5776 373
ad300de9 374 fAliITSQADataMakerRec->GetRawsData( 0 + fGenRawsOffset )->Fill(isddmod);
7a0e5776 375
376 if(lay==3) fAliITSQADataMakerRec->GetRawsData(1+fGenRawsOffset)->Fill(det,lad);
ebdd0606 377 if(lay==4) {
7a0e5776 378 fAliITSQADataMakerRec->GetRawsData(2+fGenRawsOffset)->Fill(det,lad);}
379
e41192d7 380 Short_t iside = stream->GetChannel();
ebdd0606 381
fc89f88c 382
7a0e5776 383
ad300de9 384
ebdd0606 385 if(fkOnline) {
7a0e5776 386
fc89f88c 387 fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
388
7a0e5776 389 activeModule = moduleSDD;
390 index1 = activeModule * 2 + iside;
391
392 if(index1<0){
5379c4a3 393 AliDebug(AliQAv1::GetQADebugLevel(),Form("Wrong index number %d - patched to 0\n",index1));
7a0e5776 394 index1 = 0;
395 }
396 fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
397 if(fSDDhRawsTask > 4 + index1) {
398 ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 +fGenRawsOffset)))->Fill(coord2, coord1, signal);
399 ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 + 260*2 +fGenRawsOffset)))->Fill(coord2, coord1, signal);
ebdd0606 400 }
401 }
7a0e5776 402 cnt++;
5379c4a3 403 if(!(cnt%10000)) AliDebug(AliQAv1::GetQADebugLevel(),Form(" %d raw digits read",cnt));
ebdd0606 404 }
5379c4a3 405 AliDebug(AliQAv1::GetQADebugLevel(),Form("Event completed, %d raw digits read",cnt));
e41192d7 406 delete stream;
407 stream = NULL;
7a0e5776 408}
ebdd0606 409
44ed7a66 410//____________________________________________________________________________
411void AliITSQASDDDataMakerRec::InitDigits()
412{
fc89f88c 413
414 //printf(" ======================================================> Init digits\n " );
44ed7a66 415 // Initialization for DIGIT data - SDD -
416 const Bool_t expert = kTRUE ;
417 const Bool_t image = kTRUE ;
418
419 fGenDigitsOffset = (fAliITSQADataMakerRec->fDigitsQAList[AliRecoParam::kDefault])->GetEntries();
420 //fSDDhTask must be incremented by one unit every time a histogram is ADDED to the QA List
421 TH1F* h0=new TH1F("SDD DIGITS Module Pattern","SDD DIGITS Module Pattern",260,239.5,499.5); //hmod
422 h0->GetXaxis()->SetTitle("SDD Module Number");
423 h0->GetYaxis()->SetTitle("# DIGITS");
424 fAliITSQADataMakerRec->Add2DigitsList(h0,fGenDigitsOffset, !expert, image);
425 fSDDhDigitsTask ++;
426 TH1F* h1=new TH1F("SDD Anode Distribution","DIGITS Anode Distribution",512,-0.5,511.5); //hanocc
427 h1->GetXaxis()->SetTitle("Anode Number");
428 h1->GetYaxis()->SetTitle("# DIGITS");
429 fAliITSQADataMakerRec->Add2DigitsList(h1,1+fGenDigitsOffset, !expert, image);
430 fSDDhDigitsTask ++;
431 TH1F* h2=new TH1F("SDD Tbin Distribution","DIGITS Tbin Distribution",256,-0.5,255.5); //htbocc
432 h2->GetXaxis()->SetTitle("Tbin Number");
433 h2->GetYaxis()->SetTitle("# DIGITS");
434 fAliITSQADataMakerRec->Add2DigitsList(h2,2+fGenDigitsOffset, !expert, image);
435 fSDDhDigitsTask ++;
436 TH1F* h3=new TH1F("SDD ADC Counts Distribution","DIGITS ADC Counts Distribution",200,0.,1024.); //hsig
437 h3->GetXaxis()->SetTitle("ADC Value");
438 h3->GetYaxis()->SetTitle("# DIGITS");
439 fAliITSQADataMakerRec->Add2DigitsList(h3,3+fGenDigitsOffset, !expert, image);
440 fSDDhDigitsTask ++;
441 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Digits histograms booked\n",fSDDhDigitsTask));
442}
443
444//____________________________________________________________________________
445void AliITSQASDDDataMakerRec::MakeDigits(TTree * digits)
446{
fc89f88c 447 //printf(" ======================================================> make digits\n " );
44ed7a66 448 // Fill QA for DIGIT - SDD -
fc89f88c 449 //AliITS *fITS = (AliITS*)gAlice->GetModule("ITS");
450 //fITS->SetTreeAddress();
451 //TClonesArray *iITSdigits = fITS->DigitsAddress(1);
452
453
454 TBranch *branchD = digits->GetBranch("ITSDigitsSDD");
455
456 if (!branchD) {
457 AliError("can't get the branch with the ITS SDD digits !");
44ed7a66 458 return;
459 }
fc89f88c 460
461 static TClonesArray statDigits("AliITSdigitSDD");
44ed7a66 462 TClonesArray *iITSdigits = &statDigits;
463 branchD->SetAddress(&iITSdigits);
fc89f88c 464
44ed7a66 465 for(Int_t i=0; i<260; i++){
466 Int_t nmod=i+240;
467 digits->GetEvent(nmod);
468 Int_t ndigits = iITSdigits->GetEntries();
469 fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset)->Fill(nmod,ndigits);
fc89f88c 470 //printf(" Filled: =======================================> %s \t %i \t %i \n",fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset)->GetName(), nmod, ndigits );
44ed7a66 471 for (Int_t idig=0; idig<ndigits; idig++) {
472 AliITSdigit *dig=(AliITSdigit*)iITSdigits->UncheckedAt(idig);
473 Int_t iz=dig->GetCoord1(); // cell number z
474 Int_t ix=dig->GetCoord2(); // cell number x
475 Int_t sig=dig->GetSignal();
476 fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset)->Fill(iz);
477 fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset)->Fill(ix);
478 fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset)->Fill(sig);
479 }
480 }
fc89f88c 481
44ed7a66 482}
483
ebdd0606 484//____________________________________________________________________________
485void AliITSQASDDDataMakerRec::InitRecPoints()
486{
487 // Initialization for RECPOINTS - SDD -
7d297381 488 const Bool_t expert = kTRUE ;
489 const Bool_t image = kTRUE ;
490
57acd2d2 491 fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList[AliRecoParam::kDefault])->GetEntries();
ad300de9 492
ebdd0606 493 Int_t nOnline=1;
494 Int_t nOnline2=1;
495 Int_t nOnline3=1;
496 Int_t nOnline4=1;
497 if(fkOnline)
498 {
ebdd0606 499 nOnline=4;
500 nOnline2=28;
501 nOnline3=64;
502 nOnline4=14;
503 }
504
505
506 TH1F *h0 = new TH1F("SDDLay3TotCh","Layer 3 total charge",1000/nOnline,-0.5, 499.5); //position number 0
507 h0->GetXaxis()->SetTitle("ADC value");
508 h0->GetYaxis()->SetTitle("Entries");
7d297381 509 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h0)), 0 +fGenRecPointsOffset, !expert, image);
ebdd0606 510 delete h0;
ad300de9 511 fSDDhRecPointsTask++;
ebdd0606 512
513 TH1F *h1 = new TH1F("SDDLay4TotCh","Layer 4 total charge",1000/nOnline,-0.5, 499.5);//position number 1
514 h1->GetXaxis()->SetTitle("ADC value");
515 h1->GetYaxis()->SetTitle("Entries");
7d297381 516 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h1)), 1 +fGenRecPointsOffset, !expert, image);
ebdd0606 517 delete h1;
ad300de9 518 fSDDhRecPointsTask++;
ebdd0606 519
520 char hisnam[50];
521 TH2F *h2 = new TH2F("SDDGlobalCoordDistribYX","YX Global Coord Distrib",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 2
522 h2->GetYaxis()->SetTitle("Y[cm]");
523 h2->GetXaxis()->SetTitle("X[cm]");
7d297381 524 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h2)),2+fGenRecPointsOffset, expert, !image);
ebdd0606 525 delete h2;
ad300de9 526 fSDDhRecPointsTask++;
ebdd0606 527
528 TH2F *h3 = new TH2F("SDDGlobalCoordDistribRZ","RZ Global Coord Distrib",6400/nOnline3,-32,32,1400/nOnline4,12,26);//position number 3
529 h3->GetYaxis()->SetTitle("R[cm]");
530 h3->GetXaxis()->SetTitle("Z[cm]");
7d297381 531 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h3)),3+fGenRecPointsOffset, expert, !image);
ebdd0606 532 delete h3;
ad300de9 533 fSDDhRecPointsTask++;
ebdd0606 534
535 TH2F *h4 = new TH2F("SDDGlobalCoordDistribL3PHIZ","#varphi Z Global Coord Distrib L3",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 4
536 h4->GetYaxis()->SetTitle("#phi[rad]");
537 h4->GetXaxis()->SetTitle("Z[cm]");
7d297381 538 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h4)),4+fGenRecPointsOffset, !expert, image);
ebdd0606 539 delete h4;
ad300de9 540 fSDDhRecPointsTask++;
ebdd0606 541
542 TH2F *h5 = new TH2F("SDDGlobalCoordDistribL4PHIZ","#varphi Z Global Coord Distrib L4",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 5
543 h5->GetYaxis()->SetTitle("#phi[rad]");
544 h5->GetXaxis()->SetTitle("Z[cm]");
7d297381 545 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h5)),5+fGenRecPointsOffset, !expert, image);
ebdd0606 546 delete h5;
ad300de9 547 fSDDhRecPointsTask++;
ebdd0606 548
549 TH1F *h6 = new TH1F("SDDModPatternRP","Modules pattern RP",fgknSDDmodules,239.5,499.5); //position number 6
550 h6->GetXaxis()->SetTitle("Module number"); //spd offset = 240
551 h6->GetYaxis()->SetTitle("Entries");
7d297381 552 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h6)),6 +fGenRecPointsOffset, expert, !image);
ebdd0606 553 delete h6;
ad300de9 554 fSDDhRecPointsTask++;
ebdd0606 555 TH1F *h7 = new TH1F("SDDLadPatternL3RP","Ladder pattern L3 RP",14,0.5,14.5); //position number 7
556 h7->GetXaxis()->SetTitle("Ladder #, Layer 3");
557 h7->GetYaxis()->SetTitle("Entries");
7d297381 558 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h7)),7 +fGenRecPointsOffset, expert, !image);
ebdd0606 559 delete h7;
ad300de9 560 fSDDhRecPointsTask++;
ebdd0606 561 TH1F *h8 = new TH1F("SDDLadPatternL4RP","Ladder pattern L4 RP",22,0.5,22.5); //position number 8
562 h8->GetXaxis()->SetTitle("Ladder #, Layer 4");
563 h8->GetYaxis()->SetTitle("Entries");
7d297381 564 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h8)),8 +fGenRecPointsOffset, expert, !image);
ebdd0606 565 delete h8;
ad300de9 566 fSDDhRecPointsTask++;
ebdd0606 567 TH2F *h9 = new TH2F("SDDLocalCoordDistrib","Local Coord Distrib",1000/nOnline,-4,4,1000/nOnline,-4,4);//position number 9
568 h9->GetXaxis()->SetTitle("X local coord, drift, cm");
569 h9->GetYaxis()->SetTitle("Z local coord, anode, cm");
7d297381 570 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h9)),9 +fGenRecPointsOffset, expert, !image);
ebdd0606 571 delete h9;
ad300de9 572 fSDDhRecPointsTask++;
ebdd0606 573
574
575 TH1F *h10 = new TH1F("SDDrdistrib_Layer3" ,"SDD r distribution Layer3" ,100,14.,18.);//position number 10 (L3)
576 h10->GetXaxis()->SetTitle("r[cm]");
577 h10->GetXaxis()->CenterTitle();
578 h10->GetYaxis()->SetTitle("Entries");
7d297381 579 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h10)),10 +fGenRecPointsOffset, expert, !image);
ebdd0606 580 delete h10;
ad300de9 581 fSDDhRecPointsTask++;
ebdd0606 582
583 TH1F *h11 = new TH1F("SDDrdistrib_Layer4" ,"SDD r distribution Layer4" ,100,22.,26.);// and position number 11 (L4)
584 h11->GetXaxis()->SetTitle("r[cm]");
585 h11->GetXaxis()->CenterTitle();
586 h11->GetYaxis()->SetTitle("Entries");
7d297381 587 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h11)),11 +fGenRecPointsOffset, expert, !image);
ebdd0606 588 delete h11;
ad300de9 589 fSDDhRecPointsTask++;
ebdd0606 590
591 for(Int_t iLay=0; iLay<=1; iLay++){
592 sprintf(hisnam,"SDDphidistrib_Layer%d",iLay+3);
593 TH1F *h12 = new TH1F(hisnam,hisnam,180,-TMath::Pi(),TMath::Pi());//position number 12 (L3) and position number 13 (L4)
594 h12->GetXaxis()->SetTitle("#varphi[rad]");
595 h12->GetXaxis()->CenterTitle();
596 h12->GetYaxis()->SetTitle("Entries");
7d297381 597 fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h12)),iLay+12+fGenRecPointsOffset, expert, !image);
ebdd0606 598 delete h12;
ad300de9 599 fSDDhRecPointsTask++;
ebdd0606 600 }
601
602 if(fkOnline)
603 {
604 TH2F *h14 = new TH2F("SDDGlobalCoordDistribYXFSE","YX Global Coord Distrib FSE",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 14
605 h14->GetYaxis()->SetTitle("Y[cm]");
606 h14->GetXaxis()->SetTitle("X[cm]");
7d297381 607 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h14)),14+fGenRecPointsOffset, expert, !image);
ebdd0606 608 delete h14;
ad300de9 609 fSDDhRecPointsTask++;
ebdd0606 610
611 TH2F *h15 = new TH2F("SDDGlobalCoordDistribRZFSE","RZ Global Coord Distrib FSE",Int_t(6400/nOnline3),-32,32,1400/nOnline4,12,26);//position number 15
612 h15->GetYaxis()->SetTitle("R[cm]");
613 h15->GetXaxis()->SetTitle("Z[cm]");
7d297381 614 fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h15)),15+fGenRecPointsOffset, expert, !image);
ebdd0606 615 delete h15;
ad300de9 616 fSDDhRecPointsTask++;
ebdd0606 617
ebdd0606 618 }//online
619
ad300de9 620 //printf("%d SDD Recs histograms booked\n",fSDDhRecPointsTask);
ebdd0606 621
622
5379c4a3 623 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Recs histograms booked\n",fSDDhRecPointsTask));
ebdd0606 624
625
626}
627
628//____________________________________________________________________________
7a0e5776 629void AliITSQASDDDataMakerRec::MakeRecPoints(TTree * clustersTree)
630{
631
632
ebdd0606 633 // Fill QA for RecPoints - SDD -
634 Int_t lay, lad, det;
635 TBranch *branchRecP = clustersTree->GetBranch("ITSRecPoints");
636 if (!branchRecP) {
637 AliError("can't get the branch with the ITS clusters !");
638 return;
639 }
640
641 static TClonesArray statRecpoints("AliITSRecPoint") ;
642 TClonesArray *recpoints = &statRecpoints;
643 branchRecP->SetAddress(&recpoints);
644 Int_t npoints = 0;
645 Float_t cluglo[3]={0.,0.,0.};
646 if(fkOnline)
647 {
648 for(Int_t i=14;i<16;i++)
649 {
ad300de9 650 fAliITSQADataMakerRec->GetRecPointsData(i+fGenRecPointsOffset)->Reset();
ebdd0606 651 }
652 }
653 for(Int_t module=0; module<clustersTree->GetEntries();module++){
654 branchRecP->GetEvent(module);
655 npoints += recpoints->GetEntries();
656 AliITSgeomTGeo::GetModuleId(module, lay, lad, det);
657 //printf("modnumb %d, lay %d, lad %d, det %d \n",module, lay, lad, det);
658 for(Int_t j=0;j<recpoints->GetEntries();j++){
659 AliITSRecPoint *recp = (AliITSRecPoint*)recpoints->At(j);
ad300de9 660 fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset)->Fill(module);//modpatternrp
ebdd0606 661 recp->GetGlobalXYZ(cluglo);
662 Float_t rad=TMath::Sqrt(cluglo[0]*cluglo[0]+cluglo[1]*cluglo[1]);
663 Float_t phi=TMath::ATan2(cluglo[1],cluglo[0]);
ad300de9 664 fAliITSQADataMakerRec->GetRecPointsData(9 +fGenRecPointsOffset)->Fill(recp->GetDetLocalX(),recp->GetDetLocalZ());//local distribution
665 fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX
666 fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz
ebdd0606 667 if(fkOnline)
668 {
ad300de9 669 fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX FSE
670 fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz FSE
ebdd0606 671 }
672 if(recp->GetLayer() ==2) {
ad300de9 673 fAliITSQADataMakerRec->GetRecPointsData(0 +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge of layer 3
674 fAliITSQADataMakerRec->GetRecPointsData(7 +fGenRecPointsOffset)->Fill(lad);//lad pattern layer 3
675 fAliITSQADataMakerRec->GetRecPointsData(10 +fGenRecPointsOffset)->Fill(rad);//r distribution layer 3
676 fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset)->Fill(phi);// phi distribution layer 3
677 fAliITSQADataMakerRec->GetRecPointsData(4 +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 3
ebdd0606 678 }
679 else if(recp->GetLayer() ==3) {
ad300de9 680 fAliITSQADataMakerRec->GetRecPointsData(1 +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge layer 4
681 fAliITSQADataMakerRec->GetRecPointsData(8 +fGenRecPointsOffset)->Fill(lad);//ladpatternlayer4
682 fAliITSQADataMakerRec->GetRecPointsData(11 +fGenRecPointsOffset)->Fill(rad);//r distribution
683 fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset)->Fill(phi);//phi distribution
684 fAliITSQADataMakerRec->GetRecPointsData(5 +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 4
ebdd0606 685 }
686 }
687 }
688 statRecpoints.Clear();
689
690}
691
e41192d7 692//_______________________________________________________________
693
7a0e5776 694void AliITSQASDDDataMakerRec::SetHLTModeFromEnvironment()
695{
e41192d7 696
697 Int_t hltmode= ::atoi(gSystem->Getenv("HLT_MODE"));
698
7a0e5776 699 if(hltmode==1)
700 {
701 AliInfo("Online mode: HLT mode A selected from environment for SDD\n");
702 SetHLTMode(kFALSE);
703 }
704 else
705 if(hltmode==2)
706 {
707 AliInfo("Online mode: HLT mode C compressed selected from environment for SDD\n");
708 SetHLTMode(kTRUE);
709 }
ad300de9 710}
711
712
713//_______________________________________________________________
714
4e25ac79 715Int_t AliITSQASDDDataMakerRec::GetOffset(AliQAv1::TASKINDEX_t task)
7a0e5776 716{
ad300de9 717 Int_t offset=0;
4e25ac79 718 if( task == AliQAv1::kRAWS )
7a0e5776 719 {
720 offset=fGenRawsOffset;
721 }
722 else
4e25ac79 723 if( task == AliQAv1::kRECPOINTS )
7a0e5776 724 {
725 offset=fGenRecPointsOffset;
726 }
fc89f88c 727 else
728 if(task == AliQAv1::kDIGITSR )
729 {
730 offset=fGenDigitsOffset;
731 }
7a0e5776 732 else AliInfo("No task has been selected. Offset set to zero.\n");
ad300de9 733 return offset;
734}
735
736//_______________________________________________________________
737
4e25ac79 738Int_t AliITSQASDDDataMakerRec::GetTaskHisto(AliQAv1::TASKINDEX_t task)
7a0e5776 739{
ad300de9 740
7a0e5776 741 Int_t histotot=0;
ad300de9 742
4e25ac79 743 if( task == AliQAv1::kRAWS )
7a0e5776 744 {
745 histotot=fSDDhRawsTask ;
746 }
747 else
4e25ac79 748 if( task == AliQAv1::kRECPOINTS )
7a0e5776 749 {
750 histotot=fSDDhRecPointsTask;
751 }
fc89f88c 752 else
753 if(task == AliQAv1::kDIGITSR)
754 {
755 histotot=fSDDhDigitsTask;
756 }
7a0e5776 757 else AliInfo("No task has been selected. TaskHisto set to zero.\n");
ad300de9 758 return histotot;
e41192d7 759}