]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDQADataMakerRec.cxx
In clustering code the method name is changed, Bug fixed in AliPMDrechit, Initializat...
[u/mrichter/AliRoot.git] / PMD / AliPMDQADataMakerRec.cxx
CommitLineData
a9523c3e 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/*
18 Produces the data needed to calculate the quality assurance.
19 All data must be mergeable objects.
20 B.K. Nandi
21*/
22
23// --- ROOT system ---
24#include <TClonesArray.h>
25#include <TFile.h>
26#include <TH1F.h>
27#include <TH1I.h>
28#include <TH2F.h>
29
30// --- Standard library ---
31
32// --- AliRoot header files ---
33
34#include "AliESDEvent.h"
35#include "AliLog.h"
36#include "AliPMDQADataMakerRec.h"
37#include "AliQAChecker.h"
5192f264 38#include "AliPMDdigit.h"
a9523c3e 39#include "AliPMDrecpoint1.h"
40#include "AliPMDRawStream.h"
41#include "AliPMDddldata.h"
42#include "AliPMDUtility.h"
43#include "AliESDPmdTrack.h"
78328afd 44//#include "AliPMDRecoParam.h"
a9523c3e 45
46ClassImp(AliPMDQADataMakerRec)
47
48//____________________________________________________________________________
49 AliPMDQADataMakerRec::AliPMDQADataMakerRec() :
4e25ac79 50 AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kPMD), "PMD Quality Assurance Data Maker")
a9523c3e 51{
52 // ctor
53}
54
55//____________________________________________________________________________
56AliPMDQADataMakerRec::AliPMDQADataMakerRec(const AliPMDQADataMakerRec& qadm) :
57 AliQADataMakerRec()
58{
59 //copy ctor
60 SetName((const char*)qadm.GetName()) ;
61 SetTitle((const char*)qadm.GetTitle());
62}
63
64//__________________________________________________________________
65AliPMDQADataMakerRec& AliPMDQADataMakerRec::operator = (const AliPMDQADataMakerRec& qadm )
66{
67 // Equal operator.
68 this->~AliPMDQADataMakerRec();
69 new(this) AliPMDQADataMakerRec(qadm);
70 return *this;
71}
72
73
74//____________________________________________________________________________
75void AliPMDQADataMakerRec::InitRaws()
76{
77 // create Raws histograms in Raws subdir
a9523c3e 78
7d297381 79 const Bool_t expert = kTRUE ;
80 const Bool_t saveCorr = kTRUE ;
81 const Bool_t image = kTRUE ;
82 // Preshower plane
2c1131dd 83
db72ff3b 84 TH1I * h0 = new TH1I("hPreEdepM0","ADC Distribution PRE - Module 0;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 85 h0->Sumw2();
7d297381 86 Add2RawsList(h0, 0, !expert, image, !saveCorr);
2c1131dd 87
db72ff3b 88 TH1I * h1 = new TH1I("hPreEdepM1","ADC Distribution PRE - Module 1;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 89 h1->Sumw2();
7d297381 90 Add2RawsList(h1, 1, !expert, image, !saveCorr);
a9523c3e 91
db72ff3b 92 TH1I * h2 = new TH1I("hPreEdepM2","ADC Distribution PRE - Module 2;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 93 h2->Sumw2();
7d297381 94 Add2RawsList(h2, 2, !expert, image, !saveCorr);
2c1131dd 95
db72ff3b 96 TH1I * h3 = new TH1I("hPreEdepM3","ADC Distribution PRE - Module 3;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 97 h3->Sumw2();
7d297381 98 Add2RawsList(h3, 3, !expert, image, !saveCorr);
a9523c3e 99
db72ff3b 100 TH1I * h4 = new TH1I("hPreEdepM4","ADC Distribution PRE - Module 4;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 101 h4->Sumw2();
7d297381 102 Add2RawsList(h4, 4, !expert, image, !saveCorr);
a9523c3e 103
db72ff3b 104 TH1I * h5 = new TH1I("hPreEdepM5","ADC Distribution PRE - Module 5;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 105 h5->Sumw2();
7d297381 106 Add2RawsList(h5, 5, !expert, image, !saveCorr);
2c1131dd 107
db72ff3b 108 TH1I * h6 = new TH1I("hPreEdepM6","ADC Distribution PRE - Module 6;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 109 h6->Sumw2();
7d297381 110 Add2RawsList(h6, 6, !expert, image, !saveCorr);
2c1131dd 111
db72ff3b 112 TH1I * h7 = new TH1I("hPreEdepM7","ADC Distribution PRE - Module 7;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 113 h7->Sumw2();
7d297381 114 Add2RawsList(h7, 7, !expert, image, !saveCorr);
2c1131dd 115
db72ff3b 116 TH1I * h8 = new TH1I("hPreEdepM8","ADC Distribution PRE - Module 8;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 117 h8->Sumw2();
7d297381 118 Add2RawsList(h8, 8, !expert, image, !saveCorr);
2c1131dd 119
db72ff3b 120 TH1I * h9 = new TH1I("hPreEdepM9","ADC Distribution PRE - Module 9;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 121 h9->Sumw2();
7d297381 122 Add2RawsList(h9, 9, !expert, image, !saveCorr);
2c1131dd 123
db72ff3b 124 TH1I * h10 = new TH1I("hPreEdepM10","ADC Distribution PRE - Module 10;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 125 h10->Sumw2();
7d297381 126 Add2RawsList(h10, 10, !expert, image, !saveCorr);
2c1131dd 127
db72ff3b 128 TH1I * h11 = new TH1I("hPreEdepM11","ADC Distribution PRE - Module 11;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 129 h11->Sumw2();
7d297381 130 Add2RawsList(h11, 11, !expert, image, !saveCorr);
2c1131dd 131
db72ff3b 132 TH1I * h12 = new TH1I("hPreEdepM12","ADC Distribution PRE - Module 12;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 133 h12->Sumw2();
7d297381 134 Add2RawsList(h12, 12, !expert, image, !saveCorr);
2c1131dd 135
db72ff3b 136 TH1I * h13 = new TH1I("hPreEdepM13","ADC Distribution PRE - Module 13;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 137 h13->Sumw2();
7d297381 138 Add2RawsList(h13, 13, !expert, image, !saveCorr);
2c1131dd 139
db72ff3b 140 TH1I * h14 = new TH1I("hPreEdepM14","ADC Distribution PRE - Module 14;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 141 h14->Sumw2();
7d297381 142 Add2RawsList(h14, 14, !expert, image, !saveCorr);
2c1131dd 143
db72ff3b 144 TH1I * h15 = new TH1I("hPreEdepM15","ADC Distribution PRE - Module 15;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 145 h15->Sumw2();
7d297381 146 Add2RawsList(h15, 15, !expert, image, !saveCorr);
2c1131dd 147
db72ff3b 148 TH1I * h16 = new TH1I("hPreEdepM16","ADC Distribution PRE - Module 16;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 149 h16->Sumw2();
7d297381 150 Add2RawsList(h16, 16, !expert, image, !saveCorr);
2c1131dd 151
db72ff3b 152 TH1I * h17 = new TH1I("hPreEdepM17","ADC Distribution PRE - Module 17;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 153 h17->Sumw2();
7d297381 154 Add2RawsList(h17, 17, !expert, image, !saveCorr);
2c1131dd 155
db72ff3b 156 TH1I * h18 = new TH1I("hPreEdepM18","ADC Distribution PRE - Module 18;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 157 h18->Sumw2();
7d297381 158 Add2RawsList(h18, 18, !expert, image, !saveCorr);
2c1131dd 159
db72ff3b 160 TH1I * h19 = new TH1I("hPreEdepM19","ADC Distribution PRE - Module 19;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 161 h19->Sumw2();
7d297381 162 Add2RawsList(h19, 19, !expert, image, !saveCorr);
2c1131dd 163
db72ff3b 164 TH1I * h20 = new TH1I("hPreEdepM20","ADC Distribution PRE - Module 20;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 165 h20->Sumw2();
7d297381 166 Add2RawsList(h20, 20, !expert, image, !saveCorr);
2c1131dd 167
db72ff3b 168 TH1I * h21 = new TH1I("hPreEdepM21","ADC Distribution PRE - Module 21;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 169 h21->Sumw2();
7d297381 170 Add2RawsList(h21, 21, !expert, image, !saveCorr);
2c1131dd 171
db72ff3b 172 TH1I * h22 = new TH1I("hPreEdepM22","ADC Distribution PRE - Module 22;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 173 h22->Sumw2();
7d297381 174 Add2RawsList(h22, 22, !expert, image, !saveCorr);
2c1131dd 175
db72ff3b 176 TH1I * h23 = new TH1I("hPreEdepM23","ADC Distribution PRE - Module 23;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 177 h23->Sumw2();
7d297381 178 Add2RawsList(h23, 23, !expert, image, !saveCorr);
2c1131dd 179
180 // CPV histos
181
db72ff3b 182 TH1I * h24 = new TH1I("hCpvEdepM24","ADC Distribution CPV - Module 24;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 183 h24->Sumw2();
7d297381 184 Add2RawsList(h24, 24, !expert, image, !saveCorr);
2c1131dd 185
db72ff3b 186 TH1I * h25 = new TH1I("hCpvEdepM25","ADC Distribution CPV - Module 25;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 187 h25->Sumw2();
7d297381 188 Add2RawsList(h25, 25, !expert, image, !saveCorr);
2c1131dd 189
db72ff3b 190 TH1I * h26 = new TH1I("hCpvEdepM26","ADC Distribution CPV - Module 26;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 191 h26->Sumw2();
7d297381 192 Add2RawsList(h26, 26, !expert, image, !saveCorr);
2c1131dd 193
db72ff3b 194 TH1I * h27 = new TH1I("hCpvEdepM27","ADC Distribution CPV - Module 27;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 195 h27->Sumw2();
7d297381 196 Add2RawsList(h27, 27, !expert, image, !saveCorr);
2c1131dd 197
db72ff3b 198 TH1I * h28 = new TH1I("hCpvEdepM28","ADC Distribution CPV - Module 28;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 199 h28->Sumw2();
7d297381 200 Add2RawsList(h28, 28, !expert, image, !saveCorr);
2c1131dd 201
db72ff3b 202 TH1I * h29 = new TH1I("hCpvEdepM29","ADC Distribution CPV - Module 29;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 203 h29->Sumw2();
7d297381 204 Add2RawsList(h29, 29, !expert, image, !saveCorr);
2c1131dd 205
db72ff3b 206 TH1I * h30 = new TH1I("hCpvEdepM30","ADC Distribution CPV - Module 30;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 207 h30->Sumw2();
7d297381 208 Add2RawsList(h30, 30, !expert, image, !saveCorr);
2c1131dd 209
db72ff3b 210 TH1I * h31 = new TH1I("hCpvEdepM31","ADC Distribution CPV - Module 31;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 211 h31->Sumw2();
7d297381 212 Add2RawsList(h31, 31, !expert, image, !saveCorr);
2c1131dd 213
db72ff3b 214 TH1I * h32 = new TH1I("hCpvEdepM32","ADC Distribution CPV - Module 32;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 215 h32->Sumw2();
7d297381 216 Add2RawsList(h32, 32, !expert, image, !saveCorr);
2c1131dd 217
db72ff3b 218 TH1I * h33 = new TH1I("hCpvEdepM33","ADC Distribution CPV - Module 33;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 219 h33->Sumw2();
7d297381 220 Add2RawsList(h33, 33, !expert, image, !saveCorr);
2c1131dd 221
db72ff3b 222 TH1I * h34 = new TH1I("hCpvEdepM34","ADC Distribution CPV - Module 34;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 223 h34->Sumw2();
7d297381 224 Add2RawsList(h34, 34, !expert, image, !saveCorr);
2c1131dd 225
db72ff3b 226 TH1I * h35 = new TH1I("hCpvEdepM35","ADC Distribution CPV - Module 35;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 227 h35->Sumw2();
7d297381 228 Add2RawsList(h35, 35, !expert, image, !saveCorr);
2c1131dd 229
db72ff3b 230 TH1I * h36 = new TH1I("hCpvEdepM36","ADC Distribution CPV - Module 36;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 231 h36->Sumw2();
7d297381 232 Add2RawsList(h36, 36, !expert, image, !saveCorr);
2c1131dd 233
db72ff3b 234 TH1I * h37 = new TH1I("hCpvEdepM37","ADC Distribution CPV - Module 37;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 235 h37->Sumw2();
7d297381 236 Add2RawsList(h37, 37, !expert, image, !saveCorr);
2c1131dd 237
db72ff3b 238 TH1I * h38 = new TH1I("hCpvEdepM38","ADC Distribution CPV - Module 38;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 239 h38->Sumw2();
7d297381 240 Add2RawsList(h38, 38, !expert, image, !saveCorr);
2c1131dd 241
db72ff3b 242 TH1I * h39 = new TH1I("hCpvEdepM39","ADC Distribution CPV - Module 39;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 243 h39->Sumw2();
7d297381 244 Add2RawsList(h39, 39, !expert, image, !saveCorr);
2c1131dd 245
db72ff3b 246 TH1I * h40 = new TH1I("hCpvEdepM40","ADC Distribution CPV - Module 40;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 247 h40->Sumw2();
7d297381 248 Add2RawsList(h40, 40, !expert, image, !saveCorr);
2c1131dd 249
db72ff3b 250 TH1I * h41 = new TH1I("hCpvEdepM41","ADC Distribution CPV - Module 41;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 251 h41->Sumw2();
7d297381 252 Add2RawsList(h41, 41, !expert, image, !saveCorr);
2c1131dd 253
db72ff3b 254 TH1I * h42 = new TH1I("hCpvEdepM42","ADC Distribution CPV - Module 42;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 255 h42->Sumw2();
7d297381 256 Add2RawsList(h42, 42, !expert, image, !saveCorr);
2c1131dd 257
db72ff3b 258 TH1I * h43 = new TH1I("hCpvEdepM43","ADC Distribution CPV - Module 43;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 259 h43->Sumw2();
7d297381 260 Add2RawsList(h43, 43, !expert, image, !saveCorr);
2c1131dd 261
db72ff3b 262 TH1I * h44 = new TH1I("hCpvEdepM44","ADC Distribution CPV - Module 44;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 263 h44->Sumw2();
7d297381 264 Add2RawsList(h44, 44, !expert, image, !saveCorr);
2c1131dd 265
db72ff3b 266 TH1I * h45 = new TH1I("hCpvEdepM45","ADC Distribution CPV - Module 45;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 267 h45->Sumw2();
7d297381 268 Add2RawsList(h45, 45, !expert, image, !saveCorr);
2c1131dd 269
db72ff3b 270 TH1I * h46 = new TH1I("hCpvEdepM46","ADC Distribution CPV - Module 46;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 271 h46->Sumw2();
7d297381 272 Add2RawsList(h46, 46, !expert, image, !saveCorr);
2c1131dd 273
db72ff3b 274 TH1I * h47 = new TH1I("hCpvEdepM47","ADC Distribution CPV - Module 47;Amplitude [ADC counts];Counts", 100, 0, 2000);
2c1131dd 275 h47->Sumw2();
7d297381 276 Add2RawsList(h47, 47, !expert, image, !saveCorr);
2c1131dd 277
278
279 // Y vs. X for PRE and CPV planes
280
db72ff3b 281 TH2F * h48 = new TH2F("hPreXY","PRE plane;X [cm];Y [cm]",200,-100.,100.,200,-100.,100.);
7d297381 282 Add2RawsList(h48, 48, !expert, !image, saveCorr);//Ajay
5f7ce82b 283 //Add2RawsList(h48, 48);//Ajay
db72ff3b 284 TH2F * h49 = new TH2F("hCpvXY","CPV plane;X [cm];Y [cm]",200,-100.,100.,200,-100.,100.);
7d297381 285 Add2RawsList(h49, 49, !expert, !image, saveCorr);//Ajay
5f7ce82b 286 //Add2RawsList(h49, 49);//Ajay
a9523c3e 287
a9523c3e 288}
44ed7a66 289
290//____________________________________________________________________________
291void AliPMDQADataMakerRec::InitDigits()
292{
293 // create Digits histograms in Digits subdir
294 const Bool_t expert = kTRUE ;
295 const Bool_t image = kTRUE ;
296
db72ff3b 297 TH1F *h0 = new TH1F("hPreDigitsEdep","Digits energy distribution in PRE(PMD);Amplitude [ADC counts];Counts", 100, 0., 2000.);
44ed7a66 298 h0->Sumw2();
299 Add2DigitsList(h0, 0, !expert, image);
300
db72ff3b 301 TH1F *h1 = new TH1F("hCpvDigitsEdep","Digits energy distribution in CPV(PMD);Amplitude [ADC counts];Counts", 100, 0., 2000.);
44ed7a66 302 h1->Sumw2();
303 Add2DigitsList(h1, 1, !expert, image);
304
db72ff3b 305 TH1I *h2 = new TH1I("hPreDigitsMult","Digits multiplicity distribution in PRE(PMD);# of Digits;Entries", 500, 0, 1000) ;
44ed7a66 306 h2->Sumw2();
307 Add2DigitsList(h2, 2, !expert, image);
308
db72ff3b 309 TH1I *h3 = new TH1I("hCpvDigitsMult","Digits multiplicity distribution in CPV(PMD);# of Digits;Entries", 500, 0, 1000);
44ed7a66 310 h3->Sumw2();
db72ff3b 311 Add2DigitsList(h3, 3, !expert, image);
44ed7a66 312}
313
a9523c3e 314//____________________________________________________________________________
315void AliPMDQADataMakerRec::InitRecPoints()
316{
317 // create Reconstructed Points histograms in RecPoints subdir
2c1131dd 318
319 /*
a9523c3e 320 TH2F * h0 = new TH2F("hPreXY","RecPoints Y vs X PRE(PMD)", 100,-100.,100.,100,-100.,100.);
2c1131dd 321 Add2RecPointsList(h0,0);
322
a9523c3e 323 TH2F * h1 = new TH2F("hCpvXY","RecPoints Y vs X CPV(PMD)", 100,-100.,100.,100,-100.,100.);
2c1131dd 324 Add2RecPointsList(h1,1);
325 */
a9523c3e 326
2c1131dd 327 // Ncell distribution in a cluster
328
b5144d1f 329 // PRE plane
330
7d297381 331 const Bool_t expert = kTRUE ;
332 const Bool_t image = kTRUE ;
333
db72ff3b 334 TH1F * h0 = new TH1F("hPreDdl0Ncell","PRE: Ddl0 Ncell in a cluster;# of cells;Counts",50,0.,50.);
2c1131dd 335 h0->Sumw2();
7d297381 336 Add2RecPointsList(h0, 0, !expert, image);
a9523c3e 337
a9523c3e 338
db72ff3b 339 TH1F * h1 = new TH1F("hPreDdl1Ncell","PRE: Ddl1 Ncell in a cluste;# of cells;Countsr",50,0.,50.);
2c1131dd 340 h1->Sumw2();
7d297381 341 Add2RecPointsList(h1, 1, !expert, image);
2c1131dd 342
343
db72ff3b 344 TH1F * h2 = new TH1F("hPreDdl2Ncell","PRE: Ddl2 Ncell in a cluster;# of cells;Counts",50,0.,50.);
2c1131dd 345 h2->Sumw2();
7d297381 346 Add2RecPointsList(h2, 2, !expert, image);
2c1131dd 347
348
db72ff3b 349 TH1F * h3 = new TH1F("hPreDdl3Ncell","PRE: Ddl3 Ncell in a cluster;# of cells;Counts",50,0.,50.);
2c1131dd 350 h3->Sumw2();
7d297381 351 Add2RecPointsList(h3, 3, !expert, image);
2c1131dd 352
b5144d1f 353 // CPV plane
354
db72ff3b 355 TH1F * h4 = new TH1F("hCpvDdl4Ncell","CPV: Ddl4 Ncell in a cluster;# of cells;Counts",50,0.,50.);
2c1131dd 356 h4->Sumw2();
7d297381 357 Add2RecPointsList(h4, 4, !expert, image);
2c1131dd 358
db72ff3b 359 TH1F * h5 = new TH1F("hCpvDdl5Ncell","CPV: Ddl5 Ncell in a cluster;# of cells;Counts",50,0.,50.);
2c1131dd 360 h5->Sumw2();
7d297381 361 Add2RecPointsList(h5, 5, !expert, image);
2c1131dd 362
363 // Correlation plot
364
db72ff3b 365 TH2I *h6 = new TH2I("hPre10","Cluster - DDL1 vs DDL0;DDL0;DDL1", 100,0,200,100,0,200);
7d297381 366 Add2RecPointsList(h6,6, !expert, image);
2c1131dd 367
db72ff3b 368 TH2I *h7 = new TH2I("hPre32","Cluster - DDL3 vs DDL2;DDL2;DDL3", 100,0,200,100,0,200);
7d297381 369 Add2RecPointsList(h7,7, !expert, image);
2c1131dd 370
db72ff3b 371 TH2I *h8 = new TH2I("hCpv54","Cluster - DDL5 vs DDL4;DDL4;DDL5", 100,0,200,100,0,200);
7d297381 372 Add2RecPointsList(h8,8, !expert, image);
a9523c3e 373
a9523c3e 374
375
376}
377
378//____________________________________________________________________________
379
380void AliPMDQADataMakerRec::InitESDs()
381{
382 //Create histograms to controll ESD
2c1131dd 383
7d297381 384 const Bool_t expert = kTRUE ;
385 const Bool_t image = kTRUE ;
386
db72ff3b 387 TH1F *h0 = new TH1F("hPreClADC","Cluster ADC of PRE plane;# of clusters;Counts",500,0.,10000.);
a9523c3e 388 h0->Sumw2();
7d297381 389 Add2ESDsList(h0, 0, !expert, image) ;
a9523c3e 390
db72ff3b 391 TH1F *h1 = new TH1F("hCpvClADC","Cluster ADC of CPV plane;# of clusters;Counts",500,0.,10000.);
a9523c3e 392 h1->Sumw2();
7d297381 393 Add2ESDsList(h1, 1, !expert, image) ;
a9523c3e 394
db72ff3b 395 TH2I *h2 = new TH2I("hPmdClMult","Cluster Multiplicity: PRE vs. CPVplane;CPV multiplicity;PRE Multiplicity",100,0,1000,100,0,1000);
a9523c3e 396 h2->Sumw2();
7d297381 397 Add2ESDsList(h2, 2, !expert, image) ;
a9523c3e 398
2c1131dd 399/*
400 TH1I * h3 = new TH1I("hCpvClMult","Cluster Multiplicity of CPV plane",100,0.,1000.);
a9523c3e 401 h3->Sumw2();
7d297381 402 Add2ESDsList(h3, 3, !expert, image) ;
2c1131dd 403*/
a9523c3e 404
405}
406
407//____________________________________________________________________________
408void AliPMDQADataMakerRec::MakeRaws(AliRawReader* rawReader)
409{
410 //Fill prepared histograms with Raw digit properties
411
eca4fa66 412 TObjArray *pmdddlcont = 0x0;
2c1131dd 413 pmdddlcont = new TObjArray();
a9523c3e 414 AliPMDRawStream stream(rawReader);
415
2c1131dd 416 AliPMDddldata *pmdddl = 0x0;
a9523c3e 417
2c1131dd 418 Int_t iddl = -1;
419 Int_t xpad = -1;
420 Int_t ypad = -1;
421 Float_t xx, yy;
a9523c3e 422
2c1131dd 423 AliPMDUtility cc;
424
425 while ((iddl = stream.DdlData(pmdddlcont)) >=0)
a9523c3e 426 {
2c1131dd 427 Int_t ientries = pmdddlcont->GetEntries();
a9523c3e 428 //printf(" ======= DDLNO = %d ientries = %d \n", iddl, ientries);
2c1131dd 429
a9523c3e 430 for (Int_t ient = 0; ient < ientries; ient++)
2c1131dd 431 {
432 //AliPMDddldata *pmdddl = (AliPMDddldata*)pmdddlcont->UncheckedAt(ient);
433 pmdddl = (AliPMDddldata*)pmdddlcont->UncheckedAt(ient);
434
435 Int_t det = pmdddl->GetDetector();
436 Int_t smn = pmdddl->GetSMN();
437 Int_t mcm = pmdddl->GetMCM();
a9523c3e 438 //Int_t chno = pmdddl->GetChannel();
2c1131dd 439 Int_t row = pmdddl->GetRow();
440 Int_t col = pmdddl->GetColumn();
a9523c3e 441 Int_t sig = pmdddl->GetSignal();
a9523c3e 442
2c1131dd 443 if (mcm == 0 || smn == -1) continue;
444
445 if (det == 0)
446 {
447 GetRawsData(smn)->Fill(sig);
448 if(smn < 12)
449 {
450 xpad = col;
451 ypad = row;
452 }
453 else if(smn >= 12 && smn < 24)
454 {
455 xpad = row;
456 ypad = col;
457 }
458 cc.RectGeomCellPos(smn,xpad,ypad,xx,yy);
459 GetRawsData(48)->Fill(xx,yy);
460 }
461 if (det == 1)
462 {
463 GetRawsData(24+smn)->Fill(sig);
464 if(smn < 12)
465 {
466 xpad = col;
467 ypad = row;
468 }
469 else if(smn >= 12 && smn < 24)
470 {
471 xpad = row;
472 ypad = col;
473 }
474
475 cc.RectGeomCellPos(smn,xpad,ypad,xx,yy);
476 GetRawsData(49)->Fill(xx,yy);
477
478 }
479
480 }
481
482 pmdddlcont->Delete();
a9523c3e 483 }
2c1131dd 484
485 delete pmdddlcont;
486 pmdddlcont = 0x0;
487
a9523c3e 488}
44ed7a66 489//____________________________________________________________________________
6252ceeb 490void AliPMDQADataMakerRec::MakeDigits()
44ed7a66 491{
492 // makes data from Digits
493
6252ceeb 494 Int_t cpvmul = 0, premul = 0;
44ed7a66 495
6252ceeb 496 TIter next(fDigitsArray) ;
44ed7a66 497 AliPMDdigit * digit ;
498 while ( (digit = dynamic_cast<AliPMDdigit *>(next())) )
499 {
500 if(digit->GetDetector() == 0)
501 {
502 GetDigitsData(0)->Fill( digit->GetADC()) ;
503 premul++;
504 }
505 if(digit->GetDetector() == 1)
506 {
507 GetDigitsData(1)->Fill( digit->GetADC());
508 cpvmul++;
509 }
510 }
511
512 if (premul > 0) GetDigitsData(2)->Fill(premul);
513 if (cpvmul > 0) GetDigitsData(3)->Fill(cpvmul);
514
515
516}
517
518//____________________________________________________________________________
519void AliPMDQADataMakerRec::MakeDigits(TTree * digitTree)
520{
521 // makes data from Digit Tree
522
6252ceeb 523 if (fDigitsArray)
524 fDigitsArray->Clear() ;
525 else
526 fDigitsArray = new TClonesArray("AliPMDdigit", 1000) ;
44ed7a66 527
528 TBranch * branch = digitTree->GetBranch("PMDDigit") ;
6252ceeb 529 branch->SetAddress(&fDigitsArray) ;
44ed7a66 530
531 if ( ! branch )
532 {
533 AliWarning("PMD branch in Digit Tree not found") ;
534 }
535 else
536 {
537 for (Int_t ient = 0; ient < branch->GetEntries(); ient++)
538 {
539 branch->GetEntry(ient) ;
6252ceeb 540 MakeDigits() ;
44ed7a66 541 }
542
543 }
544}
545
a9523c3e 546//____________________________________________________________________________
547void AliPMDQADataMakerRec::MakeRecPoints(TTree * clustersTree)
548{
549 // makes data from RecPoints
550
eca4fa66 551 Int_t multDdl0 = 0, multDdl1 = 0, multDdl2 = 0;
b5144d1f 552 Int_t multDdl3 = 0, multDdl4 = 0, multDdl5 = 0;
2c1131dd 553
a9523c3e 554 AliPMDrecpoint1 * recpoint;
555
6252ceeb 556 if (fRecPointsArray)
557 fRecPointsArray->Clear() ;
558 else
559 fRecPointsArray = new TClonesArray("AliPMDrecpoint1", 1000) ;
a9523c3e 560
561 TBranch * branch = clustersTree->GetBranch("PMDRecpoint") ;
6252ceeb 562 branch->SetAddress(&fRecPointsArray) ;
a9523c3e 563
564 if ( ! branch )
565 {
b5144d1f 566 AliWarning("PMD branch in Recpoints Tree not found") ;
a9523c3e 567 }
568 else
569 {
570 for (Int_t imod = 0; imod < branch->GetEntries(); imod++)
571 {
572 branch->GetEntry(imod) ;
573
6252ceeb 574 TIter next(fRecPointsArray) ;
a9523c3e 575
576 while ( (recpoint = dynamic_cast<AliPMDrecpoint1 *>(next())) )
2c1131dd 577 {
a9523c3e 578 //Float_t xpos = recpoint->GetClusX();
579 //Float_t ypos = recpoint->GetClusY();
2c1131dd 580 //Int_t smn = recpoint->GetSMNumber();
581
582 if(recpoint->GetDetector() == 0)
583 {
584 if(recpoint->GetSMNumber() >= 0 && recpoint->GetSMNumber() < 6)
585 {
586 GetRecPointsData(0)->Fill(recpoint->GetClusCells());
b5144d1f 587 multDdl0++;
2c1131dd 588 }
589 if(recpoint->GetSMNumber() >= 6 && recpoint->GetSMNumber() < 12)
590 {
591 GetRecPointsData(1)->Fill(recpoint->GetClusCells());
b5144d1f 592 multDdl1++;
2c1131dd 593 }
594 if(recpoint->GetSMNumber() >= 12 && recpoint->GetSMNumber() < 18)
595 {
596 GetRecPointsData(2)->Fill(recpoint->GetClusCells());
b5144d1f 597 multDdl2++;
2c1131dd 598 }
599 if(recpoint->GetSMNumber() >= 18 && recpoint->GetSMNumber() < 24)
600 {
b5144d1f 601 GetRecPointsData(3)->Fill(recpoint->GetClusCells());
602 multDdl3++;
2c1131dd 603 }
604 }
a9523c3e 605
2c1131dd 606 if(recpoint->GetDetector() == 1)
607 {
d6cc2277 608 if((recpoint->GetSMNumber() >= 0 && recpoint->GetSMNumber() < 6) ||
609 (recpoint->GetSMNumber() >= 18 && recpoint->GetSMNumber() < 24))
2c1131dd 610 {
611 GetRecPointsData(4)->Fill(recpoint->GetClusCells());
b5144d1f 612 multDdl4++;
2c1131dd 613 }
614 if(recpoint->GetSMNumber() >= 6 && recpoint->GetSMNumber() < 18 )
615 {
616 GetRecPointsData(5)->Fill(recpoint->GetClusCells());
b5144d1f 617 multDdl5++;
2c1131dd 618 }
619 }
620 }
a9523c3e 621 }
622 }
2c1131dd 623
b5144d1f 624 GetRecPointsData(6)->Fill(multDdl0,multDdl1);
625 GetRecPointsData(7)->Fill(multDdl2,multDdl3);
626 GetRecPointsData(8)->Fill(multDdl4,multDdl5);
a9523c3e 627}
628
629//____________________________________________________________________________
630
631void AliPMDQADataMakerRec::MakeESDs(AliESDEvent * esd)
632{
633 // make QA data from ESDs
634
eca4fa66 635 Int_t premul = 0, cpvmul = 0;
2c1131dd 636
637 for (Int_t icl = 0; icl < esd->GetNumberOfPmdTracks(); icl++)
a9523c3e 638 {
2c1131dd 639 AliESDPmdTrack *pmdtr = esd->GetPmdTrack(icl);
640
641 //Int_t det = pmdtr->GetDetector();
642 //Float_t clsX = pmdtr->GetClusterX();
643 //Float_t clsY = pmdtr->GetClusterY();
644 //Float_t clsZ = pmdtr->GetClusterZ();
645 //Float_t ncell = pmdtr->GetClusterCells();
646 Float_t adc = pmdtr->GetClusterADC();
647 //Float_t pid = pmdtr->GetClusterPID();
648
649 if (pmdtr->GetDetector() == 0)
a9523c3e 650 {
2c1131dd 651 GetESDsData(0)->Fill(adc);
652 premul++;
a9523c3e 653 }
2c1131dd 654 if (pmdtr->GetDetector() == 1)
a9523c3e 655 {
2c1131dd 656 GetESDsData(1)->Fill(adc) ;
657 cpvmul++;
a9523c3e 658 }
659 }
2c1131dd 660
661 GetESDsData(2)->Fill(cpvmul,premul) ;
662 //GetESDsData(3)->Fill(cpvmul) ;
a9523c3e 663}
664
665//____________________________________________________________________________
666
667void AliPMDQADataMakerRec::StartOfDetectorCycle()
668{
669 //Detector specific actions at start of cycle
670
671}
672//____________________________________________________________________________
4e25ac79 673void AliPMDQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
a9523c3e 674{
675 //Detector specific actions at end of cycle
676 // do the QA checking
4e25ac79 677 AliQAChecker::Instance()->Run(AliQAv1::kPMD, task, list) ;
a9523c3e 678}