]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASDDDataMakerRec.cxx
Possible fix for bug 59991 (F. Prino). Added TObjArray::Delete at the end of the...
[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
8b7e858c 24// M.Siciliano Aug 2008 QA RecPoints
ebdd0606 25// INFN Torino
26
27// --- ROOT system ---
ad300de9 28
ebdd0606 29#include <TProfile2D.h>
30#include <TH2D.h>
58ceb8ca 31#include <TH1F.h>
ebdd0606 32#include <TBranch.h>
33#include <TTree.h>
34#include <TGaxis.h>
35#include <TMath.h>
8b7e858c 36#include <TF1.h>
ebdd0606 37#include <TDirectory.h>
e41192d7 38#include <TSystem.h>
ebdd0606 39// --- Standard library ---
40
41// --- AliRoot header files ---
42#include "AliITSQASDDDataMakerRec.h"
43#include "AliLog.h"
4e25ac79 44#include "AliQAv1.h"
ebdd0606 45#include "AliQAChecker.h"
46#include "AliRawReader.h"
e41192d7 47#include "AliITSRawStream.h"
ebdd0606 48#include "AliITSRawStreamSDD.h"
e41192d7 49#include "AliITSRawStreamSDDCompressed.h"
50#include "AliITSDetTypeRec.h"
5192f264 51#include "AliITSdigit.h"
ebdd0606 52#include "AliITSRecPoint.h"
e62fe478 53#include "AliITSRecPointContainer.h"
ebdd0606 54#include "AliITSgeomTGeo.h"
ebdd0606 55#include "AliCDBManager.h"
56#include "AliCDBStorage.h"
57#include "AliCDBEntry.h"
ad300de9 58#include "Riostream.h"
fc89f88c 59#include "AliITSdigitSDD.h"
60#include "AliITS.h"
61#include "AliRunLoader.h"
62#include "AliITSLoader.h"
63#include "AliITSDetTypeRec.h"
64
65
ebdd0606 66
67ClassImp(AliITSQASDDDataMakerRec)
68
69//____________________________________________________________________________
70AliITSQASDDDataMakerRec::AliITSQASDDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode, Short_t ldc) :
71TObject(),
72fAliITSQADataMakerRec(aliITSQADataMakerRec),
73fkOnline(kMode),
74fLDC(ldc),
ad300de9 75fSDDhRawsTask(0),
44ed7a66 76fSDDhDigitsTask(0),
ad300de9 77fSDDhRecPointsTask(0),
ad300de9 78fGenRawsOffset(0),
44ed7a66 79fGenDigitsOffset(0),
ad300de9 80fGenRecPointsOffset(0),
ebdd0606 81fTimeBinSize(1),
e41192d7 82fDDLModuleMap(0),
8b7e858c 83fGoodAnodes(0),
84fBadAnodes(0),
85fGoodAnodesCurrent(0),
86fBadAnodesCurrent(0)
ebdd0606 87{
88 //ctor used to discriminate OnLine-Offline analysis
8b7e858c 89 if(fLDC < 0 || fLDC > 6) {
ebdd0606 90 AliError("Error: LDC number out of range; return\n");
91 }
8b7e858c 92 fGenRawsOffset = new Int_t[AliRecoParam::kNSpecies];
93 fGenRecPointsOffset = new Int_t[AliRecoParam::kNSpecies];
4a903927 94 fGenDigitsOffset = new Int_t[AliRecoParam::kNSpecies];
8b7e858c 95 for(Int_t i=0; i<AliRecoParam::kNSpecies; i++) {
96 fGenRawsOffset[i] = 0;
97 fGenRecPointsOffset[i] = 0;
4a903927 98 fGenDigitsOffset[i]=0;
8b7e858c 99 }
ebdd0606 100}
101
102//____________________________________________________________________________
103AliITSQASDDDataMakerRec::AliITSQASDDDataMakerRec(const AliITSQASDDDataMakerRec& qadm) :
104TObject(),
105fAliITSQADataMakerRec(qadm.fAliITSQADataMakerRec),
106fkOnline(qadm.fkOnline),
107fLDC(qadm.fLDC),
ad300de9 108fSDDhRawsTask(qadm.fSDDhRawsTask),
44ed7a66 109fSDDhDigitsTask(qadm.fSDDhDigitsTask),
ad300de9 110fSDDhRecPointsTask(qadm.fSDDhRecPointsTask),
ad300de9 111fGenRawsOffset(qadm.fGenRawsOffset),
44ed7a66 112fGenDigitsOffset(qadm.fGenDigitsOffset),
ad300de9 113fGenRecPointsOffset(qadm.fGenRecPointsOffset),
ebdd0606 114fTimeBinSize(1),
e41192d7 115fDDLModuleMap(0),
8b7e858c 116fGoodAnodes(qadm.fGoodAnodes),
117fBadAnodes(qadm.fBadAnodes),
118fGoodAnodesCurrent(qadm.fGoodAnodesCurrent),
58ceb8ca 119fBadAnodesCurrent(qadm.fBadAnodesCurrent)
120{
ebdd0606 121 //copy ctor
122 fAliITSQADataMakerRec->SetName((const char*)qadm.fAliITSQADataMakerRec->GetName()) ;
123 fAliITSQADataMakerRec->SetTitle((const char*)qadm.fAliITSQADataMakerRec->GetTitle());
124 fDDLModuleMap=NULL;
125}
126
127//____________________________________________________________________________
128AliITSQASDDDataMakerRec::~AliITSQASDDDataMakerRec(){
129 // destructor
58ceb8ca 130 //if(fDDLModuleMap) delete fDDLModuleMap;
ebdd0606 131}
132//__________________________________________________________________
133AliITSQASDDDataMakerRec& AliITSQASDDDataMakerRec::operator = (const AliITSQASDDDataMakerRec& qac )
134{
7a0e5776 135 // Equal operator.
ebdd0606 136 this->~AliITSQASDDDataMakerRec();
137 new(this) AliITSQASDDDataMakerRec(qac);
138 return *this;
139}
140
141//____________________________________________________________________________
142void AliITSQASDDDataMakerRec::StartOfDetectorCycle()
143{
144 //Detector specific actions at start of cycle
5379c4a3 145 AliDebug(AliQAv1::GetQADebugLevel(),"AliITSQADM::Start of SDD Cycle\n");
ebdd0606 146}
147
148//____________________________________________________________________________
4e25ac79 149void AliITSQASDDDataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t /*task*/, TObjArray* /*list*/)
ebdd0606 150{
f867e0d8 151
ebdd0606 152 // launch the QA checking
8b7e858c 153 if(fkOnline) {
154 AnalyseBNG(); // Analyse Baseline, Noise, Gain
155 AnalyseINJ(); // Analyse Injectors
156 }
f867e0d8 157
8b7e858c 158 AliDebug(AliQAv1::GetQADebugLevel(),"AliITSDM instantiates checker with Run(AliQAv1::kITS, task, list)\n");
ebdd0606 159}
160
161//____________________________________________________________________________
eca4fa66 162Int_t AliITSQASDDDataMakerRec::InitRaws()
ebdd0606 163{
164 // Initialization for RAW data - SDD -
7d297381 165 const Bool_t expert = kTRUE ;
166 const Bool_t saveCorr = kTRUE ;
167 const Bool_t image = kTRUE ;
58ceb8ca 168
169
170
eca4fa66 171 Int_t rv = 0 ;
58ceb8ca 172 /*
ebdd0606 173 AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
174 Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
e41192d7 175 if(!ddlMapSDD)
176 {
177 AliError("Calibration object retrieval failed! SDD will not be processed");
178 fDDLModuleMap = NULL;
eca4fa66 179 return rv;
e41192d7 180 }
ebdd0606 181 fDDLModuleMap = (AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
182 if(!cacheStatus)ddlMapSDD->SetObject(NULL);
183 ddlMapSDD->SetOwner(kTRUE);
e41192d7 184 if(!cacheStatus)
185 {
186 delete ddlMapSDD;
187 }
58ceb8ca 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");
ce8c37f2 204 rv = fAliITSQADataMakerRec->Add2RawsList(h0,0+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
ad300de9 205 fSDDhRawsTask++;
7a0e5776 206
207 //zPhi distribution using ladder and modules numbers
58ceb8ca 208 TH2D *hphil3 = new TH2D("SDDphizL3","SDD #varphiz Layer3 ",12,0.5,6.5,14,0.5,14.5);
7a0e5776 209 hphil3->GetXaxis()->SetTitle("z[#Module L3 ]");
210 hphil3->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
ce8c37f2 211 rv = fAliITSQADataMakerRec->Add2RawsList(hphil3,1+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image, saveCorr);
7a0e5776 212 fSDDhRawsTask++;
213
58ceb8ca 214 TH2D *hphil4 = new TH2D("SDDphizL4","SDD #varphiz Layer4 ",16,0.5,8.5,22,0.5,22.5);
7a0e5776 215 hphil4->GetXaxis()->SetTitle("z[#Module L4]");
216 hphil4->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
ce8c37f2 217 rv = fAliITSQADataMakerRec->Add2RawsList(hphil4,2+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image, saveCorr);
7a0e5776 218 fSDDhRawsTask++;
219
ebdd0606 220
7a0e5776 221 if(fkOnline)
222 {
223
224 //DDL Pattern
58ceb8ca 225 TH2D *hddl = new TH2D("SDDDDLPattern","SDD DDL Pattern ",24,-0.5,11.5,24,-0.5,23.5);
ad300de9 226 hddl->GetXaxis()->SetTitle("Channel");
227 hddl->GetYaxis()->SetTitle("#DDL");
ce8c37f2 228 rv = fAliITSQADataMakerRec->Add2RawsList(hddl,3+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
ad300de9 229 fSDDhRawsTask++;
7a0e5776 230 Int_t indexlast1 = 0;
231
232 fTimeBinSize = 4;
233 indexlast = 0;
234 index1 = 0;
235 indexlast1 = fSDDhRawsTask;
236 char *hname[3];
237 for(Int_t i=0; i<3; i++) hname[i]= new char[50];
238 for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
239 for(Int_t iside=0;iside<fgknSide;iside++){
240 AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
241 sprintf(hname[0],"SDDchargeMapFSE_L%d_%d_%d_%d",lay,lad,det,iside);
242 sprintf(hname[1],"SDDChargeMapForSingleEvent_L%d_%d_%d_%d",lay,lad,det,iside);
fc89f88c 243 // sprintf(hname[2],"SDDhmonoDMap_L%d_%d_%d_%d",lay,lad,det,iside);
7a0e5776 244 TProfile2D *fModuleChargeMapFSE = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
245 fModuleChargeMapFSE->GetXaxis()->SetTitle("Time Bin");
246 fModuleChargeMapFSE->GetYaxis()->SetTitle("Anode");
80b9610c 247 rv = fAliITSQADataMakerRec->Add2RawsList(fModuleChargeMapFSE,indexlast1 + index1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
7a0e5776 248 fSDDhRawsTask++;
249 index1++;
ebdd0606 250 }
7a0e5776 251 }
252
253 for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
254 for(Int_t iside=0;iside<fgknSide;iside++){
255 AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
256 sprintf(hname[0],"SDDchargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
257 sprintf(hname[1],"SDDChargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
258 TProfile2D *fModuleChargeMap = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
259 fModuleChargeMap->GetXaxis()->SetTitle("Time Bin");
260 fModuleChargeMap->GetYaxis()->SetTitle("Anode");
80b9610c 261 rv = fAliITSQADataMakerRec->Add2RawsList(fModuleChargeMap,indexlast1 + index1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
262
7a0e5776 263 fSDDhRawsTask++;
264 index1++;
ebdd0606 265 }
7a0e5776 266 }
267
58ceb8ca 268 //Event Size
269 TH1F *hsize = new TH1F("SDDEventSize","SDD Event Size ",1000,-0.5,999.5);
270 hsize->GetXaxis()->SetTitle("Event Size [kB]");
271 hsize->GetYaxis()->SetTitle("Entries");
ce8c37f2 272 rv = fAliITSQADataMakerRec->Add2RawsList(hsize,indexlast1 + index1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
58ceb8ca 273 fSDDhRawsTask++;
8b7e858c 274
7a0e5776 275 } // kONLINE
ebdd0606 276
5379c4a3 277 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Raws histograms booked\n",fSDDhRawsTask));
eca4fa66 278 return rv ;
ebdd0606 279}
280
281
282//____________________________________________________________________________
eca4fa66 283Int_t AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
ebdd0606 284{
285 // Fill QA for RAW - SDD -
8b7e858c 286 Int_t rv = 0;
7555afef 287 // Check id histograms already created for this Event Specie
7555afef 288
ebdd0606 289 if(!fDDLModuleMap){
58ceb8ca 290 CreateTheMap();
291 //AliError("SDD DDL module map not available - skipping SDD QA");
292 //return rv;
293
ebdd0606 294 }
eca4fa66 295 if(rawReader->GetType() != 7) return rv; // skips non physical triggers
5379c4a3 296 AliDebug(AliQAv1::GetQADebugLevel(),"entering MakeRaws\n");
e41192d7 297 rawReader->Reset();
58ceb8ca 298 rawReader->Select("ITSSDD");
8b7e858c 299 AliITSRawStream *stream=AliITSRawStreamSDD::CreateRawStreamSDD(rawReader);
300 stream->SetDDLModuleMap(fDDLModuleMap);
e41192d7 301
ebdd0606 302 Int_t lay, lad, det;
7a0e5776 303
ebdd0606 304 Int_t index=0;
305 if(fkOnline) {
306 for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
7a0e5776 307 for(Int_t iside=0;iside<fgknSide;iside++) {
8b7e858c 308 if(fSDDhRawsTask > 4 + index) fAliITSQADataMakerRec->GetRawsData(4 + index +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
7a0e5776 309 // 4 because the 2D histos for single events start after the fourth position
310 index++;
311 }
ebdd0606 312 }
313 }
e41192d7 314
ebdd0606 315 Int_t cnt = 0;
316 Int_t ildcID = -1;
317 Int_t iddl = -1;
318 Int_t isddmod = -1;
7a0e5776 319 Int_t coord1, coord2, signal, moduleSDD, activeModule, index1;
58ceb8ca 320 //if(fkOnline)
321 //{
322 Int_t prevDDLID = -1;
323 UInt_t size = 0;
324 int totalddl=static_cast<int>(fDDLModuleMap->GetNDDLs());
325 Bool_t *ddldata=new Bool_t[totalddl];
326 for(Int_t jddl=0;jddl<totalddl;jddl++){ddldata[jddl]=kFALSE;}
327 //}
e41192d7 328 while(stream->Next()) {
ebdd0606 329 ildcID = rawReader->GetLDCId();
58ceb8ca 330 iddl = rawReader->GetDDLID();// - fgkDDLIDshift;
331
332
e41192d7 333 isddmod = fDDLModuleMap->GetModuleNumber(iddl,stream->GetCarlosId());
ebdd0606 334 if(isddmod==-1){
5379c4a3 335 AliDebug(AliQAv1::GetQADebugLevel(),Form("Found module with iddl: %d, stream->GetCarlosId: %d \n",iddl,stream->GetCarlosId()));
ebdd0606 336 continue;
337 }
e41192d7 338 if(stream->IsCompletedModule()) {
5379c4a3 339 AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedModule == KTRUE\n"));
ebdd0606 340 continue;
341 }
de075dae 342 if(stream->IsCompletedDDL()) {
58ceb8ca 343
344 if(fkOnline){
345 if ((rawReader->GetDDLID() != prevDDLID)&&(ddldata[iddl])==kFALSE){
346 size += rawReader->GetDataSize();//in bytes
347 prevDDLID = rawReader->GetDDLID();
348 ddldata[iddl]=kTRUE;
349 }
350 }
5379c4a3 351 AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedDDL == KTRUE\n"));
de075dae 352 continue;
353 }
ebdd0606 354
e41192d7 355 coord1 = stream->GetCoord1();
356 coord2 = stream->GetCoord2();
357 signal = stream->GetSignal();
ebdd0606 358
7a0e5776 359 moduleSDD = isddmod - fgkmodoffset;
360
b62d7123 361 if(isddmod <fgkmodoffset|| isddmod>fgknSDDmodules+fgkmodoffset-1) {
5379c4a3 362 AliDebug(AliQAv1::GetQADebugLevel(),Form( "Module SDD = %d, resetting it to 1 \n",isddmod));
b62d7123 363 isddmod = 1;
ebdd0606 364 }
7a0e5776 365
ebdd0606 366 AliITSgeomTGeo::GetModuleId(isddmod, lay, lad, det);
e41192d7 367 Short_t iside = stream->GetChannel();
ad300de9 368
58ceb8ca 369 //printf(" \n%i %i %i %i \n ",lay, lad, det,iside );
370 fAliITSQADataMakerRec->GetRawsData( 0 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()] )->Fill(isddmod);
371 if(lay==3) fAliITSQADataMakerRec->GetRawsData(1+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(det+0.5*iside-0.5,lad);
372 if(lay==4) {
373 fAliITSQADataMakerRec->GetRawsData(2+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(det+0.5*iside-0.5,lad);}
374
ebdd0606 375 if(fkOnline) {
58ceb8ca 376 fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill((stream->GetCarlosId())+0.5*iside -0.5,iddl);
fc89f88c 377
7a0e5776 378 activeModule = moduleSDD;
379 index1 = activeModule * 2 + iside;
380
381 if(index1<0){
5379c4a3 382 AliDebug(AliQAv1::GetQADebugLevel(),Form("Wrong index number %d - patched to 0\n",index1));
7a0e5776 383 index1 = 0;
384 }
78f8430c 385
7a0e5776 386 if(fSDDhRawsTask > 4 + index1) {
8b7e858c 387 ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])))->Fill(coord2, coord1, signal);
388 ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 + 260*2 +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])))->Fill(coord2, coord1, signal);
ebdd0606 389 }
58ceb8ca 390
391 }//online
7a0e5776 392 cnt++;
5379c4a3 393 if(!(cnt%10000)) AliDebug(AliQAv1::GetQADebugLevel(),Form(" %d raw digits read",cnt));
58ceb8ca 394 }//end next()
395 if(fkOnline)
396 {
397 ((TH1F*)(fAliITSQADataMakerRec->GetRawsData(4 + 260*4 +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])))->Fill(size/1024.);//KB
398 }
5379c4a3 399 AliDebug(AliQAv1::GetQADebugLevel(),Form("Event completed, %d raw digits read",cnt));
e41192d7 400 delete stream;
401 stream = NULL;
8b7e858c 402
403// if(fkOnline) {
404// AnalyseBNG(); // Analyse Baseline, Noise, Gain
405// AnalyseINJ(); // Analyse Injectors
406// }
407
58ceb8ca 408 delete []ddldata;
409 ddldata=NULL;
eca4fa66 410 return rv ;
7a0e5776 411}
ebdd0606 412
44ed7a66 413//____________________________________________________________________________
eca4fa66 414Int_t AliITSQASDDDataMakerRec::InitDigits()
44ed7a66 415{
fc89f88c 416
7555afef 417
44ed7a66 418 // Initialization for DIGIT data - SDD -
419 const Bool_t expert = kTRUE ;
420 const Bool_t image = kTRUE ;
eca4fa66 421 Int_t rv = 0 ;
422// fGenDigitsOffset = (fAliITSQADataMakerRec->fDigitsQAList[AliRecoParam::kDefault])->GetEntries();
44ed7a66 423 //fSDDhTask must be incremented by one unit every time a histogram is ADDED to the QA List
424 TH1F* h0=new TH1F("SDD DIGITS Module Pattern","SDD DIGITS Module Pattern",260,239.5,499.5); //hmod
425 h0->GetXaxis()->SetTitle("SDD Module Number");
426 h0->GetYaxis()->SetTitle("# DIGITS");
4a903927 427 rv = fAliITSQADataMakerRec->Add2DigitsList(h0,fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
44ed7a66 428 fSDDhDigitsTask ++;
4a903927 429 // printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
44ed7a66 430 TH1F* h1=new TH1F("SDD Anode Distribution","DIGITS Anode Distribution",512,-0.5,511.5); //hanocc
431 h1->GetXaxis()->SetTitle("Anode Number");
432 h1->GetYaxis()->SetTitle("# DIGITS");
4a903927 433 rv = fAliITSQADataMakerRec->Add2DigitsList(h1,1+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
44ed7a66 434 fSDDhDigitsTask ++;
4a903927 435 //printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
44ed7a66 436 TH1F* h2=new TH1F("SDD Tbin Distribution","DIGITS Tbin Distribution",256,-0.5,255.5); //htbocc
437 h2->GetXaxis()->SetTitle("Tbin Number");
438 h2->GetYaxis()->SetTitle("# DIGITS");
4a903927 439 rv = fAliITSQADataMakerRec->Add2DigitsList(h2,2+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
44ed7a66 440 fSDDhDigitsTask ++;
4a903927 441 //printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
44ed7a66 442 TH1F* h3=new TH1F("SDD ADC Counts Distribution","DIGITS ADC Counts Distribution",200,0.,1024.); //hsig
443 h3->GetXaxis()->SetTitle("ADC Value");
444 h3->GetYaxis()->SetTitle("# DIGITS");
4a903927 445 rv = fAliITSQADataMakerRec->Add2DigitsList(h3,3+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
44ed7a66 446 fSDDhDigitsTask ++;
4a903927 447 //printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
44ed7a66 448 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Digits histograms booked\n",fSDDhDigitsTask));
eca4fa66 449 return rv ;
44ed7a66 450}
451
452//____________________________________________________________________________
eca4fa66 453Int_t AliITSQASDDDataMakerRec::MakeDigits(TTree * digits)
44ed7a66 454{
7555afef 455
44ed7a66 456 // Fill QA for DIGIT - SDD -
fc89f88c 457 //AliITS *fITS = (AliITS*)gAlice->GetModule("ITS");
458 //fITS->SetTreeAddress();
459 //TClonesArray *iITSdigits = fITS->DigitsAddress(1);
460
461
eca4fa66 462 Int_t rv = 0 ;
463
fc89f88c 464 TBranch *branchD = digits->GetBranch("ITSDigitsSDD");
465
466 if (!branchD) {
467 AliError("can't get the branch with the ITS SDD digits !");
eca4fa66 468 return rv ;
44ed7a66 469 }
eca4fa66 470 // Check id histograms already created for this Event Specie
8b7e858c 471// if ( ! fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset) )
472// rv = InitDigits() ;
eca4fa66 473
fc89f88c 474 static TClonesArray statDigits("AliITSdigitSDD");
44ed7a66 475 TClonesArray *iITSdigits = &statDigits;
476 branchD->SetAddress(&iITSdigits);
fc89f88c 477
44ed7a66 478 for(Int_t i=0; i<260; i++){
479 Int_t nmod=i+240;
480 digits->GetEvent(nmod);
481 Int_t ndigits = iITSdigits->GetEntries();
4a903927 482 fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(nmod,ndigits);
7555afef 483
44ed7a66 484 for (Int_t idig=0; idig<ndigits; idig++) {
485 AliITSdigit *dig=(AliITSdigit*)iITSdigits->UncheckedAt(idig);
486 Int_t iz=dig->GetCoord1(); // cell number z
487 Int_t ix=dig->GetCoord2(); // cell number x
488 Int_t sig=dig->GetSignal();
4a903927 489 fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(iz);
490 fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(ix);
491 fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(sig);
44ed7a66 492 }
493 }
eca4fa66 494 return rv ;
44ed7a66 495}
496
ebdd0606 497//____________________________________________________________________________
eca4fa66 498Int_t AliITSQASDDDataMakerRec::InitRecPoints()
ebdd0606 499{
7555afef 500
8b7e858c 501 //AliInfo("Initialize SDD recpoints histos\n");
ebdd0606 502 // Initialization for RECPOINTS - SDD -
7d297381 503 const Bool_t expert = kTRUE ;
504 const Bool_t image = kTRUE ;
eca4fa66 505 Int_t rv = 0 ;
506// fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList[AliRecoParam::kDefault])->GetEntries();
ad300de9 507
80b9610c 508 Int_t nOnline=1;
ebdd0606 509 Int_t nOnline2=1;
510 Int_t nOnline3=1;
511 Int_t nOnline4=1;
80b9610c 512 Int_t nOnline5=1;
ebdd0606 513 if(fkOnline)
514 {
ebdd0606 515 nOnline=4;
516 nOnline2=28;
517 nOnline3=64;
518 nOnline4=14;
519 }
520
8b7e858c 521 //AliInfo(Form("fAliITSQADataMakerRec->GetEventSpecie() %d\n",fAliITSQADataMakerRec->GetEventSpecie()));
522 //AliInfo(Form("fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()] %d\n",fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]));
ebdd0606 523 TH1F *h0 = new TH1F("SDDLay3TotCh","Layer 3 total charge",1000/nOnline,-0.5, 499.5); //position number 0
524 h0->GetXaxis()->SetTitle("ADC value");
525 h0->GetYaxis()->SetTitle("Entries");
80b9610c 526 rv = fAliITSQADataMakerRec->Add2RecPointsList(h0, 0 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
ad300de9 527 fSDDhRecPointsTask++;
ebdd0606 528
529 TH1F *h1 = new TH1F("SDDLay4TotCh","Layer 4 total charge",1000/nOnline,-0.5, 499.5);//position number 1
530 h1->GetXaxis()->SetTitle("ADC value");
531 h1->GetYaxis()->SetTitle("Entries");
80b9610c 532 rv = fAliITSQADataMakerRec->Add2RecPointsList(h1, 1 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
ad300de9 533 fSDDhRecPointsTask++;
ebdd0606 534
535 char hisnam[50];
536 TH2F *h2 = new TH2F("SDDGlobalCoordDistribYX","YX Global Coord Distrib",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 2
537 h2->GetYaxis()->SetTitle("Y[cm]");
538 h2->GetXaxis()->SetTitle("X[cm]");
80b9610c 539 rv = fAliITSQADataMakerRec->Add2RecPointsList(h2,2+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);// NON expert image
ad300de9 540 fSDDhRecPointsTask++;
ebdd0606 541
542 TH2F *h3 = new TH2F("SDDGlobalCoordDistribRZ","RZ Global Coord Distrib",6400/nOnline3,-32,32,1400/nOnline4,12,26);//position number 3
543 h3->GetYaxis()->SetTitle("R[cm]");
544 h3->GetXaxis()->SetTitle("Z[cm]");
80b9610c 545 rv = fAliITSQADataMakerRec->Add2RecPointsList(h3,3+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);// NON expert image
ad300de9 546 fSDDhRecPointsTask++;
ebdd0606 547
548 TH2F *h4 = new TH2F("SDDGlobalCoordDistribL3PHIZ","#varphi Z Global Coord Distrib L3",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 4
549 h4->GetYaxis()->SetTitle("#phi[rad]");
550 h4->GetXaxis()->SetTitle("Z[cm]");
80b9610c 551 rv = fAliITSQADataMakerRec->Add2RecPointsList(h4,4+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
ad300de9 552 fSDDhRecPointsTask++;
ebdd0606 553
554 TH2F *h5 = new TH2F("SDDGlobalCoordDistribL4PHIZ","#varphi Z Global Coord Distrib L4",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 5
555 h5->GetYaxis()->SetTitle("#phi[rad]");
556 h5->GetXaxis()->SetTitle("Z[cm]");
80b9610c 557 rv = fAliITSQADataMakerRec->Add2RecPointsList(h5,5+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
ad300de9 558 fSDDhRecPointsTask++;
ebdd0606 559
560 TH1F *h6 = new TH1F("SDDModPatternRP","Modules pattern RP",fgknSDDmodules,239.5,499.5); //position number 6
561 h6->GetXaxis()->SetTitle("Module number"); //spd offset = 240
562 h6->GetYaxis()->SetTitle("Entries");
80b9610c 563 rv = fAliITSQADataMakerRec->Add2RecPointsList(h6,6 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 564 fSDDhRecPointsTask++;
58ceb8ca 565
ebdd0606 566 TH1F *h7 = new TH1F("SDDLadPatternL3RP","Ladder pattern L3 RP",14,0.5,14.5); //position number 7
567 h7->GetXaxis()->SetTitle("Ladder #, Layer 3");
568 h7->GetYaxis()->SetTitle("Entries");
80b9610c 569 rv = fAliITSQADataMakerRec->Add2RecPointsList(h7,7 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 570 fSDDhRecPointsTask++;
58ceb8ca 571
ebdd0606 572 TH1F *h8 = new TH1F("SDDLadPatternL4RP","Ladder pattern L4 RP",22,0.5,22.5); //position number 8
573 h8->GetXaxis()->SetTitle("Ladder #, Layer 4");
574 h8->GetYaxis()->SetTitle("Entries");
80b9610c 575 rv = fAliITSQADataMakerRec->Add2RecPointsList(h8,8 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 576 fSDDhRecPointsTask++;
58ceb8ca 577
ebdd0606 578 TH2F *h9 = new TH2F("SDDLocalCoordDistrib","Local Coord Distrib",1000/nOnline,-4,4,1000/nOnline,-4,4);//position number 9
579 h9->GetXaxis()->SetTitle("X local coord, drift, cm");
580 h9->GetYaxis()->SetTitle("Z local coord, anode, cm");
80b9610c 581 rv = fAliITSQADataMakerRec->Add2RecPointsList(h9,9 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 582 fSDDhRecPointsTask++;
58ceb8ca 583
584 //AliInfo("Create SDD recpoints histos\n");
585
586 TH1F *h10 = new TH1F("SDDrdistrib_Layer3" ,"SDD r distribution Layer3" ,100,14.,18.);//position number 10 (L3)
587 h10->GetXaxis()->SetTitle("r[cm]");
588 h10->GetXaxis()->CenterTitle();
589 h10->GetYaxis()->SetTitle("Entries");
80b9610c 590 rv = fAliITSQADataMakerRec->Add2RecPointsList(h10,10 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
58ceb8ca 591 fSDDhRecPointsTask++;
592
593 TH1F *h11 = new TH1F("SDDrdistrib_Layer4" ,"SDD r distribution Layer4" ,100,22.,26.);// and position number 11 (L4)
594 h11->GetXaxis()->SetTitle("r[cm]");
595 h11->GetXaxis()->CenterTitle();
596 h11->GetYaxis()->SetTitle("Entries");
80b9610c 597 rv = fAliITSQADataMakerRec->Add2RecPointsList(h11,11 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
58ceb8ca 598 fSDDhRecPointsTask++;
599
ebdd0606 600 for(Int_t iLay=0; iLay<=1; iLay++){
601 sprintf(hisnam,"SDDphidistrib_Layer%d",iLay+3);
602 TH1F *h12 = new TH1F(hisnam,hisnam,180,-TMath::Pi(),TMath::Pi());//position number 12 (L3) and position number 13 (L4)
603 h12->GetXaxis()->SetTitle("#varphi[rad]");
604 h12->GetXaxis()->CenterTitle();
605 h12->GetYaxis()->SetTitle("Entries");
80b9610c 606 rv = fAliITSQADataMakerRec->Add2RecPointsList(h12,iLay+12+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 607 fSDDhRecPointsTask++;
ebdd0606 608 }
58ceb8ca 609
610 for(Int_t iLay=0; iLay<=1; iLay++){
611 sprintf(hisnam,"SDDdrifttime_Layer%d",iLay+3);
80b9610c 612 TH1F *h14 = new TH1F(hisnam,hisnam,200/nOnline5,-0.5,9999.5);//position number 14 (L3) and position number 15 (L4)
613 h14->GetXaxis()->SetTitle("drift time[#mus]");
58ceb8ca 614 h14->GetXaxis()->CenterTitle();
615 h14->GetYaxis()->SetTitle("Entries");
80b9610c 616 rv = fAliITSQADataMakerRec->Add2RecPointsList(h14,iLay+14+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);// NON expert image
58ceb8ca 617 fSDDhRecPointsTask++;
618 }
619
ebdd0606 620 if(fkOnline)
621 {
58ceb8ca 622 TH2F *h16 = new TH2F("SDDGlobalCoordDistribYXFSE","YX Global Coord Distrib FSE",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 16
623 h16->GetYaxis()->SetTitle("Y[cm]");
624 h16->GetXaxis()->SetTitle("X[cm]");
80b9610c 625 rv = fAliITSQADataMakerRec->Add2RecPointsList(h16,16+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 626 fSDDhRecPointsTask++;
ebdd0606 627
58ceb8ca 628 TH2F *h17 = new TH2F("SDDGlobalCoordDistribRZFSE","RZ Global Coord Distrib FSE",Int_t(6400/nOnline3),-32,32,1400/nOnline4,12,26);//position number 17
629 h17->GetYaxis()->SetTitle("R[cm]");
630 h17->GetXaxis()->SetTitle("Z[cm]");
80b9610c 631 rv = fAliITSQADataMakerRec->Add2RecPointsList(h17,17+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
ad300de9 632 fSDDhRecPointsTask++;
ebdd0606 633
ebdd0606 634 }//online
58ceb8ca 635
5379c4a3 636 AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Recs histograms booked\n",fSDDhRecPointsTask));
58ceb8ca 637
eca4fa66 638 return rv ;
ebdd0606 639}
640
641//____________________________________________________________________________
eca4fa66 642Int_t AliITSQASDDDataMakerRec::MakeRecPoints(TTree * clustersTree)
7a0e5776 643{
ebdd0606 644 // Fill QA for RecPoints - SDD -
eca4fa66 645 Int_t rv = 0 ;
7555afef 646
ebdd0606 647 Int_t lay, lad, det;
8b7e858c 648 //AliInfo("get the branch with the ITS clusters !\n");
e62fe478 649 AliITSRecPointContainer* rpcont=AliITSRecPointContainer::Instance();
650 TClonesArray *recpoints = rpcont->FetchClusters(0,clustersTree);
651 if(!rpcont->GetStatusOK() || !rpcont->IsSDDActive()){
652 AliError("can't get SDD clusters !");
653 return rv;
ebdd0606 654 }
655
ebdd0606 656 Int_t npoints = 0;
657 Float_t cluglo[3]={0.,0.,0.};
658 if(fkOnline)
659 {
58ceb8ca 660 for(Int_t i=16;i<18;i++)
ebdd0606 661 {
8b7e858c 662 fAliITSQADataMakerRec->GetRecPointsData(i+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
ebdd0606 663 }
664 }
e62fe478 665 Int_t firMod=AliITSgeomTGeo::GetModuleIndex(3,1,1);
666 Int_t lasMod=AliITSgeomTGeo::GetModuleIndex(5,1,1);
667 for(Int_t module=firMod; module<lasMod;module++){
58ceb8ca 668 //AliInfo(Form("Module %d\n",module));
e62fe478 669 recpoints = rpcont->UncheckedGetClusters(module);
58ceb8ca 670 npoints += recpoints->GetEntries();
671 //AliInfo(Form("modnumb %d, npoints %d, total points %d\n",module, recpoints->GetEntries(),npoints));
80b9610c 672 //AliITSgeomTGeo::GetModuleId(module, lay, lad, det);
58ceb8ca 673 //AliInfo(Form("modnumb %d, lay %d, lad %d, det %d \n",module, lay, lad, det));
674
675 //AliInfo(Form("modnumb %d, entries %d\n",module, recpoints->GetEntries()));
676 for(Int_t j=0;j<recpoints->GetEntries();j++){
677 //AliInfo(Form("modnumb %d, entry %d \n",module, j));
80b9610c 678 AliITSRecPoint *recp = (AliITSRecPoint*)recpoints->At(j);
679 Int_t index = recp->GetDetectorIndex();
680 lay=recp->GetLayer();
681 Int_t modnumb=index+AliITSgeomTGeo::GetModuleIndex(lay+1,1,1);
682 //printf("modnumb %i\n",modnumb);
683 AliITSgeomTGeo::GetModuleId(modnumb, lay, lad, det);
684 fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(modnumb);//modpatternrp
58ceb8ca 685 recp->GetGlobalXYZ(cluglo);
686 Float_t rad=TMath::Sqrt(cluglo[0]*cluglo[0]+cluglo[1]*cluglo[1]);
687 Float_t phi=TMath::ATan2(cluglo[1],cluglo[0]);
688 Float_t drifttime=recp->GetDriftTime();
689 fAliITSQADataMakerRec->GetRecPointsData(9 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetDetLocalX(),recp->GetDetLocalZ());//local distribution
80b9610c 690 if(lay==3||lay==4)fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[0],cluglo[1]);//global distribution YX
58ceb8ca 691 fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],rad);//global distribution rz
692 if(fkOnline) {
693 fAliITSQADataMakerRec->GetRecPointsData(16 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[0],cluglo[1]);//global distribution YX FSE
694 fAliITSQADataMakerRec->GetRecPointsData(17 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],rad);//global distribution rz FSE
695 }
696 if(recp->GetLayer() == 2) {
697 fAliITSQADataMakerRec->GetRecPointsData(0 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetQ()) ;//total charge of layer 3
698 fAliITSQADataMakerRec->GetRecPointsData(7 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(lad);//lad pattern layer 3
699 fAliITSQADataMakerRec->GetRecPointsData(10 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(rad);//r distribution layer 3
700 fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(phi);// phi distribution layer 3
701 fAliITSQADataMakerRec->GetRecPointsData(4 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],phi);// zphi distribution layer
702 fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(drifttime);// time distribution layer 3
703 } else if(recp->GetLayer() == 3) {
704 fAliITSQADataMakerRec->GetRecPointsData(1 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetQ()) ;//total charge layer 4
705 fAliITSQADataMakerRec->GetRecPointsData(8 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(lad);//ladpatternlayer4
706 fAliITSQADataMakerRec->GetRecPointsData(11 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(rad);//r distribution
707 fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(phi);//phi distribution
708 fAliITSQADataMakerRec->GetRecPointsData(5 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],phi);// zphi distribution layer 4
709 fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(drifttime);// time distribution layer 4
710 }
711 }
712 }
58ceb8ca 713 return rv ;
ebdd0606 714}
715
ad300de9 716//_______________________________________________________________
717
80b9610c 718Int_t AliITSQASDDDataMakerRec::GetOffset(AliQAv1::TASKINDEX_t task, Int_t specie)
7a0e5776 719{
ad300de9 720 Int_t offset=0;
4e25ac79 721 if( task == AliQAv1::kRAWS )
7a0e5776 722 {
80b9610c 723 offset=fGenRawsOffset[specie];
7a0e5776 724 }
eca4fa66 725 else if(task == AliQAv1::kDIGITSR )
726 {
80b9610c 727 offset=fGenDigitsOffset[specie];
eca4fa66 728 }
729 else if( task == AliQAv1::kRECPOINTS )
730 {
80b9610c 731 offset=fGenRecPointsOffset[specie];
eca4fa66 732 }
ad300de9 733 return offset;
734}
735
736//_______________________________________________________________
737
8b7e858c 738void AliITSQASDDDataMakerRec::SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset, Int_t specie) {
eca4fa66 739 // Returns offset number according to the specified task
740 if( task == AliQAv1::kRAWS ) {
8b7e858c 741 fGenRawsOffset[specie]=offset;
eca4fa66 742 }
743 else if( task == AliQAv1::kDIGITSR ) {
4a903927 744 fGenDigitsOffset[specie]=offset;
eca4fa66 745 }
746 else if( task == AliQAv1::kRECPOINTS ) {
8b7e858c 747 fGenRecPointsOffset[specie]=offset;
eca4fa66 748 }
749}
750
751//_______________________________________________________________
752
4e25ac79 753Int_t AliITSQASDDDataMakerRec::GetTaskHisto(AliQAv1::TASKINDEX_t task)
7a0e5776 754{
ad300de9 755
7a0e5776 756 Int_t histotot=0;
ad300de9 757
4e25ac79 758 if( task == AliQAv1::kRAWS )
7a0e5776 759 {
760 histotot=fSDDhRawsTask ;
761 }
eca4fa66 762 else if(task == AliQAv1::kDIGITSR)
763 {
764 histotot=fSDDhDigitsTask;
765 }
766 else if( task == AliQAv1::kRECPOINTS )
767 {
768 histotot=fSDDhRecPointsTask;
769 }
8b7e858c 770 else {
771 AliInfo("No task has been selected. TaskHisto set to zero.\n");
772 }
ad300de9 773 return histotot;
e41192d7 774}
8b7e858c 775
776//_______________________________________________________________
777
778void AliITSQASDDDataMakerRec::AnalyseBNG()
779{
780
781// get file time for Previous test
782 AliInfo("AnalyseBNG\n");
25b66378 783 Int_t bngtimeBasPrevious;
80b9610c 784 FILE *filepinPreviousBas = fopen( "SDDbasHistos.time", "r" );
785 if(filepinPreviousBas) {
786 fscanf(filepinPreviousBas,"%d",&bngtimeBasPrevious);
787 fclose (filepinPreviousBas);
25b66378 788 } else
789 bngtimeBasPrevious = 0;
790 Int_t bngtimeBasCurrent = 0;
791 gSystem->Exec("perl -e '@d=localtime ((stat(shift))[9]); printf \"%02d%02d%02d%02d%02d\n\", $d[5]-100,$d[4]+1,$d[3],$d[2],$d[1]' SDDbasHistos.root > SDDbasHistos.time");
80b9610c 792 FILE *filepinBas = fopen( "SDDbasHistos.time", "r" );
793 fscanf(filepinBas,"%d",&bngtimeBasCurrent);
25b66378 794 if(bngtimeBasCurrent>bngtimeBasPrevious )AliInfo(Form("bngtimeBasCurrent %d, bngtimeBasPrevious %d\n",bngtimeBasCurrent,bngtimeBasPrevious));
795
796 Bool_t kAnalyseBas = kTRUE;
797 if(bngtimeBasCurrent <= bngtimeBasPrevious) kAnalyseBas = kFALSE;
798 if(kAnalyseBas) {
799 // new bng file found
800 bngtimeBasPrevious = bngtimeBasCurrent;
801 Bool_t kFilesExist = kTRUE;
802 TFile basFile("SDDbasHistos.root");
803 if(basFile.IsZombie()) kFilesExist = kFALSE;
804 if(kFilesExist) {
805 AnodeStatus();
806 AnalyseHistos(1); // Baseline
807 AnalyseHistos(2); // Uncorrected Noise
808 AnalyseHistos(3); // Common Mode Noise
809 AnalyseHistos(4); // Corrected Noise
810 gSystem->Exec("cp SDDbasHistos.root SDDbasHistosPrevious.root");
811 } else {
812 AliInfo("file SDDbasHistos.root not found \n");
813 }
814 }
80b9610c 815 fclose (filepinBas);
816// delete filepinBas;
25b66378 817
818 Int_t bngtimeGainPrevious;
80b9610c 819 FILE *filepinPrevious = fopen( "SDDgainHistos.time", "r" );
820 if(filepinPrevious) {
821 fscanf(filepinPrevious,"%d",&bngtimeGainPrevious);
822 fclose (filepinPrevious);
8b7e858c 823 } else
25b66378 824 bngtimeGainPrevious = 0;
825 Int_t bngtimeGainCurrent = 0;
826 gSystem->Exec("perl -e '@d=localtime ((stat(shift))[9]); printf \"%02d%02d%02d%02d%02d\n\", $d[5]-100,$d[4]+1,$d[3],$d[2],$d[1]' SDDgainHistos.root > SDDgainHistos.time");
80b9610c 827 FILE *filepin = fopen( "SDDgainHistos.time", "r" );
828 fscanf(filepin,"%d",&bngtimeGainCurrent);
25b66378 829 if(bngtimeGainCurrent>bngtimeGainPrevious )AliInfo(Form("bngtimeGainCurrent %d, bngtimeGainPrevious %d\n",bngtimeGainCurrent,bngtimeGainPrevious));
830
8b7e858c 831 Bool_t kAnalyse = kTRUE;
25b66378 832 if(bngtimeGainCurrent <= bngtimeGainPrevious) kAnalyse = kFALSE;
8b7e858c 833 if(kAnalyse) {
25b66378 834 // new bng file found
835 bngtimeGainPrevious = bngtimeGainCurrent;
8b7e858c 836 Bool_t kFilesExist = kTRUE;
25b66378 837 TFile gainFile("SDDgainHistos.root");
838 if(gainFile.IsZombie()) kFilesExist = kFALSE;
8b7e858c 839 if(kFilesExist) {
25b66378 840 AnalyseHistos(5); // Gain
841 gSystem->Exec("cp SDDgainHistos.root SDDgainHistosPrevious.root");
8b7e858c 842 } else {
25b66378 843 AliInfo("file SDDgainHistos.root not found \n");
8b7e858c 844 }
845 }
80b9610c 846 fclose (filepin);
847// delete filepin;
8b7e858c 848
849}
850
851//_______________________________________________________________
852
853void AliITSQASDDDataMakerRec::AnalyseINJ()
854{
855// get file time for last test
856
857 AliInfo("AnalyseINJ\n");
25b66378 858 Int_t injtimePrevious;
80b9610c 859 FILE *filepinPrevious = fopen( "SDDinjectHistos.time", "r" );
860 if(filepinPrevious) {
861 fscanf(filepinPrevious,"%d",&injtimePrevious);
862 fclose (filepinPrevious);
8b7e858c 863 } else
25b66378 864 injtimePrevious = 0;
865 Int_t injtimeCurrent = 0;
866 gSystem->Exec("perl -e '@d=localtime ((stat(shift))[9]); printf \"%02d%02d%02d%02d%02d\n\", $d[5]-100,$d[4]+1,$d[3],$d[2],$d[1]' SDDinjectHistos.root > SDDinjectHistos.time");
80b9610c 867 FILE *filepin = fopen( "SDDinjectHistos.time", "r" );
868 fscanf(filepin,"%d",&injtimeCurrent);
25b66378 869 if(injtimeCurrent>injtimePrevious )AliInfo(Form("injtimeCurrent %d, injtimePrevious %d\n",injtimeCurrent,injtimePrevious));
870
8b7e858c 871 Bool_t kAnalyse = kTRUE;
25b66378 872 if(injtimeCurrent <= injtimePrevious) kAnalyse = kFALSE;
8b7e858c 873 if(kAnalyse) {
874 // new inj file found
25b66378 875 injtimePrevious = injtimeCurrent;
8b7e858c 876 Bool_t kFilesExist = kTRUE;
25b66378 877 TFile gainFile("SDDinjectHistos.root");
878 if(gainFile.IsZombie()) kFilesExist = kFALSE;
879
8b7e858c 880 if(kFilesExist) {
881 AnalyseHistos(6); // Drift Speed
25b66378 882 gSystem->Exec("cp SDDinjectHistos.root SDDinjectHistosPrevious.root");
8b7e858c 883 } else {
25b66378 884 AliInfo("file(s) SDDinjectHistos.root not found \n");
8b7e858c 885 }
886 }
80b9610c 887 fclose (filepin);
888// delete filepin;
8b7e858c 889}
890
891//_______________________________________________________________
892
893void AliITSQASDDDataMakerRec::AnodeStatus()
894{
895 char *hnamePrevious = new char[50];
25b66378 896 fGoodAnodes = 0;
897
898 TFile basFilePrevious("SDDbasHistosPrevious.root");
899 if(!basFilePrevious.IsZombie()) {
900 for(Int_t ddl =0; ddl<fDDLModuleMap->GetNDDLs(); ddl++){
901 for(Int_t crx =0; crx<fDDLModuleMap->GetNModPerDDL(); crx++){
902 for(Int_t iside=0;iside<fgknSide;iside++){
903 Int_t moduleSDD = fDDLModuleMap->GetModuleNumber(ddl,crx);
904 //AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
905 sprintf(hnamePrevious,"hgood%02dc%02ds%d",ddl,crx,iside);
906 //AliInfo(Form("get histo %s\n",hnamePrevious));
907 TH1F *hgood = (TH1F *) basFilePrevious.Get(hnamePrevious);
908 if(!hgood) continue;
909 for(Int_t i=0; i<hgood->GetNbinsX();i++) {
58ceb8ca 910 fkAnodeMap[moduleSDD-fgkmodoffset][iside][i] = hgood->GetBinContent(i);
911 if(fkAnodeMap[moduleSDD-fgkmodoffset][iside][i]) fGoodAnodes++;
25b66378 912 }
913 delete hgood;
914 }
915 }
916 }
917 basFilePrevious.Close();
8b7e858c 918 }
8b7e858c 919 fGoodAnodesCurrent = 0;
920 fBadAnodesCurrent = 0;
921 char *hname = new char[50];
922 Int_t nChangedStatus = 0;
923 Bool_t CurrentAnodeMap[fgknSDDmodules][fgknSide][fgknAnode];
25b66378 924 TFile basFile("SDDbasHistos.root");
925 if(!basFile.IsZombie()) {
926 for(Int_t ddl =0; ddl<fDDLModuleMap->GetNDDLs(); ddl++){
927 for(Int_t crx =0; crx<fDDLModuleMap->GetNModPerDDL(); crx++){
928 for(Int_t iside=0;iside<fgknSide;iside++){
929 Int_t moduleSDD = fDDLModuleMap->GetModuleNumber(ddl,crx);
930 //AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
931 sprintf(hname,"hgood%02dc%02ds%d",ddl,crx,iside);
932 //AliInfo(Form("get histo %s\n",hname));
933 TH1F *hgood = (TH1F *) basFile.Get(hname);
934 if(!hgood) continue;
935 for(Int_t i=0; i<hgood->GetNbinsX();i++) {
936 CurrentAnodeMap[moduleSDD-fgkmodoffset][iside][i] = hgood->GetBinContent(i);
937 if(CurrentAnodeMap[moduleSDD-fgkmodoffset][iside][i]) fGoodAnodesCurrent++;
938 else fBadAnodesCurrent++;
58ceb8ca 939 if(CurrentAnodeMap[moduleSDD-fgkmodoffset][iside][i] != fkAnodeMap[moduleSDD-fgkmodoffset][iside][i]) {
940 fkAnodeMap[moduleSDD-fgkmodoffset][iside][i] = CurrentAnodeMap[moduleSDD-fgkmodoffset][iside][i];
25b66378 941 nChangedStatus++;
58ceb8ca 942 // AliWarning(Form("DDL %d, CRX %d, Side %d, Anode %d changed status to %d \n",ddl,crx,iside,i,fkAnodeMap[moduleSDD-fgkmodoffset][iside][i]));
25b66378 943 }
944 }
945 delete hgood;
946 }
947 }
948 }
949 basFile.Close();
8b7e858c 950 }
25b66378 951
8b7e858c 952 AliWarning(Form("Number of good anodes changed from %d to %d, that is %f %%\n",fGoodAnodes,fGoodAnodesCurrent,((Float_t) TMath::Abs(fGoodAnodes-fGoodAnodesCurrent))/(fBadAnodesCurrent+fGoodAnodesCurrent)));
953 if(fGoodAnodesCurrent != fGoodAnodes) {
954 fGoodAnodes = fGoodAnodesCurrent;
955 }
956 AliWarning(Form("Number of bad anodes changed from %d to %d, that is %f %%\n",fBadAnodes,fBadAnodesCurrent,((Float_t) TMath::Abs(fBadAnodes-fBadAnodesCurrent))/(fBadAnodesCurrent+fGoodAnodesCurrent)));
957 if(fBadAnodesCurrent != fBadAnodes) {
958 fBadAnodes = fBadAnodesCurrent;
959 }
960// delete hname;
961}
962
963//_______________________________________________________________
964
965void AliITSQASDDDataMakerRec::AnalyseHistos(Int_t type)
966{
967
25b66378 968 if(type < 1 || type > 6) {
969 AliWarning(Form("Wrong type (%d), must be between 1 and 6\n",type));
970 return;
971 }
972
8b7e858c 973 Double_t Current[fgknSDDmodules][fgknSide][fgknAnode];
974 char *hnamePrevious = new char[50];
80b9610c 975 TString *filenamePrevious=NULL;
8b7e858c 976
80b9610c 977 if(type < 5) filenamePrevious = new TString("SDDbasHistosPrevious.root");
978 else if(type == 5) filenamePrevious = new TString("SDDgainHistosPrevious.root");
979 else if(type == 6) filenamePrevious = new TString("SDDinjectHistosPrevious.root");
980 TFile *gainFilePrevious = new TFile(filenamePrevious->Data());
25b66378 981 if(!gainFilePrevious->IsZombie()) {
8b7e858c 982
25b66378 983 for(Int_t ddl =0; ddl<fDDLModuleMap->GetNDDLs(); ddl++){
984 for(Int_t crx =0; crx<fDDLModuleMap->GetNModPerDDL(); crx++){
8b7e858c 985 for(Int_t iside=0;iside<fgknSide;iside++){
986 Int_t moduleSDD = fDDLModuleMap->GetModuleNumber(ddl,crx);
987 //AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
988 if(type == 1) sprintf(hnamePrevious,"hbase%02dc%02ds%d",ddl,crx,iside);
989 else if(type == 2) sprintf(hnamePrevious,"hnois%02dc%02ds%d",ddl,crx,iside);
990 else if(type == 3) sprintf(hnamePrevious,"hcmn%02dc%02ds%d",ddl,crx,iside);
991 else if(type == 4) sprintf(hnamePrevious,"hcorn%02dc%02ds%d",ddl,crx,iside);
992 else if(type == 5) sprintf(hnamePrevious,"hgain%02dc%02ds%d",ddl,crx,iside);
993 else if(type == 6) sprintf(hnamePrevious,"hdrsp%02dc%02ds%d",ddl,crx,iside);
994 //AliInfo(Form("get histo %s\n",hnamePrevious));
995 TH1F *hhist = (TH1F *) gainFilePrevious->Get(hnamePrevious);
996 if(!hhist) continue;
997 for(Int_t i=0; i<hhist->GetNbinsX();i++) {
998 Current[moduleSDD-fgkmodoffset][iside][i] = hhist->GetBinContent(i);
999 }
1000 delete hhist;
1001 }
1002 }
25b66378 1003 }
1004 gainFilePrevious->Close();
1005 delete gainFilePrevious;
8b7e858c 1006 }
80b9610c 1007 delete filenamePrevious;
8b7e858c 1008
1009 Float_t xmin = 0.;
1010 Float_t xmax = 0;
1011 Int_t nbins = 1;
1012 TH1F *hDist = 0;
1013 TH1F *hDistDiff = 0;
1014 if(type == 1) {
1015 xmin = 0.;
1016 xmax = 500.;
1017 nbins = (Int_t)(xmax-xmin);
1018 hDist = new TH1F("hBaseline","Baseline",nbins,xmin,xmax);
1019 hDistDiff = new TH1F("hBaselineDiff","Baseline Difference",200,-100.,100.);
1020 } else if(type == 2) {
1021 xmin = 0.;
1022 xmax = 10.;
1023 nbins = (Int_t) (100.*(xmax-xmin));
1024 hDist = new TH1F("hNoiseUnc","Noise (before correction)",nbins,xmin,xmax);
1025 hDistDiff = new TH1F("hNoiseUncDiff","Noise (before correction) Difference",200,-10.,10.);
1026 } else if(type == 3) {
1027 xmin = 0.;
1028 xmax = 10.;
1029 nbins = (Int_t)( 100.*(xmax-xmin));
1030 hDist = new TH1F("hNoiseCMN","Noise (common mode)",nbins,xmin,xmax);
1031 hDistDiff = new TH1F("hNoiseCMNDiff","Noise (common mode) Difference",200,-10.,10.);
1032 } else if(type == 4) {
1033 xmin = 0.;
1034 xmax = 10.;
1035 nbins = (Int_t)(100.*(xmax-xmin));
1036 hDist = new TH1F("hNoiseCor","Noise (after correction)",nbins,xmin,xmax);
1037 hDistDiff = new TH1F("hNoiseCorDiff","Noise (after correction) Difference",200,-10.,10.);
1038 } else if(type == 5) {
1039 xmin = 0.;
1040 xmax = 5.;
1041 nbins = (Int_t)(100.*(xmax-xmin));
1042 hDist = new TH1F("hGain","Gain",nbins,xmin,xmax);
1043 hDistDiff = new TH1F("hGainDiff","Gain Difference",200,-10.,10.);
1044 } else if(type == 6) {
1045 xmin = 0.;
1046 xmax = 10.;
1047 nbins = (Int_t)(100.*(xmax-xmin));
1048 hDist = new TH1F("hDriftSpeed","Drift Speed",nbins,xmin,xmax);
1049 hDistDiff = new TH1F("hDriftSpeedDiff","Drift Speed Difference",200,-10.,10.);
1050 }
1051
1052 Float_t binw = (xmax-xmin)/nbins;
1053
80b9610c 1054 TString *filenamePrevious2=NULL;
8b7e858c 1055
80b9610c 1056 if(type < 5) filenamePrevious2 = new TString("SDDbasHistosPrevious.root");
1057 else if(type == 5) filenamePrevious2 = new TString("SDDgainHistosPrevious.root");
1058 else if(type == 6) filenamePrevious2 = new TString("SDDinjectHistosPrevious.root");
1059 TFile *gainFile = new TFile(filenamePrevious2->Data());
25b66378 1060 if(!gainFile->IsZombie()) {
1061
1062 for(Int_t ddl =0; ddl<fDDLModuleMap->GetNDDLs(); ddl++){
8b7e858c 1063 for(Int_t crx =0; crx<fDDLModuleMap->GetNModPerDDL(); crx++){
1064 for(Int_t iside=0;iside<fgknSide;iside++){
1065 Int_t moduleSDD = fDDLModuleMap->GetModuleNumber(ddl,crx);
1066 //AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
1067 if(type == 1) sprintf(hnamePrevious,"hbase%02dc%02ds%d",ddl,crx,iside);
1068 else if(type == 2) sprintf(hnamePrevious,"hnois%02dc%02ds%d",ddl,crx,iside);
1069 else if(type == 3) sprintf(hnamePrevious,"hcmn%02dc%02ds%d",ddl,crx,iside);
1070 else if(type == 4) sprintf(hnamePrevious,"hcorn%02dc%02ds%d",ddl,crx,iside);
1071 else if(type == 5) sprintf(hnamePrevious,"hgain%02dc%02ds%d",ddl,crx,iside);
1072 else if(type == 6) sprintf(hnamePrevious,"hdrsp%02dc%02ds%d",ddl,crx,iside);
1073 //AliInfo(Form("get histo %s\n",hname));
1074 TH1F *hhist = (TH1F *) gainFile->Get(hnamePrevious);
1075 if(!hhist) continue;
1076 for(Int_t i=0; i<hhist->GetNbinsX();i++) {
58ceb8ca 1077 if(!fkAnodeMap[moduleSDD-fgkmodoffset][iside][i]) continue;
8b7e858c 1078 hDist->Fill(hhist->GetBinContent(i));
1079 hDistDiff->Fill(hhist->GetBinContent(i)-Current[moduleSDD-fgkmodoffset][iside][i]);
1080 }
1081 delete hhist;
1082 }
1083 }
25b66378 1084 }
1085 gainFile->Close();
1086 delete gainFile;
8b7e858c 1087 }
80b9610c 1088 delete filenamePrevious2;
8b7e858c 1089
8b7e858c 1090 TF1 ff("ff", "gaus", xmin+0.1, xmax-0.1);
1091 hDist->Fit("ff","NWR");
1092// hDist->Fit("gaus","","",xmin+0.1, xmax-0.1);
1093// Float_t ChiSquared = (Float_t) ff.GetChisquare();
1094// Int_t NDF = ff.GetNumberFitPoints() - ff.GetNpar();
1095 Float_t average = (Float_t) ff.GetParameter(1);
1096 Float_t sigma = (Float_t) ff.GetParameter(2);
1097// Float_t mean = hDist->GetMean();
1098// Float_t rms = hDist->GetRMS();
1099 Int_t badB = 0;
1100 for(Int_t i=0; i<hDist->GetNbinsX();i++) {
1101// if(type < 6)
1102 if(TMath::Abs(i*binw-average) > 4.*sigma) badB += (Int_t)hDist->GetBinContent(i);
1103// else
1104// if(TMath::Abs(i-mean) > 4*rms) badB += hDist->GetBinContent(i);
1105 }
25b66378 1106 Double_t denomi = hDist->GetEntries();
1107 if(denomi == 0) {
1108 denomi = 1;
1109 badB = 0;
1110 }
8b7e858c 1111 if(type == 1) {
25b66378 1112 AliInfo(Form("Number of anodes with baseline out of 4*sigma from average: %d, %f%%\n",badB,100.*((Float_t) badB)/denomi));
8b7e858c 1113 } else if(type == 2) {
25b66378 1114 AliInfo(Form("Number of anodes with uncorrected noise out of 4*sigma from average: %d, %f%%\n",badB,100.*((Float_t) badB)/denomi));
8b7e858c 1115 } else if(type == 3) {
25b66378 1116 AliInfo(Form("Number of anodes with common mode noise out of 4*sigma from average: %d, %f%%\n",badB,100.*((Float_t) badB)/denomi));
8b7e858c 1117 } else if(type == 4) {
25b66378 1118 AliInfo(Form("Number of anodes with corrected noise out of 4*sigma from average: %d, %f%%\n",badB,100.*((Float_t) badB)/denomi));
8b7e858c 1119 } else if(type == 5) {
25b66378 1120 AliInfo(Form("Number of anodes with gain out of 4*sigma from average: %d, %f%%\n",badB,100.*((Float_t) badB)/denomi));
8b7e858c 1121 } else if(type == 6) {
1122 Int_t badspeed = (Int_t)hDist->GetBinContent(1);
1123 AliInfo(Form("Number of anodes with drift speed equal to 0: %d\n",badspeed));
25b66378 1124 AliInfo(Form("Number of anodes with drift speed out of 4*sigma from average: %d, %f%%\n",badB-badspeed,100.*((Float_t) (badB-badspeed))/(denomi-badspeed)));
8b7e858c 1125 }
1126
1127 TH1F *hDistHistoryCurrent = NULL;
1128 TH1F *hDistHistoryPrevious = NULL;
1129
25b66378 1130 TFile *gainHistoryFile=NULL;
1131 if(type < 5)
1132 gainHistoryFile = new TFile("SDDbasHistory.root","UPDATE");
1133 else if(type ==5)
8b7e858c 1134 gainHistoryFile = new TFile("SDDgainHistory.root","UPDATE");
25b66378 1135 else if(type == 6)
8b7e858c 1136 gainHistoryFile = new TFile("SDDinjectHistory.root","UPDATE");
1137 hDist->Write();
1138 hDistDiff->Write();
80b9610c 1139
8b7e858c 1140 //AliInfo("SDDgainHistory.root file opened\n");
1141 if(!gainHistoryFile->IsZombie()) {
80b9610c 1142 if(type == 1) {
1143 hDistHistoryPrevious = (TH1F *) gainHistoryFile->Get("hBaselineHistory");
1144 }
1145 else if(type == 2){
1146 hDistHistoryPrevious = (TH1F *) gainHistoryFile->Get("hNoiseUncHistory");
1147 }
1148 else if(type == 3) {
1149 hDistHistoryPrevious = (TH1F *) gainHistoryFile->Get("hNoiseCMNHistory");
1150 }
1151 else if(type == 4) {
1152 hDistHistoryPrevious = (TH1F *) gainHistoryFile->Get("hNoiseCorHistory");
1153 }
1154 else if(type == 5) {
1155 hDistHistoryPrevious = (TH1F *) gainHistoryFile->Get("hGainHistory");
1156 }
1157 else if(type == 6){
1158 hDistHistoryPrevious = (TH1F *) gainHistoryFile->Get("hDriftSpeedHistory");
1159 }
1160 Char_t newname[30];
1161 if(hDistHistoryPrevious){
1162 sprintf(newname,"%sPrev",hDistHistoryPrevious->GetName());
1163 hDistHistoryPrevious->SetName(newname);
1164 sprintf(newname,"%sPrev",hDistHistoryPrevious->GetTitle());
1165 hDistHistoryPrevious->SetTitle(newname);
1166 }
8b7e858c 1167 //AliInfo(Form("hDistHistoryPrevious %x\n",hDistHistoryPrevious));
80b9610c 1168
1169
8b7e858c 1170 if(!hDistHistoryPrevious) {
25b66378 1171 if(type == 1) hDistHistoryCurrent = new TH1F("hBaselineHistory","Average Baseline History",2,0,2);
1172 else if(type == 2) hDistHistoryCurrent = new TH1F("hNoiseUncHistory","Average Uncorrected Noise History",2,0,2);
1173 else if(type == 3) hDistHistoryCurrent = new TH1F("hNoiseCMNHistory","Average Common Mode Noise History",2,0,2);
1174 else if(type == 4) hDistHistoryCurrent = new TH1F("hNoiseCorHistory","Average Corrected Noise History",2,0,2);
1175 else if(type == 5) hDistHistoryCurrent = new TH1F("hGainHistory","Average Gain History",2,0,2);
1176 else if(type == 6) hDistHistoryCurrent = new TH1F("hDriftSpeedHistory","Average Drift Speed History",2,0,2);
8b7e858c 1177 //AliInfo(Form("hDistHistoryCurrent 1 %x\n",hDistHistoryCurrent));
1178// if(type < 6) {
1179 hDistHistoryCurrent->SetBinContent(1,average);
1180 hDistHistoryCurrent->SetBinError(1,sigma);
1181/*
1182 } else {
1183 hDistHistoryCurrent->SetBinContent(1,mean);
1184 hDistHistoryCurrent->SetBinError(1,rms);
1185 }
1186*/
1187 } else {
1188 if(type == 1) hDistHistoryCurrent = new TH1F("hBaselineHistory","Average Baseline History",hDistHistoryPrevious->GetNbinsX()+1,0,hDistHistoryPrevious->GetNbinsX()+1);
1189 else if(type == 2) hDistHistoryCurrent = new TH1F("hNoiseUncHistory","Average Uncorrected Noise History",hDistHistoryPrevious->GetNbinsX()+1,0,hDistHistoryPrevious->GetNbinsX()+1);
1190 else if(type == 3) hDistHistoryCurrent = new TH1F("hNoiseCMNHistory","Average Common Mode Noise History",hDistHistoryPrevious->GetNbinsX()+1,0,hDistHistoryPrevious->GetNbinsX()+1);
1191 else if(type == 4) hDistHistoryCurrent = new TH1F("hNoiseCorHistory","Average Corrected Noise History",hDistHistoryPrevious->GetNbinsX()+1,0,hDistHistoryPrevious->GetNbinsX()+1);
1192 else if(type == 5) hDistHistoryCurrent = new TH1F("hGainHistory","Average Gain History",hDistHistoryPrevious->GetNbinsX()+1,0,hDistHistoryPrevious->GetNbinsX()+1);
1193 else if(type == 6) hDistHistoryCurrent = new TH1F("hDriftSpeedHistory","Average Drift Speed History",hDistHistoryPrevious->GetNbinsX()+1,0,hDistHistoryPrevious->GetNbinsX()+1);
1194 //AliInfo(Form("hBaselineHistory 2 %x\n",hDistHistory));
1195 for(Int_t i=0;i<hDistHistoryPrevious->GetNbinsX();i++) {
1196 hDistHistoryCurrent->SetBinContent(i,hDistHistoryPrevious->GetBinContent(i));
1197 hDistHistoryCurrent->SetBinError(i,hDistHistoryPrevious->GetBinError(i));
1198 }
1199 hDistHistoryCurrent->SetBinContent(hDistHistoryPrevious->GetNbinsX(),average);
1200 hDistHistoryCurrent->SetBinError(hDistHistoryPrevious->GetNbinsX(),sigma);
1201 }
80b9610c 1202
8b7e858c 1203 }
1204 hDistHistoryCurrent->Write();
1205 gainHistoryFile->Close();
1206 delete gainHistoryFile;
80b9610c 1207 //delete hname;
8b7e858c 1208 delete hDist;
1209 delete hDistDiff;
80b9610c 1210
1211 //if(hDistHistoryCurrent) delete hDistHistoryCurrent;
1212 //if(hDistHistoryPrevious) delete hDistHistoryPrevious;
58ceb8ca 1213}
1214
1215//_______________________________________________________________
1216
1217
1218void AliITSQASDDDataMakerRec::CreateTheMap()
1219{
8b7e858c 1220
58ceb8ca 1221 AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
1222 Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
1223 if(!ddlMapSDD)
1224 {
1225 AliError("Calibration object retrieval failed! SDD will not be processed");
1226 fDDLModuleMap = NULL;
1227 //return rv;
1228 }
1229 fDDLModuleMap = (AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
1230 if(!cacheStatus)ddlMapSDD->SetObject(NULL);
1231 ddlMapSDD->SetOwner(kTRUE);
1232 if(!cacheStatus)
1233 {
1234 delete ddlMapSDD;
1235 }
1236 AliInfo("DDL Map Created\n ");
1237}