]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCDigitizer.cxx
Adding documentation (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
291 if (gain<0.5){
292 printf("problem\n");
293 }
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;
633fa37f 299 if (noisePad<0.001) q=0; // dead channels identified - 0 noise
3c038d07 300 q=TMath::Nint(q);
88cb7938 301 if (q > zerosup)
302 {
e93a083a 303 if(q >= param->GetADCSat()) q = (Short_t)(param->GetADCSat() - 1);
88cb7938 304 //digrow->SetDigitFast((Short_t)q,rows,col);
305 *pdig1 =Short_t(q);
306 for (Int_t tr=0;tr<3;tr++)
307 {
308 if (tr<labptr)
309 ptr1[tr*nElems] = label[tr];
310 }
311 }
312 pdig1++;
313 ptr1++;
314 }
407ff276 315
3c038d07 316 digrow->CompresBuffer(1,zerosup);
317 digrow->CompresTrackBuffer(1);
318 tree->Fill();
319 if (fDebug>0) cerr<<sec<<"\t"<<row<<"\n";
4df28b43 320 } //for (Int_t n=0; n<param->GetNRowsTotal(); n++)
88cb7938 321
322
323 orl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
324 ogime = orl->GetLoader("TPCLoader");
325 ogime->WriteDigits("OVERWRITE");
326
327 //fManager->GetTreeDTPC()->Write(0,TObject::kOverwrite);
328
3c038d07 329 delete digrow;
407ff276 330 for (Int_t i1=0;i1<nInputs; i1++) delete digarr[i1];
331 delete []masks;
4df28b43 332 delete []pdig;
333 delete []ptr;
334 delete []active;
335 delete []digarr;
3c038d07 336}
337
f648982e 338
339
340//------------------------------------------------------------------------
341void AliTPCDigitizer::ExecSave(Option_t* option)
342{
343
344 // merge input tree's with summable digits
345 //output stored in TreeTPCD
346
347 TString optionString = option;
348 if (optionString.Data() == "deb") {
349 cout<<"AliTPCDigitizer::Exec: called with option deb "<<endl;
350 fDebug = 3;
351 }
352 //get detector and geometry
88cb7938 353 AliRunLoader *rl, *orl;
354 AliLoader *gime, *ogime;
355
356
357 orl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
358 ogime = orl->GetLoader("TPCLoader");
359
360 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
361 gime = rl->GetLoader("TPCLoader");
362
363 rl->LoadgAlice();
364 AliRun* alirun = rl->GetAliRun();
365
366 AliTPC *pTPC = (AliTPC *) alirun->GetModule("TPC");
f648982e 367 AliTPCParam * param = pTPC->GetParam();
368 pTPC->GenerNoise(500000); //create teble with noise
369 printf("noise %f \n", param->GetNoise()*param->GetNoiseNormFac());
370 //
371 Int_t nInputs = fManager->GetNinputs();
372 Int_t * masks = new Int_t[nInputs];
373 for (Int_t i=0; i<nInputs;i++)
374 masks[i]= fManager->GetMask(i);
f648982e 375
f648982e 376 AliSimDigits ** digarr = new AliSimDigits*[nInputs];
88cb7938 377 for (Int_t i1=0;i1<nInputs; i1++)
378 {
f648982e 379 digarr[i1]=0;
380 // intree[i1]
88cb7938 381 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i1));
382 gime = rl->GetLoader("TPCLoader");
383
384 TTree * treear = gime->TreeS();
f648982e 385 TBranch * br = treear->GetBranch("fSegmentID");
386 if (br) br->GetFile()->cd();
f648982e 387 if (!treear) {
388 cerr<<" TPC - not existing input = \n"<<i1<<" ";
389 }
f648982e 390 treear->GetBranch("Segment")->SetAddress(&digarr[i1]);
f648982e 391 }
88cb7938 392
393 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
394 gime = rl->GetLoader("TPCLoader");
395 Stat_t nentries = gime->TreeS()->GetEntries();
f648982e 396
397
398 //create branch's in TPC treeD
399 AliSimDigits * digrow = new AliSimDigits;
88cb7938 400 TTree * tree = ogime->TreeD();
401
f648982e 402 tree->Branch("Segment","AliSimDigits",&digrow);
f648982e 403 param->SetZeroSup(2);
404
405 Int_t zerosup = param->GetZeroSup();
406 //Loop over segments of the TPC
407
13116aec 408 AliTPCCalPad * gainTPC = AliTPCcalibDB::Instance()->GetPadGainFactor();
1ac191a6 409 AliTPCCalPad * noiseTPC = AliTPCcalibDB::Instance()->GetPadNoise();
f648982e 410 for (Int_t n=0; n<nentries; n++) {
88cb7938 411 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(0));
412 gime = rl->GetLoader("TPCLoader");
413 gime->TreeS()->GetEvent(n);
414
f648982e 415 digarr[0]->ExpandBuffer();
416 digarr[0]->ExpandTrackBuffer();
13116aec 417
418
f648982e 419 for (Int_t i=1;i<nInputs; i++){
88cb7938 420// fManager->GetInputTreeTPCS(i)->GetEntryWithIndex(digarr[0]->GetID(),digarr[0]->GetID());
421 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i));
422 gime = rl->GetLoader("TPCLoader");
423 gime->TreeS()->GetEntryWithIndex(digarr[0]->GetID(),digarr[0]->GetID());
f648982e 424 digarr[i]->ExpandBuffer();
425 digarr[i]->ExpandTrackBuffer();
426 if ((digarr[0]->GetID()-digarr[i]->GetID())>0)
88cb7938 427 printf("problem\n");
f648982e 428
429 }
430
431 Int_t sec, row;
432 if (!param->AdjustSectorRow(digarr[0]->GetID(),sec,row)) {
433 cerr<<"AliTPC warning: invalid segment ID ! "<<digarr[0]->GetID()<<endl;
434 continue;
435 }
436
13116aec 437 AliTPCCalROC * gainROC = gainTPC->GetCalROC(sec); // pad gains per given sector
1ac191a6 438 AliTPCCalROC * noiseROC = noiseTPC->GetCalROC(sec); // noise per given sector
f648982e 439 digrow->SetID(digarr[0]->GetID());
440
441 Int_t nrows = digarr[0]->GetNRows();
442 Int_t ncols = digarr[0]->GetNCols();
443 digrow->Allocate(nrows,ncols);
444 digrow->AllocateTrack(3);
445
446 Float_t q=0;
447 Int_t label[1000]; //stack for 300 events
448 Int_t labptr = 0;
449
450
451
452 for (Int_t rows=0;rows<nrows; rows++){
453 for (Int_t col=0;col<ncols; col++){
454
88cb7938 455 q=0;
456 labptr=0;
457 // looop over digits
f648982e 458 for (Int_t i=0;i<nInputs; i++){
88cb7938 459 q += digarr[i]->GetDigitFast(rows,col);
f648982e 460 //q += *(pdig[i]);
88cb7938 461
f648982e 462 for (Int_t tr=0;tr<3;tr++) {
88cb7938 463 Int_t lab = digarr[i]->GetTrackIDFast(rows,col,tr);
464 //Int_t lab = ptr[i][tr*nElems];
f648982e 465 if ( (lab > 1) ) {
466 label[labptr]=lab+masks[i];
467 labptr++;
88cb7938 468 }
f648982e 469 }
88cb7938 470 // pdig[i]++;
471 //ptr[i]++;
472
f648982e 473 }
88cb7938 474 q/=16.; //conversion factor
475 // Float_t noise = gRandom->Gaus(0,param->GetNoise()*param->GetNoiseNormFac());
13116aec 476 Float_t gain = gainROC->GetValue(row,col);
477 q*= gain;
1ac191a6 478 Float_t noisePad = noiseROC->GetValue(row, col);
479
88cb7938 480 Float_t noise = pTPC->GetNoise();
1ac191a6 481 q+=noise*noisePad;
633fa37f 482 if (noisePad<0.00001) q=0; // dead channels identified - 0 noise
483
f648982e 484 q=TMath::Nint(q);
485 if (q > zerosup){
88cb7938 486
e93a083a 487 if(q >= param->GetADCSat()) q = (Short_t)(param->GetADCSat() - 1);
88cb7938 488 digrow->SetDigitFast((Short_t)q,rows,col);
489 // *pdig1 =Short_t(q);
490 for (Int_t tr=0;tr<3;tr++){
491 if (tr<labptr)
492 ((AliSimDigits*)digrow)->SetTrackIDFast(label[tr],rows,col,tr);
493 //ptr1[tr*nElems] = label[tr];
494 //else
495 // ((AliSimDigits*)digrow)->SetTrackIDFast(-1,rows,col,tr);
496 // ptr1[tr*nElems] = 1;
497 }
498 }
499 //pdig1++;
500 //ptr1++;
f648982e 501 }
502 }
503
504 digrow->CompresBuffer(1,zerosup);
505 digrow->CompresTrackBuffer(1);
506 tree->Fill();
507 if (fDebug>0) cerr<<sec<<"\t"<<row<<"\n";
508 }
88cb7938 509// printf("end TPC merging - end -Tree %s\t%p\n",fManager->GetInputTreeH(0)->GetName(),fManager->GetInputTreeH(0)->GetListOfBranches()->At(3));
510 //fManager->GetTreeDTPC()->Write(0,TObject::kOverwrite);
511 ogime->WriteDigits("OVERWRITE");
512
513 for (Int_t i=1;i<nInputs; i++)
514 {
515 rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(i));
516 gime = rl->GetLoader("TPCLoader");
517 gime->UnloadSDigits();
518 }
519 ogime->UnloadDigits();
520
f648982e 521 delete digrow;
522 for (Int_t i1=0;i1<nInputs; i1++) delete digarr[i1];
523 delete []masks;
524 delete digarr;
525}