]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASPDDataMakerRec.cxx
Mods to add the number of pixels in SPD rec. points (A. Mastroserio, D. Elia)
[u/mrichter/AliRoot.git] / ITS / AliITSQASPDDataMakerRec.cxx
CommitLineData
096292ae 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 **************************************************************************/
3f905799 15/* $Id$ */
096292ae 16// *************************************************************
17// Checks the quality assurance
18// by comparing with reference data
19// contained in a DB
20// -------------------------------------------------------------
21// W. Ferrarese + P. Cerello Feb 2008
22// INFN Torino
23// M. Nicassio D. Elia INFN Bari March 2008
24// maria.nicassio@ba.infn.it
25
26
27// --- ROOT system ---
28#include <TTree.h>
29#include <TH1.h>
30#include <TH2.h>
31#include <TMath.h>
32// --- Standard library ---
33
34// --- AliRoot header files ---
35#include "AliITSQADataMakerRec.h"
36#include "AliITSQASPDDataMakerRec.h"
37#include "AliLog.h"
4e25ac79 38#include "AliQAv1.h"
096292ae 39#include "AliRawReader.h"
379510c2 40#include "AliITSRawStreamSPD.h"
41#include "AliITSRawStreamSPDErrorLog.h"
33626263 42#include "AliITSdigitSPD.h"
096292ae 43#include "AliITSRecPoint.h"
379510c2 44
096292ae 45ClassImp(AliITSQASPDDataMakerRec)
46
47//____________________________________________________________________________
379510c2 48AliITSQASPDDataMakerRec::AliITSQASPDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode, Short_t ldc, AliITSRawStreamSPDErrorLog *aliITSRawStreamSPDErrorLog) :
096292ae 49TObject(),
50fAliITSQADataMakerRec(aliITSQADataMakerRec),
51fkOnline(kMode),
52fLDC(ldc),
7a0e5776 53fSPDhRawsTask(0),
44ed7a66 54fSPDhDigitsTask(0),
7a0e5776 55fSPDhRecPointsTask(0),
56fGenRawsOffset(0),
44ed7a66 57fGenDigitsOffset(0),
7a0e5776 58fGenRecPointsOffset(0),
379510c2 59fAdvLogger(aliITSRawStreamSPDErrorLog)
096292ae 60{
61 //ctor used to discriminate OnLine-Offline analysis
62}
63
64//____________________________________________________________________________
65AliITSQASPDDataMakerRec::AliITSQASPDDataMakerRec(const AliITSQASPDDataMakerRec& qadm) :
66TObject(),
67fAliITSQADataMakerRec(qadm.fAliITSQADataMakerRec),
68fkOnline(qadm.fkOnline),
69fLDC(qadm.fLDC),
7a0e5776 70fSPDhRawsTask(qadm.fSPDhRawsTask),
44ed7a66 71fSPDhDigitsTask(qadm.fSPDhDigitsTask),
7a0e5776 72fSPDhRecPointsTask(qadm.fSPDhRecPointsTask),
73fGenRawsOffset(qadm.fGenRawsOffset),
44ed7a66 74fGenDigitsOffset(qadm.fGenDigitsOffset),
7a0e5776 75fGenRecPointsOffset(qadm.fGenRecPointsOffset),
379510c2 76fAdvLogger(qadm.fAdvLogger)
096292ae 77{
78 //copy ctor
79 fAliITSQADataMakerRec->SetName((const char*)qadm.fAliITSQADataMakerRec->GetName()) ;
80 fAliITSQADataMakerRec->SetTitle((const char*)qadm.fAliITSQADataMakerRec->GetTitle());
81 }
82
83//__________________________________________________________________
84AliITSQASPDDataMakerRec::~AliITSQASPDDataMakerRec(){
85 // destructor
379510c2 86// delete fAdvLogger;
096292ae 87}
88//__________________________________________________________________
89
90AliITSQASPDDataMakerRec& AliITSQASPDDataMakerRec::operator = (const AliITSQASPDDataMakerRec& qac )
91{
92 // Equal operator.
93 this->~AliITSQASPDDataMakerRec();
94 new(this) AliITSQASPDDataMakerRec(qac);
95 return *this;
96}
97
98//____________________________________________________________________________
99void AliITSQASPDDataMakerRec::StartOfDetectorCycle()
100{
101 //Detector specific actions at start of cycle
5379c4a3 102 AliDebug(AliQAv1::GetQADebugLevel(),"AliITSQADM::Start of SPD Cycle\n");
096292ae 103}
104
105//____________________________________________________________________________
4e25ac79 106void AliITSQASPDDataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t /*task*/, TObjArray* /*list*/)
096292ae 107{
108 // launch the QA checking
5379c4a3 109 AliDebug(AliQAv1::GetQADebugLevel(),"AliITSDM instantiates checker with Run(AliQAv1::kITS, task, list)\n");
096292ae 110
4e25ac79 111 //AliQAChecker::Instance()->Run( AliQAv1::kITS , task, list);
096292ae 112}
113
114//____________________________________________________________________________
eca4fa66 115Int_t AliITSQASPDDataMakerRec::InitRaws()
096292ae 116{
117 // Initialization for RAW data - SPD -
7d297381 118 const Bool_t expert = kTRUE ;
119 const Bool_t saveCorr = kTRUE ;
120 const Bool_t image = kTRUE ;
eca4fa66 121 Int_t rv = 0 ;
122// fGenRawsOffset = (fAliITSQADataMakerRec->fRawsQAList[AliRecoParam::kDefault])->GetEntries();
b467364b 123 fAdvLogger = new AliITSRawStreamSPDErrorLog();
5379c4a3 124 AliDebug(AliQAv1::GetQADebugLevel(), "Book Offline Histograms for SPD\n ");
439e7a8a 125
379510c2 126 Char_t name[50];
127 Char_t title[50];
096292ae 128
26ee9565 129 TH1F *hlayer = new TH1F("SPDLayPattern_SPD","Layer map - SPD",6,0.,6.);
379510c2 130 hlayer->GetXaxis()->SetTitle("Layer number");
131 hlayer->GetYaxis()->SetTitle("Entries");
eca4fa66 132 rv = fAliITSQADataMakerRec->Add2RawsList(hlayer, 0+fGenRawsOffset, expert, !image, !saveCorr);
7a0e5776 133 fSPDhRawsTask++;
379510c2 134
135 TH1F **hmod = new TH1F*[2];
136 TH2F **hhitMap = new TH2F*[20];
137 TH1F **herrors = new TH1F*[20];
138 for (Int_t iLay=0; iLay<2; iLay++) {
26ee9565 139 sprintf(name,"SPDModPattern_SPD%d",iLay+1);
379510c2 140 sprintf(title,"Module map - SPD Layer %d",iLay+1);
141 hmod[iLay]=new TH1F(name,title,fgknSPDmodules,0,fgknSPDmodules);
142 hmod[iLay]->GetXaxis()->SetTitle("Module number");
143 hmod[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 144 rv = fAliITSQADataMakerRec->Add2RawsList(hmod[iLay], 1+iLay+fGenRawsOffset, !expert, image, !saveCorr);
7a0e5776 145 fSPDhRawsTask++;
379510c2 146 }
379510c2 147 for (Int_t iDDL=0; iDDL<20; iDDL++) {
26ee9565 148 sprintf(name,"SPDHitMap_SPD_DDL%d",iDDL+1);
379510c2 149 sprintf(title,"Hit map - SPD DDL %d",iDDL+1);
150 hhitMap[iDDL]=new TH2F(name,title,320,0,10*32,1536,0,6*256);
151 hhitMap[iDDL]->GetXaxis()->SetTitle("Column");
152 hhitMap[iDDL]->GetYaxis()->SetTitle("Row");
eca4fa66 153 rv = fAliITSQADataMakerRec->Add2RawsList(hhitMap[iDDL], 3+(2*iDDL)+fGenRawsOffset, expert, !image, !saveCorr);
7a0e5776 154 fSPDhRawsTask++;
26ee9565 155 sprintf(name,"SPDErrors_SPD_DDL%d",iDDL+1);
379510c2 156 sprintf(title,"Error codes - SPD DDL %d",iDDL+1);
b467364b 157 herrors[iDDL] = new TH1F (name,title,fAdvLogger->GetNrErrorCodes(),0,fAdvLogger->GetNrErrorCodes());
379510c2 158 herrors[iDDL]->SetXTitle("Error Code");
159 herrors[iDDL]->SetYTitle("Nr of errors");
eca4fa66 160 rv = fAliITSQADataMakerRec->Add2RawsList(herrors[iDDL], 4+(2*iDDL)+fGenRawsOffset, expert, !image, !saveCorr);
7a0e5776 161 fSPDhRawsTask++;
379510c2 162 }
096292ae 163
379510c2 164 TH1F** hMultSPDhits = new TH1F*[2];
165 for (Int_t iLay=0; iLay<2; iLay++) {
26ee9565 166 sprintf(name,"SPDHitsMultiplicity_SPD%d",iLay+1);
379510c2 167 sprintf(title,"Hit multiplicity - SPD Layer %d",iLay+1);
168 hMultSPDhits[iLay]=new TH1F(name,title,200,0.,200.);
169 hMultSPDhits[iLay]->GetXaxis()->SetTitle("Hit multiplicity");
170 hMultSPDhits[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 171 rv = fAliITSQADataMakerRec->Add2RawsList(hMultSPDhits[iLay], 43+iLay+fGenRawsOffset, expert, !image, !saveCorr);
7a0e5776 172 fSPDhRawsTask++;
379510c2 173 }
174
954ef57a 175 TH2F *hMultSPDhits2MultSPDhits1
26ee9565 176 = new TH2F("SPDHitMultCorrelation_SPD","Hit multiplicity correlation - SPD",200,0.,200.,200,0.,200.);
379510c2 177 hMultSPDhits2MultSPDhits1->GetXaxis()->SetTitle("Hit multiplicity (Layer 1)");
178 hMultSPDhits2MultSPDhits1->GetYaxis()->SetTitle("Hit multiplicity (Layer 2)");
eca4fa66 179 rv = fAliITSQADataMakerRec->Add2RawsList(hMultSPDhits2MultSPDhits1, 45+fGenRawsOffset, !expert, image, !saveCorr);
7a0e5776 180 fSPDhRawsTask++;
379510c2 181
5379c4a3 182 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SPD Raws histograms booked\n",fSPDhRawsTask));
eca4fa66 183 return rv ;
096292ae 184}
185
096292ae 186//____________________________________________________________________________
eca4fa66 187Int_t AliITSQASPDDataMakerRec::MakeRaws(AliRawReader* rawReader)
096292ae 188{
189 // Fill QA for RAW - SPD -
eca4fa66 190 Int_t rv = 0 ;
eca4fa66 191
379510c2 192 rawReader->Reset();
193 AliITSRawStreamSPD *rawStreamSPD = new AliITSRawStreamSPD(rawReader);
194 rawStreamSPD->ActivateAdvancedErrorLog(kTRUE,fAdvLogger);
195
196 Int_t nDigitsL1 = 0;
197 Int_t nDigitsL2 = 0;
198 Int_t iEq;
199 Int_t iLayer;
200 Int_t iHalfStave, iChip;
201 Int_t col, row;
202 UInt_t module, colM, rowM;
203 while(rawStreamSPD->Next()) {
204
205 iEq = rawReader->GetDDLID();
206 if (iEq>=0 && iEq<20) {
207 iHalfStave = rawStreamSPD->GetHalfStaveNr();
208 iChip = rawStreamSPD->GetChipAddr();
209 col = rawStreamSPD->GetChipCol();
210 row = rawStreamSPD->GetChipRow();
211
212 rawStreamSPD->OnlineToOffline(iEq, iHalfStave, iChip, col, row, module, colM, rowM);
213
214 if (iHalfStave>=0 && iHalfStave<2) iLayer=0;
215 else iLayer=1;
216
7a0e5776 217 fAliITSQADataMakerRec->GetRawsData(0+fGenRawsOffset)->Fill(iLayer);
379510c2 218 if (iLayer==0) {
7a0e5776 219 fAliITSQADataMakerRec->GetRawsData(1+fGenRawsOffset)->Fill(module);
379510c2 220 nDigitsL1++;
221 } else {
7a0e5776 222 fAliITSQADataMakerRec->GetRawsData(2+fGenRawsOffset)->Fill(module);
379510c2 223 nDigitsL2++;
224 }
225
7a0e5776 226 fAliITSQADataMakerRec->GetRawsData((2*iEq)+3+fGenRawsOffset)->Fill(colM+(module%2)*160,rowM+iHalfStave*256);
379510c2 227 }
228
229 }
230 for (Int_t ieq=0; ieq<20; ieq++)
c71529b0 231 for (UInt_t ierr=0; ierr<fAdvLogger->GetNrErrorCodes(); ierr++)
7a0e5776 232 fAliITSQADataMakerRec->GetRawsData((2*ieq)+4+fGenRawsOffset)->Fill(ierr,fAdvLogger->GetNrErrors(ierr,ieq));
379510c2 233
234 fAdvLogger->Reset();
235
7a0e5776 236 fAliITSQADataMakerRec->GetRawsData(43+fGenRawsOffset)->Fill(nDigitsL1);
237 fAliITSQADataMakerRec->GetRawsData(44+fGenRawsOffset)->Fill(nDigitsL2);
238 fAliITSQADataMakerRec->GetRawsData(45+fGenRawsOffset)->Fill(nDigitsL1,nDigitsL2);
379510c2 239
240 delete rawStreamSPD;
5379c4a3 241 AliDebug(AliQAv1::GetQADebugLevel(),Form("Event completed, %d raw digits read",nDigitsL1+nDigitsL2));
eca4fa66 242 return rv ;
096292ae 243}
244
44ed7a66 245//____________________________________________________________________________
eca4fa66 246Int_t AliITSQASPDDataMakerRec::InitDigits()
44ed7a66 247{
248 // Initialization for DIGIT data - SPD -
249 const Bool_t expert = kTRUE ;
250 const Bool_t image = kTRUE ;
eca4fa66 251 Int_t rv = 0 ;
252// fGenDigitsOffset = (fAliITSQADataMakerRec->fDigitsQAList[AliRecoParam::kDefault])->GetEntries();
44ed7a66 253 //fSPDhDigitsTask must be incremented by one unit every time a histogram is ADDED to the QA List
254
255 Char_t name[50];
256 Char_t title[50];
257
258 TH1F *hlayer = new TH1F("SPDLayPattern_SPD","Layer map - SPD",6,0.,6.);
259 hlayer->GetXaxis()->SetTitle("Layer number");
260 hlayer->GetYaxis()->SetTitle("Entries");
eca4fa66 261 rv = fAliITSQADataMakerRec->Add2DigitsList(hlayer,fGenDigitsOffset, expert, !image);
44ed7a66 262 fSPDhDigitsTask++;
263
264 TH1F **hmod = new TH1F*[2];
265 for (Int_t iLay=0; iLay<2; iLay++) {
266 sprintf(name,"SPDModPattern_SPD%d",iLay+1);
267 sprintf(title,"Module map - SPD Layer %d",iLay+1);
268 hmod[iLay]=new TH1F(name,title,240,0,240);
269 hmod[iLay]->GetXaxis()->SetTitle("Module number");
270 hmod[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 271 rv = fAliITSQADataMakerRec->Add2DigitsList(hmod[iLay],1+iLay+fGenDigitsOffset, !expert, image);
44ed7a66 272 fSPDhDigitsTask++;
273 }
274
275 TH1F *hcolumns = new TH1F("SPDColumns_SPD","Columns - SPD",160,0.,160.);
276 hcolumns->GetXaxis()->SetTitle("Column number");
277 hcolumns->GetYaxis()->SetTitle("Entries");
eca4fa66 278 rv = fAliITSQADataMakerRec->Add2DigitsList(hcolumns,3+fGenDigitsOffset, expert, !image);
44ed7a66 279 fSPDhDigitsTask++;
280
281 TH1F *hrows = new TH1F("SPDRows_SPD","Rows - SPD",256,0.,256.);
282 hrows->GetXaxis()->SetTitle("Row number");
283 hrows->GetYaxis()->SetTitle("Entries");
eca4fa66 284 rv = fAliITSQADataMakerRec->Add2DigitsList(hrows,4+fGenDigitsOffset, expert, !image);
44ed7a66 285 fSPDhDigitsTask++;
286
287 TH1F** hMultSPDdigits = new TH1F*[2];
288 for (Int_t iLay=0; iLay<2; ++iLay) {
289 sprintf(name,"SPDDigitMultiplicity_SPD%d",iLay+1);
290 sprintf(title,"Digit multiplicity - SPD Layer %d",iLay+1);
291 hMultSPDdigits[iLay]=new TH1F(name,title,200,0.,200.);
292 hMultSPDdigits[iLay]->GetXaxis()->SetTitle("Digit multiplicity");
293 hMultSPDdigits[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 294 rv = fAliITSQADataMakerRec->Add2DigitsList(hMultSPDdigits[iLay], 5+iLay+fGenDigitsOffset, !expert, image);
44ed7a66 295 fSPDhDigitsTask++;
296 }
297
298 TH2F *hMultSPDdig2MultSPDdig1
299 = new TH2F("SPDDigitMultCorrelation_SPD","Digit multiplicity correlation - SPD",200,0.,200.,200,0.,200.);
300 hMultSPDdig2MultSPDdig1->GetXaxis()->SetTitle("Digit multiplicity (Layer 1)");
301 hMultSPDdig2MultSPDdig1->GetYaxis()->SetTitle("Digit multiplicity (Layer 2)");
eca4fa66 302 rv = fAliITSQADataMakerRec->Add2DigitsList(hMultSPDdig2MultSPDdig1,7+fGenDigitsOffset, !expert, image);
44ed7a66 303 fSPDhDigitsTask++;
304
305 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SPD Digits histograms booked\n",fSPDhDigitsTask));
eca4fa66 306 return rv ;
44ed7a66 307}
308
309//____________________________________________________________________________
eca4fa66 310Int_t AliITSQASPDDataMakerRec::MakeDigits(TTree *digits)
44ed7a66 311{
312 // Fill QA for DIGIT - SPD -
eca4fa66 313 Int_t rv = 0 ;
eca4fa66 314
44ed7a66 315// AliITS *fITS = (AliITS*)gAlice->GetModule("ITS");
316// fITS->SetTreeAddress();
317// TClonesArray *iITSdigits = fITS->DigitsAddress(0); // 0->SPD
33626263 318 TBranch *branchD = digits->GetBranch("ITSDigitsSPD");
44ed7a66 319 if (!branchD) {
33626263 320 AliError("can't get the branch with the SPD ITS digits !");
eca4fa66 321 return rv;
44ed7a66 322 }
33626263 323 static TClonesArray statDigits("AliITSdigitSPD");
44ed7a66 324 TClonesArray *iITSdigits = &statDigits;
325 branchD->SetAddress(&iITSdigits);
326 Int_t nDigitsL1=0;
327 Int_t nDigitsL2=0;
328
329 for (Int_t imod=0; imod<240; ++imod){
330 digits->GetEvent(imod);
331 Int_t ndigits = iITSdigits->GetEntries();
332 if (imod<80) {
333 fAliITSQADataMakerRec->GetDigitsData(0+fGenDigitsOffset)->Fill(0.5,ndigits);
334 fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset)->Fill(imod,ndigits);
335 nDigitsL1+=ndigits;
336 }
337 else {
338 fAliITSQADataMakerRec->GetDigitsData(0+fGenDigitsOffset)->Fill(1,ndigits);
339 fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset)->Fill(imod,ndigits);
340 nDigitsL2+=ndigits;
341 }
342 for (Int_t idig=0; idig<ndigits; ++idig) {
343 AliITSdigit *dig=(AliITSdigit*)iITSdigits->UncheckedAt(idig);
344 Int_t col=dig->GetCoord1(); // cell number z
345 Int_t row=dig->GetCoord2(); // cell number x
346 fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset)->Fill(col);
347 fAliITSQADataMakerRec->GetDigitsData(4+fGenDigitsOffset)->Fill(row);
348 }
349 }
350 fAliITSQADataMakerRec->GetDigitsData(5+fGenDigitsOffset)->Fill(nDigitsL1);
351 fAliITSQADataMakerRec->GetDigitsData(6+fGenDigitsOffset)->Fill(nDigitsL2);
352 fAliITSQADataMakerRec->GetDigitsData(7+fGenDigitsOffset)->Fill(nDigitsL1,nDigitsL2);
eca4fa66 353 return rv ;
44ed7a66 354}
355
096292ae 356//____________________________________________________________________________
eca4fa66 357Int_t AliITSQASPDDataMakerRec::InitRecPoints()
096292ae 358{
359 // Initialization for RECPOINTS - SPD -
7d297381 360 const Bool_t expert = kTRUE ;
361 const Bool_t image = kTRUE ;
eca4fa66 362 Int_t rv = 0 ;
363// fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList[AliRecoParam::kDefault])->GetEntries();
26ee9565 364 TH1F* hlayer= new TH1F("SPDLayPattern_SPD","Layer map - SPD",6,0.,6.);
096292ae 365 hlayer->GetXaxis()->SetTitle("Layer number");
366 hlayer->GetYaxis()->SetTitle("Entries");
eca4fa66 367 rv = fAliITSQADataMakerRec->Add2RecPointsList(hlayer, 0+fGenRecPointsOffset, expert, !image);
7a0e5776 368 fSPDhRecPointsTask++;
096292ae 369
370 TH1F** hmod = new TH1F*[2];
371 TH1F** hxl = new TH1F*[2];
372 TH1F** hzl = new TH1F*[2];
373 TH1F** hxg = new TH1F*[2];
374 TH1F** hyg = new TH1F*[2];
375 TH1F** hzg = new TH1F*[2];
376 TH1F** hr = new TH1F*[2];
377 TH1F** hphi = new TH1F*[2];
378 TH1F** hMultSPDcl = new TH1F*[2];
379 TH2F** hNyNz = new TH2F*[2]; // y and z cluster length
380 TH2F** hPhiZ = new TH2F*[2];
381
382 Float_t xlim[2]={4.5,8.};
383 Float_t zlim[2]={15.,15.};
384
385 Char_t name[50];
386 Char_t title[50];
387 for (Int_t iLay=0;iLay<2;iLay++) {
26ee9565 388 sprintf(name,"SPDModPattern_SPD%d",iLay+1);
096292ae 389 sprintf(title,"Module map - SPD Layer %d",iLay+1);
390 hmod[iLay]=new TH1F(name,title,fgknSPDmodules,0,fgknSPDmodules);
391 hmod[iLay]->GetXaxis()->SetTitle("Module number");
392 hmod[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 393 rv = fAliITSQADataMakerRec->Add2RecPointsList(hmod[iLay], 1+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 394 fSPDhRecPointsTask++;
096292ae 395
26ee9565 396 sprintf(name,"SPDxLoc_SPD%d",iLay+1);
096292ae 397 sprintf(title,"Local x coordinate - SPD Layer %d",iLay+1);
398 hxl[iLay]=new TH1F(name,title,100,-4.,4.);
399 hxl[iLay]->GetXaxis()->SetTitle("Local x [cm]");
400 hxl[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 401 rv = fAliITSQADataMakerRec->Add2RecPointsList(hxl[iLay], 2+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 402 fSPDhRecPointsTask++;
096292ae 403
26ee9565 404 sprintf(name,"SPDzLoc_SPD%d",iLay+1);
096292ae 405 sprintf(title,"Local z coordinate - SPD Layer %d",iLay+1);
406 hzl[iLay]=new TH1F(name,title,100,-4.,4.);
407 hzl[iLay]->GetXaxis()->SetTitle("Local z [cm]");
408 hzl[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 409 rv = fAliITSQADataMakerRec->Add2RecPointsList(hzl[iLay], 3+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 410 fSPDhRecPointsTask++;
096292ae 411
26ee9565 412 sprintf(name,"SPDxGlob_SPD%d",iLay+1);
096292ae 413 sprintf(title,"Global x coordinate - SPD Layer %d",iLay+1);
414 hxg[iLay]=new TH1F(name,title,100,-xlim[iLay],xlim[iLay]);
415 hxg[iLay]->GetXaxis()->SetTitle("Global x [cm]");
416 hxg[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 417 rv = fAliITSQADataMakerRec->Add2RecPointsList(hxg[iLay],4+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 418 fSPDhRecPointsTask++;
096292ae 419
26ee9565 420 sprintf(name,"SPDyGlob_SPD%d",iLay+1);
096292ae 421 sprintf(title,"Global y coordinate - SPD Layer %d",iLay+1);
422 hyg[iLay]=new TH1F(name,title,100,-xlim[iLay],xlim[iLay]);
423 hyg[iLay]->GetXaxis()->SetTitle("Global y [cm]");
424 hyg[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 425 rv = fAliITSQADataMakerRec->Add2RecPointsList(hyg[iLay], 5+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 426 fSPDhRecPointsTask++;
096292ae 427
26ee9565 428 sprintf(name,"SPDzGlob_SPD%d",iLay+1);
096292ae 429 sprintf(title,"Global z coordinate - SPD Layer %d",iLay+1);
430 hzg[iLay]=new TH1F(name,title,150,-zlim[iLay],zlim[iLay]);
431 hzg[iLay]->GetXaxis()->SetTitle("Global z [cm]");
432 hzg[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 433 rv = fAliITSQADataMakerRec->Add2RecPointsList(hzg[iLay], 6+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 434 fSPDhRecPointsTask++;
096292ae 435
26ee9565 436 sprintf(name,"SPDr_SPD%d",iLay+1);
096292ae 437 sprintf(title,"Radius - SPD Layer %d",iLay+1);
438 hr[iLay]=new TH1F(name,title,100,0.,10.);
439 hr[iLay]->GetXaxis()->SetTitle("r [cm]");
440 hr[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 441 rv = fAliITSQADataMakerRec->Add2RecPointsList(hr[iLay], 7+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 442 fSPDhRecPointsTask++;
096292ae 443
26ee9565 444 sprintf(name,"SPDphi_SPD%d",iLay+1);
096292ae 445 sprintf(title,"#varphi - SPD Layer %d",iLay+1);
439e7a8a 446 hphi[iLay]=new TH1F(name,title,1000,0.,2*TMath::Pi());
096292ae 447 hphi[iLay]->GetXaxis()->SetTitle("#varphi [rad]");
448 hphi[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 449 rv = fAliITSQADataMakerRec->Add2RecPointsList(hphi[iLay], 8+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 450 fSPDhRecPointsTask++;
096292ae 451
26ee9565 452 sprintf(name,"SPDSizeYvsZ_SPD%d",iLay+1);
096292ae 453 sprintf(title,"Cluster dimension - SPD Layer %d",iLay+1);
454 hNyNz[iLay]=new TH2F(name,title,100,0.,100.,100,0.,100.);
455 hNyNz[iLay]->GetXaxis()->SetTitle("z length");
456 hNyNz[iLay]->GetYaxis()->SetTitle("y length");
eca4fa66 457 rv = fAliITSQADataMakerRec->Add2RecPointsList(hNyNz[iLay], 9+(10*iLay)+fGenRecPointsOffset, expert, !image);
7a0e5776 458 fSPDhRecPointsTask++;
096292ae 459
26ee9565 460 sprintf(name,"SPDphi_z_SPD%d",iLay+1);
096292ae 461 sprintf(title,"#varphi vs z - SPD Layer %d",iLay+1);
439e7a8a 462 hPhiZ[iLay]=new TH2F(name,title,150,-zlim[iLay],zlim[iLay],200,0.,2*TMath::Pi());
096292ae 463 hPhiZ[iLay]->GetXaxis()->SetTitle("Global z [cm]");
464 hPhiZ[iLay]->GetYaxis()->SetTitle("#varphi [rad]");
eca4fa66 465 rv = fAliITSQADataMakerRec->Add2RecPointsList(hPhiZ[iLay], 10+(10*iLay)+fGenRecPointsOffset, !expert, image);
7a0e5776 466 fSPDhRecPointsTask++;
096292ae 467
468 }
469
26ee9565 470 TH2F *hrPhi=new TH2F("SPDr_phi_SPD","#varphi vs r - SPD",100,0.,10.,100,0.,2*TMath::Pi());
096292ae 471 hrPhi->GetXaxis()->SetTitle("r [cm]");
472 hrPhi->GetYaxis()->SetTitle("#varphi [rad]");
eca4fa66 473 rv = fAliITSQADataMakerRec->Add2RecPointsList(hrPhi, 21+fGenRecPointsOffset, expert, !image);
7a0e5776 474 fSPDhRecPointsTask++;
096292ae 475
26ee9565 476 TH2F *hxy=new TH2F("SPDx_y_SPD","Global y vs x - SPD",200,-10.,10.,200,-10.,10.);
096292ae 477 hxy->GetXaxis()->SetTitle("Global x [cm]");
478 hxy->GetYaxis()->SetTitle("Global y [cm]");
eca4fa66 479 rv = fAliITSQADataMakerRec->Add2RecPointsList(hxy, 22+fGenRecPointsOffset, !expert, image);
7a0e5776 480 fSPDhRecPointsTask++;
096292ae 481
482 for (Int_t iLay=0;iLay<2;iLay++) {
26ee9565 483 sprintf(name,"SPDMultiplicity_SPD%d",iLay+1);
096292ae 484 sprintf(title,"Cluster multiplicity - SPD Layer %d",iLay+1);
485 hMultSPDcl[iLay]=new TH1F(name,title,200,0.,200.);
486 hMultSPDcl[iLay]->GetXaxis()->SetTitle("Cluster multiplicity");
487 hMultSPDcl[iLay]->GetYaxis()->SetTitle("Entries");
eca4fa66 488 rv = fAliITSQADataMakerRec->Add2RecPointsList(hMultSPDcl[iLay], 23+iLay+fGenRecPointsOffset, !expert, image);
7a0e5776 489 fSPDhRecPointsTask++;
096292ae 490 }
491
492 TH2F *hMultSPDcl2MultSPDcl1 =
26ee9565 493 new TH2F("SPDMultCorrelation_SPD","Cluster multiplicity correlation - SPD",200,0.,200.,200,0.,200.);
096292ae 494 hMultSPDcl2MultSPDcl1->GetXaxis()->SetTitle("Clusters multiplicity (Layer 1)");
495 hMultSPDcl2MultSPDcl1->GetYaxis()->SetTitle("Clusters multiplicity (Layer 2)");
eca4fa66 496 rv = fAliITSQADataMakerRec->Add2RecPointsList(hMultSPDcl2MultSPDcl1, 25+fGenRecPointsOffset, !expert, image);
7a0e5776 497 fSPDhRecPointsTask++;
096292ae 498
5379c4a3 499 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SPD Recs histograms booked\n",fSPDhRecPointsTask));
096292ae 500
eca4fa66 501 return rv ;
096292ae 502}
503
504//____________________________________________________________________________
eca4fa66 505Int_t AliITSQASPDDataMakerRec::MakeRecPoints(TTree * clusterTree)
096292ae 506{
507 // Fill QA for RecPoints - SPD -
eca4fa66 508 Int_t rv = 0 ;
3647765c 509 static TClonesArray statITSCluster("AliITSRecPoint");
510 TClonesArray *ITSCluster = &statITSCluster;
511 TBranch* itsClusterBranch=clusterTree->GetBranch("ITSRecPoints");
512 if (!itsClusterBranch) {
513 AliError("can't get the branch with the ITS clusters !");
eca4fa66 514 return rv;
3647765c 515 }
eca4fa66 516
3647765c 517 itsClusterBranch->SetAddress(&ITSCluster);
518 Int_t nItsMods = (Int_t)clusterTree->GetEntries();
519
520 Float_t cluGlo[3] = {0.,0.,0.};
521 Int_t nClusters[2] = {0,0};
522
523 for (Int_t iIts=0; iIts < nItsMods; iIts++) {
524
525 if (!clusterTree->GetEvent(iIts)) continue;
526 Int_t nCluster = ITSCluster->GetEntriesFast();
527 // loop over clusters
528 while(nCluster--) {
529 AliITSRecPoint* cluster = (AliITSRecPoint*)ITSCluster->UncheckedAt(nCluster);
530
531 if (cluster->GetLayer()>1) continue;
532 Int_t lay=cluster->GetLayer();
7a0e5776 533 fAliITSQADataMakerRec->GetRecPointsData(0 +fGenRecPointsOffset)->Fill(lay);
3647765c 534 cluster->GetGlobalXYZ(cluGlo);
535 Float_t rad=TMath::Sqrt(cluGlo[0]*cluGlo[0]+cluGlo[1]*cluGlo[1]);
096292ae 536 Float_t phi= TMath::Pi() + TMath::ATan2(-cluGlo[1],-cluGlo[0]);
537 if (lay==0) {
7a0e5776 538 fAliITSQADataMakerRec->GetRecPointsData(1 +fGenRecPointsOffset)->Fill(iIts);
539 fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset)->Fill(cluster->GetDetLocalX());
540 fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset)->Fill(cluster->GetDetLocalZ());
541 fAliITSQADataMakerRec->GetRecPointsData(4 +fGenRecPointsOffset)->Fill(cluGlo[0]);
542 fAliITSQADataMakerRec->GetRecPointsData(5 +fGenRecPointsOffset)->Fill(cluGlo[1]);
543 fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset)->Fill(cluGlo[2]);
544 fAliITSQADataMakerRec->GetRecPointsData(7 +fGenRecPointsOffset)->Fill(rad);
545 fAliITSQADataMakerRec->GetRecPointsData(8 +fGenRecPointsOffset)->Fill(phi);
546 fAliITSQADataMakerRec->GetRecPointsData(9 +fGenRecPointsOffset)->Fill(cluster->GetNz(),cluster->GetNy());
547 fAliITSQADataMakerRec->GetRecPointsData(10 +fGenRecPointsOffset)->Fill(cluGlo[2],phi);
096292ae 548 } else {
7a0e5776 549 fAliITSQADataMakerRec->GetRecPointsData(11 +fGenRecPointsOffset)->Fill(iIts);
550 fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset)->Fill(cluster->GetDetLocalX());
551 fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset)->Fill(cluster->GetDetLocalZ());
552 fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset)->Fill(cluGlo[0]);
553 fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset)->Fill(cluGlo[1]);
554 fAliITSQADataMakerRec->GetRecPointsData(16 +fGenRecPointsOffset)->Fill(cluGlo[2]);
555 fAliITSQADataMakerRec->GetRecPointsData(17 +fGenRecPointsOffset)->Fill(rad);
556 fAliITSQADataMakerRec->GetRecPointsData(18 +fGenRecPointsOffset)->Fill(phi);
557 fAliITSQADataMakerRec->GetRecPointsData(19 +fGenRecPointsOffset)->Fill(cluster->GetNz(),cluster->GetNy());
558 fAliITSQADataMakerRec->GetRecPointsData(20 +fGenRecPointsOffset)->Fill(cluGlo[2],phi);
096292ae 559 }
7a0e5776 560 fAliITSQADataMakerRec->GetRecPointsData(21 +fGenRecPointsOffset)->Fill(rad,phi);
561 fAliITSQADataMakerRec->GetRecPointsData(22 +fGenRecPointsOffset)->Fill(cluGlo[0],cluGlo[1]);
3647765c 562
096292ae 563 nClusters[lay]++;
3647765c 564 } // end of cluster loop
565 } // end of its "subdetector" loop
566
567 for (Int_t iLay=0; iLay<2; iLay++)
7a0e5776 568 fAliITSQADataMakerRec->GetRecPointsData(23+iLay +fGenRecPointsOffset)->Fill(nClusters[iLay]);
3647765c 569
7a0e5776 570 fAliITSQADataMakerRec->GetRecPointsData(25 +fGenRecPointsOffset)->Fill(nClusters[0],nClusters[1]);
3647765c 571
572 statITSCluster.Clear();
eca4fa66 573 return rv ;
096292ae 574}
7a0e5776 575
576
577
578//_______________________________________________________________
579
4e25ac79 580Int_t AliITSQASPDDataMakerRec::GetOffset(AliQAv1::TASKINDEX_t task) {
7a0e5776 581 // Returns offset number according to the specified task
582 Int_t offset=0;
4e25ac79 583 if( task == AliQAv1::kRAWS ) {
7a0e5776 584 offset=fGenRawsOffset;
585 }
eca4fa66 586 else if( task == AliQAv1::kDIGITSR ) {
587 offset=fGenDigitsOffset;
588 }
4e25ac79 589 else if( task == AliQAv1::kRECPOINTS ) {
7a0e5776 590 offset=fGenRecPointsOffset;
591 }
33626263 592 else if( task == AliQAv1::kDIGITS ) {
593 offset=fGenDigitsOffset;
594 }
7a0e5776 595 else {
596 AliInfo("No task has been selected. Offset set to zero.\n");
597 }
598
599 return offset;
600}
601
602//_______________________________________________________________
603
eca4fa66 604void AliITSQASPDDataMakerRec::SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset) {
605 // Returns offset number according to the specified task
606 if( task == AliQAv1::kRAWS ) {
607 fGenRawsOffset=offset;
608 }
609 else if( task == AliQAv1::kDIGITSR ) {
610 fGenDigitsOffset=offset;
611 }
612 else if( task == AliQAv1::kRECPOINTS ) {
613 fGenRecPointsOffset=offset;
614 }
615 else {
616 AliInfo("No task has been selected. Offset set to zero.\n");
617 }
618}
619
620//_______________________________________________________________
621
4e25ac79 622Int_t AliITSQASPDDataMakerRec::GetTaskHisto(AliQAv1::TASKINDEX_t task) {
7a0e5776 623 // Returns the number of histograms associated to the specified task
eca4fa66 624
7a0e5776 625 Int_t histotot=0;
626
4e25ac79 627 if( task == AliQAv1::kRAWS ) {
7a0e5776 628 histotot=fSPDhRawsTask;
629 }
eca4fa66 630 else if( task == AliQAv1::kDIGITSR ) {
631 histotot=fSPDhDigitsTask;
632 }
4e25ac79 633 else if( task == AliQAv1::kRECPOINTS ){
7a0e5776 634 histotot=fSPDhRecPointsTask;
635 }
33626263 636 else if( task == AliQAv1::kDIGITS ){
637 histotot=fSPDhDigitsTask;
638 }
7a0e5776 639 else {
640 AliInfo("No task has been selected. TaskHisto set to zero.\n");
641 }
a1287af5 642 return histotot;
7a0e5776 643}