]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCDigitizer.cxx
Adding out of range protection (Marian)
[u/mrichter/AliRoot.git] / TPC / AliTPCDigitizer.cxx
CommitLineData
3c038d07 1/**************************************************************************
2 * Copyright(c) 1998-2000, 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
88cb7938 16/* $Id$ */
d37f8c34 17
f94f8f87 18/*
19 Class for creating of the sumable digits and digits from MC data
20 //
21 The input : ideal signals (Hits->Diffusion->Attachment -Ideal signal)
22 The output: raw digits
23
24 Effect implemented:
25 1. Pad by pad gain map
26 2. Noise map
27 3. The dead channels identified - zerro noise for corresponding pads
28 In this case the outpu equal zerro
29
30*/
31
32
33
34
d37f8c34 35#include <stdlib.h>
3c038d07 36#include <TTree.h>
37#include <TObjArray.h>
38#include <TFile.h>
39#include <TDirectory.h>
19364939 40#include <Riostream.h>
3c038d07 41
42#include "AliTPCDigitizer.h"
43
44#include "AliTPC.h"
45#include "AliTPCParam.h"
7a09f434 46#include "AliTPCParamSR.h"
3c038d07 47#include "AliRun.h"
48#include "AliPDG.h"
49#include "AliRunDigitizer.h"
50#include "AliSimDigits.h"
f77f13c8 51#include "AliLog.h"
3c038d07 52
13116aec 53#include "AliTPCcalibDB.h"
54#include "AliTPCCalPad.h"
55#include "AliTPCCalROC.h"
56
3c038d07 57ClassImp(AliTPCDigitizer)
58
59//___________________________________________
179c6296 60 AliTPCDigitizer::AliTPCDigitizer() :AliDigitizer(),fDebug(0)
3c038d07 61{
179c6296 62 //
3c038d07 63// Default ctor - don't use it
179c6296 64//
65
3c038d07 66}
67
68//___________________________________________
69AliTPCDigitizer::AliTPCDigitizer(AliRunDigitizer* manager)
179c6296 70 :AliDigitizer(manager),fDebug(0)
3c038d07 71{
179c6296 72 //
3c038d07 73// ctor which should be used
179c6296 74//
f77f13c8 75 AliDebug(2,"(AliRunDigitizer* manager) was processed");
3c038d07 76}
77
78//------------------------------------------------------------------------
79AliTPCDigitizer::~AliTPCDigitizer()
80{
81// Destructor
82}
83
84
85
86//------------------------------------------------------------------------
87Bool_t AliTPCDigitizer::Init()
88{
89// Initialization
90
91 return kTRUE;
92}
93
94
95//------------------------------------------------------------------------
96void AliTPCDigitizer::Exec(Option_t* option)
f648982e 97{
98 ExecFast(option);
99}
100//------------------------------------------------------------------------
101void AliTPCDigitizer::ExecFast(Option_t* option)
3c038d07 102{
103
104 // merge input tree's with summable digits
105 //output stored in TreeTPCD
7a09f434 106 char s[100];
107 char ss[100];
3c038d07 108 TString optionString = option;
109 if (optionString.Data() == "deb") {
110 cout<<"AliTPCDigitizer::Exec: called with option deb "<<endl;
111 fDebug = 3;
112 }
113 //get detector and geometry
88cb7938 114
115
116 AliRunLoader *rl, *orl;
117 AliLoader *gime, *ogime;
118
119 if (gAlice == 0x0)
120 {
121 Warning("ExecFast","gAlice is NULL. Loading from input 0");
122 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
123 if (rl == 0x0)
124 {
125 Error("ExecFast","Can not find Run Loader for input 0. Can not proceed.");
126 return;
127 }
128 rl->LoadgAlice();
129 rl->GetAliRun();
130 }
3c038d07 131 AliTPC *pTPC = (AliTPC *) gAlice->GetModule("TPC");
132 AliTPCParam * param = pTPC->GetParam();
7a09f434 133
134 sprintf(s,param->GetTitle());
135 sprintf(ss,"75x40_100x60");
136 if(strcmp(s,ss)==0){
137 printf("2 pad-length geom hits with 3 pad-lenght geom digits...\n");
138 delete param;
139 param=new AliTPCParamSR();
140 }
141 else{
142 sprintf(ss,"75x40_100x60_150x60");
143 if(strcmp(s,ss)!=0) {
144 printf("No TPC parameters found...\n");
145 exit(2);
146 }
147 }
148
407ff276 149 pTPC->GenerNoise(500000); //create teble with noise
407ff276 150 //
151 Int_t nInputs = fManager->GetNinputs();
152 Int_t * masks = new Int_t[nInputs];
153 for (Int_t i=0; i<nInputs;i++)
154 masks[i]= fManager->GetMask(i);
155 Short_t **pdig= new Short_t*[nInputs]; //pointers to the expanded digits array
156 Int_t **ptr= new Int_t*[nInputs]; //pointers to teh expanded tracks array
4df28b43 157 Bool_t *active= new Bool_t[nInputs]; //flag for active input segments
407ff276 158
88cb7938 159
3c038d07 160 //create digits array for given sectors
f648982e 161 // make indexes
88cb7938 162
407ff276 163 AliSimDigits ** digarr = new AliSimDigits*[nInputs];
88cb7938 164 for (Int_t i1=0;i1<nInputs; i1++)
165 {
166 digarr[i1]=0;
167 // intree[i1]
168 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i1));
169 gime = rl->GetLoader("TPCLoader");
170 gime->LoadSDigits("read");
171 TTree * treear = gime->TreeS();
172
173 if (!treear)
174 {
175 cerr<<"AliTPCDigitizer: Input tree with SDigits not found in"
176 <<" input "<< i1<<endl;
177 return;
178 }
88cb7938 179
180 if (treear->GetIndex()==0)
181 treear->BuildIndex("fSegmentID","fSegmentID");
182 treear->GetBranch("Segment")->SetAddress(&digarr[i1]);
12d8d654 183 }
88cb7938 184
3c038d07 185
186 //create branch's in TPC treeD
187 AliSimDigits * digrow = new AliSimDigits;
88cb7938 188
189 orl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
190 ogime = orl->GetLoader("TPCLoader");
191
192 TTree * tree = ogime->TreeD();
193 if (tree == 0x0)
194 {
195 ogime->MakeTree("D");
196 tree = ogime->TreeD();
197 }
170950c3 198 tree->Branch("Segment","AliSimDigits",&digrow);
3c038d07 199 //
200
407ff276 201 param->SetZeroSup(2);
202
f648982e 203 Int_t zerosup = param->GetZeroSup();
13116aec 204 AliTPCCalPad * gainTPC = AliTPCcalibDB::Instance()->GetPadGainFactor();
1ac191a6 205 AliTPCCalPad * noiseTPC = AliTPCcalibDB::Instance()->GetPadNoise();
f648982e 206 //
3c038d07 207 //Loop over segments of the TPC
208
4df28b43 209 for (Int_t segmentID=0; segmentID<param->GetNRowsTotal(); segmentID++)
88cb7938 210 {
4df28b43 211 Int_t sec, row;
212 if (!param->AdjustSectorRow(segmentID,sec,row))
213 {
214 cerr<<"AliTPC warning: invalid segment ID ! "<<segmentID<<endl;
215 continue;
216 }
13116aec 217 AliTPCCalROC * gainROC = gainTPC->GetCalROC(sec); // pad gains per given sector
1ac191a6 218 AliTPCCalROC * noiseROC = noiseTPC->GetCalROC(sec); // noise per given sector
4df28b43 219 digrow->SetID(segmentID);
220
221 Int_t nrows = 0;
222 Int_t ncols = 0;
223
224 Bool_t digitize = kFALSE;
225 for (Int_t i=0;i<nInputs; i++)
88cb7938 226 {
227
228 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i));
229 gime = rl->GetLoader("TPCLoader");
230
4df28b43 231 if (gime->TreeS()->GetEntryWithIndex(segmentID,segmentID) >= 0) {
232 digarr[i]->ExpandBuffer();
233 digarr[i]->ExpandTrackBuffer();
234 nrows = digarr[i]->GetNRows();
235 ncols = digarr[i]->GetNCols();
236 active[i] = kTRUE;
237 if (!fRegionOfInterest || (i == 0)) digitize = kTRUE;
238 } else {
239 active[i] = kFALSE;
240 }
241 if (fRegionOfInterest && !digitize) break;
88cb7938 242 }
4df28b43 243 if (!digitize) continue;
3c038d07 244
3c038d07 245 digrow->Allocate(nrows,ncols);
246 digrow->AllocateTrack(3);
247
407ff276 248 Float_t q=0;
249 Int_t label[1000]; //stack for 300 events
250 Int_t labptr = 0;
251
f648982e 252 Int_t nElems = nrows*ncols;
253
88cb7938 254 for (Int_t i=0;i<nInputs; i++)
4df28b43 255 if (active[i]) {
88cb7938 256 pdig[i] = digarr[i]->GetDigits();
257 ptr[i] = digarr[i]->GetTracks();
4df28b43 258 }
88cb7938 259
407ff276 260 Short_t *pdig1= digrow->GetDigits();
261 Int_t *ptr1= digrow->GetTracks() ;
262
f648982e 263
407ff276 264
88cb7938 265 for (Int_t elem=0;elem<nElems; elem++)
266 {
267
268 q=0;
269 labptr=0;
270 // looop over digits
4df28b43 271 for (Int_t i=0;i<nInputs; i++) if (active[i])
88cb7938 272 {
273 // q += digarr[i]->GetDigitFast(rows,col);
274 q += *(pdig[i]);
275
276 for (Int_t tr=0;tr<3;tr++)
277 {
278 // Int_t lab = digarr[i]->GetTrackIDFast(rows,col,tr);
279 Int_t lab = ptr[i][tr*nElems];
280 if ( (lab > 1) && *(pdig[i])>zerosup)
281 {
282 label[labptr]=lab+masks[i];
283 labptr++;
284 }
285 }
286 pdig[i]++;
287 ptr[i]++;
288 }
289 q/=16.; //conversion factor
13116aec 290 Float_t gain = gainROC->GetValue(row,elem/nrows); // get gain for given - pad-row pad
ebf9a79e 291 //if (gain<0.5){
292 //printf("problem\n");
293 //}
13116aec 294 q*= gain;
1ac191a6 295 Float_t noisePad = noiseROC->GetValue(row,elem/nrows);
88cb7938 296 // Float_t noise = gRandom->Gaus(0,param->GetNoise()*param->GetNoiseNormFac());
297 Float_t noise = pTPC->GetNoise();
1ac191a6 298 q+=noise*noisePad;
3c038d07 299 q=TMath::Nint(q);
88cb7938 300 if (q > zerosup)
301 {
e93a083a 302 if(q >= param->GetADCSat()) q = (Short_t)(param->GetADCSat() - 1);
88cb7938 303 //digrow->SetDigitFast((Short_t)q,rows,col);
304 *pdig1 =Short_t(q);
305 for (Int_t tr=0;tr<3;tr++)
306 {
307 if (tr<labptr)
308 ptr1[tr*nElems] = label[tr];
309 }
310 }
311 pdig1++;
312 ptr1++;
313 }
407ff276 314
3c038d07 315 digrow->CompresBuffer(1,zerosup);
316 digrow->CompresTrackBuffer(1);
317 tree->Fill();
318 if (fDebug>0) cerr<<sec<<"\t"<<row<<"\n";
4df28b43 319 } //for (Int_t n=0; n<param->GetNRowsTotal(); n++)
88cb7938 320
321
322 orl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
323 ogime = orl->GetLoader("TPCLoader");
324 ogime->WriteDigits("OVERWRITE");
325
326 //fManager->GetTreeDTPC()->Write(0,TObject::kOverwrite);
327
3c038d07 328 delete digrow;
407ff276 329 for (Int_t i1=0;i1<nInputs; i1++) delete digarr[i1];
330 delete []masks;
4df28b43 331 delete []pdig;
332 delete []ptr;
333 delete []active;
334 delete []digarr;
3c038d07 335}
336
f648982e 337
338
339//------------------------------------------------------------------------
340void AliTPCDigitizer::ExecSave(Option_t* option)
341{
342
343 // merge input tree's with summable digits
344 //output stored in TreeTPCD
345
346 TString optionString = option;
347 if (optionString.Data() == "deb") {
348 cout<<"AliTPCDigitizer::Exec: called with option deb "<<endl;
349 fDebug = 3;
350 }
351 //get detector and geometry
88cb7938 352 AliRunLoader *rl, *orl;
353 AliLoader *gime, *ogime;
354
355
356 orl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
357 ogime = orl->GetLoader("TPCLoader");
358
359 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
360 gime = rl->GetLoader("TPCLoader");
361
362 rl->LoadgAlice();
363 AliRun* alirun = rl->GetAliRun();
364
365 AliTPC *pTPC = (AliTPC *) alirun->GetModule("TPC");
f648982e 366 AliTPCParam * param = pTPC->GetParam();
367 pTPC->GenerNoise(500000); //create teble with noise
368 printf("noise %f \n", param->GetNoise()*param->GetNoiseNormFac());
369 //
370 Int_t nInputs = fManager->GetNinputs();
371 Int_t * masks = new Int_t[nInputs];
372 for (Int_t i=0; i<nInputs;i++)
373 masks[i]= fManager->GetMask(i);
f648982e 374
f648982e 375 AliSimDigits ** digarr = new AliSimDigits*[nInputs];
88cb7938 376 for (Int_t i1=0;i1<nInputs; i1++)
377 {
f648982e 378 digarr[i1]=0;
379 // intree[i1]
88cb7938 380 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i1));
381 gime = rl->GetLoader("TPCLoader");
382
383 TTree * treear = gime->TreeS();
f648982e 384 TBranch * br = treear->GetBranch("fSegmentID");
385 if (br) br->GetFile()->cd();
f648982e 386 if (!treear) {
387 cerr<<" TPC - not existing input = \n"<<i1<<" ";
388 }
f648982e 389 treear->GetBranch("Segment")->SetAddress(&digarr[i1]);
f648982e 390 }
88cb7938 391
392 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
393 gime = rl->GetLoader("TPCLoader");
394 Stat_t nentries = gime->TreeS()->GetEntries();
f648982e 395
396
397 //create branch's in TPC treeD
398 AliSimDigits * digrow = new AliSimDigits;
88cb7938 399 TTree * tree = ogime->TreeD();
400
f648982e 401 tree->Branch("Segment","AliSimDigits",&digrow);
f648982e 402 param->SetZeroSup(2);
403
404 Int_t zerosup = param->GetZeroSup();
405 //Loop over segments of the TPC
406
13116aec 407 AliTPCCalPad * gainTPC = AliTPCcalibDB::Instance()->GetPadGainFactor();
1ac191a6 408 AliTPCCalPad * noiseTPC = AliTPCcalibDB::Instance()->GetPadNoise();
f648982e 409 for (Int_t n=0; n<nentries; n++) {
88cb7938 410 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
411 gime = rl->GetLoader("TPCLoader");
412 gime->TreeS()->GetEvent(n);
413
f648982e 414 digarr[0]->ExpandBuffer();
415 digarr[0]->ExpandTrackBuffer();
13116aec 416
417
f648982e 418 for (Int_t i=1;i<nInputs; i++){
88cb7938 419// fManager->GetInputTreeTPCS(i)->GetEntryWithIndex(digarr[0]->GetID(),digarr[0]->GetID());
420 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i));
421 gime = rl->GetLoader("TPCLoader");
422 gime->TreeS()->GetEntryWithIndex(digarr[0]->GetID(),digarr[0]->GetID());
f648982e 423 digarr[i]->ExpandBuffer();
424 digarr[i]->ExpandTrackBuffer();
425 if ((digarr[0]->GetID()-digarr[i]->GetID())>0)
88cb7938 426 printf("problem\n");
f648982e 427
428 }
429
430 Int_t sec, row;
431 if (!param->AdjustSectorRow(digarr[0]->GetID(),sec,row)) {
432 cerr<<"AliTPC warning: invalid segment ID ! "<<digarr[0]->GetID()<<endl;
433 continue;
434 }
435
13116aec 436 AliTPCCalROC * gainROC = gainTPC->GetCalROC(sec); // pad gains per given sector
1ac191a6 437 AliTPCCalROC * noiseROC = noiseTPC->GetCalROC(sec); // noise per given sector
f648982e 438 digrow->SetID(digarr[0]->GetID());
439
440 Int_t nrows = digarr[0]->GetNRows();
441 Int_t ncols = digarr[0]->GetNCols();
442 digrow->Allocate(nrows,ncols);
443 digrow->AllocateTrack(3);
444
445 Float_t q=0;
446 Int_t label[1000]; //stack for 300 events
447 Int_t labptr = 0;
448
449
450
451 for (Int_t rows=0;rows<nrows; rows++){
452 for (Int_t col=0;col<ncols; col++){
453
88cb7938 454 q=0;
455 labptr=0;
456 // looop over digits
f648982e 457 for (Int_t i=0;i<nInputs; i++){
88cb7938 458 q += digarr[i]->GetDigitFast(rows,col);
f648982e 459 //q += *(pdig[i]);
88cb7938 460
f648982e 461 for (Int_t tr=0;tr<3;tr++) {
88cb7938 462 Int_t lab = digarr[i]->GetTrackIDFast(rows,col,tr);
463 //Int_t lab = ptr[i][tr*nElems];
f648982e 464 if ( (lab > 1) ) {
465 label[labptr]=lab+masks[i];
466 labptr++;
88cb7938 467 }
f648982e 468 }
88cb7938 469 // pdig[i]++;
470 //ptr[i]++;
471
f648982e 472 }
88cb7938 473 q/=16.; //conversion factor
474 // Float_t noise = gRandom->Gaus(0,param->GetNoise()*param->GetNoiseNormFac());
13116aec 475 Float_t gain = gainROC->GetValue(row,col);
476 q*= gain;
1ac191a6 477 Float_t noisePad = noiseROC->GetValue(row, col);
478
88cb7938 479 Float_t noise = pTPC->GetNoise();
1ac191a6 480 q+=noise*noisePad;
633fa37f 481
f648982e 482 q=TMath::Nint(q);
483 if (q > zerosup){
88cb7938 484
e93a083a 485 if(q >= param->GetADCSat()) q = (Short_t)(param->GetADCSat() - 1);
88cb7938 486 digrow->SetDigitFast((Short_t)q,rows,col);
487 // *pdig1 =Short_t(q);
488 for (Int_t tr=0;tr<3;tr++){
489 if (tr<labptr)
490 ((AliSimDigits*)digrow)->SetTrackIDFast(label[tr],rows,col,tr);
491 //ptr1[tr*nElems] = label[tr];
492 //else
493 // ((AliSimDigits*)digrow)->SetTrackIDFast(-1,rows,col,tr);
494 // ptr1[tr*nElems] = 1;
495 }
496 }
497 //pdig1++;
498 //ptr1++;
f648982e 499 }
500 }
501
502 digrow->CompresBuffer(1,zerosup);
503 digrow->CompresTrackBuffer(1);
504 tree->Fill();
505 if (fDebug>0) cerr<<sec<<"\t"<<row<<"\n";
506 }
88cb7938 507// printf("end TPC merging - end -Tree %s\t%p\n",fManager->GetInputTreeH(0)->GetName(),fManager->GetInputTreeH(0)->GetListOfBranches()->At(3));
508 //fManager->GetTreeDTPC()->Write(0,TObject::kOverwrite);
509 ogime->WriteDigits("OVERWRITE");
510
511 for (Int_t i=1;i<nInputs; i++)
512 {
513 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i));
514 gime = rl->GetLoader("TPCLoader");
515 gime->UnloadSDigits();
516 }
517 ogime->UnloadDigits();
518
f648982e 519 delete digrow;
520 for (Int_t i1=0;i1<nInputs; i1++) delete digarr[i1];
521 delete []masks;
522 delete digarr;
523}