]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSDigitizer.cxx
Updated version with the Bari/Salerno model as default
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigitizer.cxx
CommitLineData
990119d6 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/* $Id$ */
17
18//_________________________________________________________________________
990119d6 19//*-- Author : Dmitri Peressounko (SUBATECH & Kurchatov Institute)
20//////////////////////////////////////////////////////////////////////////////
21// Class performs digitization of Summable digits (in the PHOS case this is just
8cb3533f 22// sum of contributions of all primary particles into given cell).
990119d6 23// In addition it performs mixing of summable digits from different events.
bca3b32a 24//
25// For each event two branches are created in TreeD:
26// "PHOS" - list of digits
27// "AliPHOSDigitizer" - AliPHOSDigitizer with all parameters used in digitization
28//
29// Note, that one cset title for new digits branch, and repeat digitization with
30// another set of parameters.
31//
990119d6 32// Examples of use:
33// root[0] AliPHOSDigitizer * d = new AliPHOSDigitizer() ;
34// root[1] d->ExecuteTask()
35// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
36// //Digitizes SDigitis in all events found in file galice.root
bca3b32a 37//
8cb3533f 38// root[2] AliPHOSDigitizer * d1 = new AliPHOSDigitizer("galice1.root") ;
39// // Will read sdigits from galice1.root
40// root[3] d1->MixWith("galice2.root")
990119d6 41// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
8cb3533f 42// // Reads another portion of sdigits from galice2.root
43// root[3] d1->MixWith("galice3.root")
44// // Reads another portion of sdigits from galice3.root
45// root[4] d->ExecuteTask("deb timing")
46// // Reads SDigits from files galice1.root, galice2.root ....
47// // mixes them and stores produced Digits in file galice1.root
48// // deb - prints number of produced digits
49// // deb all - prints list of produced digits
50// // timing - prints time used for digitization
990119d6 51//
990119d6 52
53// --- ROOT system ---
8cb3533f 54#include "TFile.h"
990119d6 55#include "TTree.h"
56#include "TSystem.h"
8cb3533f 57#include "TROOT.h"
58#include "TFolder.h"
59#include "TObjString.h"
60#include "TBenchmark.h"
990119d6 61// --- Standard library ---
8cb3533f 62#include <iomanip.h>
990119d6 63
64// --- AliRoot header files ---
65
8cb3533f 66#include "AliRun.h"
990119d6 67#include "AliPHOSDigit.h"
68#include "AliPHOSHit.h"
69#include "AliPHOSv1.h"
70#include "AliPHOSDigitizer.h"
71#include "AliPHOSSDigitizer.h"
8cb3533f 72#include "AliPHOSGeometry.h"
990119d6 73
74ClassImp(AliPHOSDigitizer)
75
76
77//____________________________________________________________________________
78 AliPHOSDigitizer::AliPHOSDigitizer():TTask("AliPHOSDigitizer","")
79{
80 // ctor
81
82 fSDigitizer = 0 ;
83 fNinputs = 1 ;
84 fPinNoise = 0.01 ;
85 fEMCDigitThreshold = 0.01 ;
86 fCPVNoise = 0.01;
87 fCPVDigitThreshold = 0.09 ;
88 fPPSDNoise = 0.0000001;
89 fPPSDDigitThreshold = 0.0000002 ;
90 fInitialized = kFALSE ;
8cb3533f 91
92 fHeaderFiles = 0;
93 fSDigitsTitles = 0;
94 fSDigits = 0 ;
95 fDigits = 0;
990119d6 96
97}
98//____________________________________________________________________________
8cb3533f 99void AliPHOSDigitizer::Init(){
bca3b32a 100// Makes all memory allocations
990119d6 101
102 if(!fInitialized){
8cb3533f 103
990119d6 104 fHeaderFiles = new TClonesArray("TObjString",1) ;
105 new((*fHeaderFiles)[0]) TObjString("galice.root") ;
8cb3533f 106
107 //Test, if this file already open
108
109 TFile *file = (TFile*) gROOT->GetFile(((TObjString *) fHeaderFiles->At(0))->GetString() ) ;
110
111 if(file == 0){
990119d6 112 file = new TFile(((TObjString *) fHeaderFiles->At(0))->GetString(),"update") ;
8cb3533f 113 gAlice = (AliRun *) file->Get("gAlice") ;
114 }
990119d6 115 else
116 file = new TFile(((TObjString *) fHeaderFiles->At(0))->GetString()) ;
8cb3533f 117
990119d6 118 file->cd() ;
8cb3533f 119
120 fSDigitsTitles = new TClonesArray("TObjString",1);
121 new((*fSDigitsTitles)[0]) TObjString("") ;
990119d6 122
123 fSDigits = new TClonesArray("TClonesArray",1) ;
124 new((*fSDigits)[0]) TClonesArray("AliPHOSDigit",1000) ;
8cb3533f 125
bca3b32a 126 fSDigitizer = 0 ;
127
8cb3533f 128 fDigitsTitle = "" ;
990119d6 129
130 fDigits = new TClonesArray("AliPHOSDigit",200000) ;
131
132 fIevent = new TArrayI(1) ;
133 fIevent->AddAt(-1,0 ) ;
134 fIeventMax = new TArrayI(1) ;
8cb3533f 135
136 fIeventMax->AddAt((Int_t) gAlice->TreeE()->GetEntries(), 0 );
137
138 // add Task to //root/Tasks folder
139 TTask * roottasks = (TTask*)gROOT->GetRootFolder()->FindObject("Tasks") ;
140 roottasks->Add(this) ;
141
990119d6 142 fInitialized = kTRUE ;
143 }
8cb3533f 144
990119d6 145}
146
990119d6 147//____________________________________________________________________________
f035f6ce 148AliPHOSDigitizer::AliPHOSDigitizer(const char *headerFile,const char *sDigitsTitle):
8cb3533f 149 TTask("AliPHOSDigitizer","")
990119d6 150{
151 // ctor
8cb3533f 152 fHeaderFiles = new TClonesArray("TObjString",1) ;
f035f6ce 153 new((*fHeaderFiles)[0]) TObjString(headerFile) ;
8cb3533f 154
155 // Header file, where result will be stored
156 TFile * file = (TFile*) gROOT->GetFile(((TObjString *) fHeaderFiles->At(0))->GetString() ) ;
157 if(file==0){
f035f6ce 158 if(((TObjString *) fHeaderFiles->At(0))->GetString().Contains("rfio"))
159 file = TFile::Open(((TObjString *) fHeaderFiles->At(0))->GetString(),"update") ;
160 else
161 file = new TFile(((TObjString *) fHeaderFiles->At(0))->GetString(),"update") ;
8cb3533f 162 gAlice = (AliRun *) file->Get("gAlice") ; //If not read yet
163 }
164
990119d6 165 file->cd() ;
166
8cb3533f 167 fSDigitsTitles = new TClonesArray("TObjString",1); // Title name of the SDigits branch
168 new((*fSDigitsTitles)[0]) TObjString(sDigitsTitle) ;
990119d6 169
170 fSDigits = new TClonesArray("TClonesArray",1) ; // here list of SDigits wil be stored
171 new((*fSDigits)[0]) TClonesArray("AliPHOSDigit",1000) ;
172
173 fDigits = new TClonesArray("AliPHOSDigit",200000) ;
8cb3533f 174
175 fDigitsTitle = "" ;
bca3b32a 176
177
178 fSDigitizer = 0 ;
8cb3533f 179
990119d6 180 fIevent = new TArrayI(1) ;
181 fIevent->AddAt(-1,0 ) ;
182 fIeventMax = new TArrayI(1) ;
8cb3533f 183
990119d6 184 // Get number of events to process
185 fIeventMax->AddAt((Int_t) gAlice->TreeE()->GetEntries(), 0 );
8cb3533f 186
990119d6 187 fNinputs = 1 ;
8cb3533f 188
990119d6 189 fPinNoise = 0.01 ;
190 fEMCDigitThreshold = 0.01 ;
191 fCPVNoise = 0.01;
192 fCPVDigitThreshold = 0.09 ;
193 fPPSDNoise = 0.0000001;
194 fPPSDDigitThreshold = 0.0000002 ;
8cb3533f 195
990119d6 196 // add Task to //root/Tasks folder
197 TTask * roottasks = (TTask*)gROOT->GetRootFolder()->FindObject("Tasks") ;
198 roottasks->Add(this) ;
199 fInitialized = kTRUE ;
8cb3533f 200
990119d6 201}
202
203//____________________________________________________________________________
204 AliPHOSDigitizer::~AliPHOSDigitizer()
205{
206 // dtor
8cb3533f 207
208 if(fHeaderFiles) delete fHeaderFiles ;
209 if(fSDigitsTitles) delete fSDigitsTitles ;
210 if(fSDigits) delete fSDigits ;
211 if(fDigits) delete fDigits ;
212}
213//____________________________________________________________________________
214void AliPHOSDigitizer::Reset() {
bca3b32a 215 //sets current event number to the first simulated event
8cb3533f 216
217 if(!fInitialized)
218 Init() ;
219
220 Int_t inputs ;
221 for(inputs = 0; inputs < fNinputs ;inputs++)
222 fIevent->AddAt(-1, inputs ) ;
223
990119d6 224}
225//____________________________________________________________________________
226Bool_t AliPHOSDigitizer::Combinator() {
227
228 //Makes all desirable combinations Signal+Background,
229 // returns kFALSE when all combinations are made
230 // May be useful to introduce some options like "One-to-One", "All-to-One" and "All-to-All" ?
231
232 //realizing "One-to-One" option...
233
234 if(!fInitialized)
8cb3533f 235 Init() ;
990119d6 236
237 Int_t inputs ;
238 Bool_t endNotReached = kTRUE ;
239
240 for(inputs = 0; (inputs < fNinputs) && endNotReached ;inputs++){
241 if(fIevent->At(inputs)+1 < fIeventMax->At(inputs))
242 fIevent->AddAt(fIevent->At(inputs)+1, inputs ) ;
243 else
8cb3533f 244 if(inputs == 0)
245 endNotReached = kFALSE ;
246 else //for inputs other than base one start from the beginning
247 fIevent->AddAt(0, inputs ) ;
248
990119d6 249 }
250 return endNotReached ;
8cb3533f 251
990119d6 252}
253
254//____________________________________________________________________________
255void AliPHOSDigitizer::Digitize(Option_t *option) {
256
bca3b32a 257 // Makes the digitization of the collected summable digits
258 // for this it first creates the array of all PHOS modules
259 // filled with noise (different for EMC, CPV and PPSD) and
260 // after that adds contributions from SDigits. This design
261 // helps to avoid scanning over the list of digits to add
262 // contribution of any new SDigit.
990119d6 263
264 if(!fInitialized)
8cb3533f 265 Init() ;
990119d6 266
267 fDigits->Clear() ;
268
269 AliPHOS * PHOS = (AliPHOS *) gAlice->GetDetector("PHOS") ;
270 AliPHOSGeometry *geom = AliPHOSGeometry::GetInstance( PHOS->GetGeometry()->GetName(), PHOS->GetGeometry()->GetTitle() );
271
272 //Making digits with noise, first EMC
273 Int_t nEMC = geom->GetNModules()*geom->GetNPhi()*geom->GetNZ();
274
275 Int_t nCPV ;
276 Int_t nPPSD ;
277 Int_t absID ;
278 TString name = geom->GetName() ;
279
280 if ( name == "IHEP" || name == "MIXT" )
281 nCPV =nEMC + geom->GetNumberOfCPVPadsZ()*geom->GetNumberOfCPVPadsPhi()*
282 geom->GetNCPVModules()*geom->GetNumberOfCPVLayers() ;
283 else
284 nCPV = nEMC;
285
286 if ( name == "GPS2" || name == "MIXT" )
287 nPPSD =nCPV+2*geom->GetNPPSDModules()*geom->GetNumberOfModulesPhi()*geom->GetNumberOfModulesZ()*
288 geom->GetNumberOfPadsPhi()*geom->GetNumberOfPadsZ() ;
289 else
290 nPPSD = nCPV;
8cb3533f 291
292
293 fDigits->Expand(nPPSD) ;
294
990119d6 295
296 for(absID = 1; absID <= nEMC; absID++){
297 Float_t noise = gRandom->Gaus(0., fPinNoise) ;
298 new((*fDigits)[absID-1]) AliPHOSDigit( -1,absID,fSDigitizer->Digitize(noise) ) ;
299 }
300
301 for(absID = nEMC+1; absID <= nCPV; absID++){
302 Float_t noise = gRandom->Gaus(0., fCPVNoise) ;
303 new((*fDigits)[absID-1]) AliPHOSDigit( -1,absID,fSDigitizer->Digitize(noise) ) ;
304 }
305
306 for(absID = nCPV+1; absID <= nPPSD; absID++){
307 Float_t noise = gRandom->Gaus(0., fPPSDNoise) ;
308 new((*fDigits)[absID-1]) AliPHOSDigit( -1,absID,fSDigitizer->Digitize(noise) ) ;
309 }
310
311
312 // Now look throught (unsorted) list of SDigits and add corresponding digits
313 AliPHOSDigit *curSDigit ;
314 AliPHOSDigit *digit ;
315
316 Int_t inputs;
317 for(inputs = 0; inputs< fNinputs ; inputs++){ //loop over (possible) merge sources
318
319 TClonesArray * sdigits= (TClonesArray *)fSDigits->At(inputs) ;
320 Int_t isdigit ;
8cb3533f 321
990119d6 322 Int_t nSDigits = sdigits->GetEntries() ;
323 for(isdigit=0;isdigit< nSDigits; isdigit++){
324 curSDigit = (AliPHOSDigit *)sdigits->At(isdigit) ;
325 if(inputs) //Shift primaries for non-background sdigits
326 curSDigit->ShiftPrimary(inputs) ;
327 digit = (AliPHOSDigit *)fDigits->At(curSDigit->GetId() - 1);
328 *digit = *digit + *curSDigit ;
329 }
330 }
331
332
990119d6 333 //remove digits below thresholds
334 for(absID = 0; absID < nEMC ; absID++)
335 if(fSDigitizer->Calibrate(((AliPHOSDigit*)fDigits->At(absID))->GetAmp()) < fEMCDigitThreshold)
336 fDigits->RemoveAt(absID) ;
337 for(absID = nEMC; absID < nCPV ; absID++)
338 if(fSDigitizer->Calibrate(((AliPHOSDigit*)fDigits->At(absID))->GetAmp()) < fCPVDigitThreshold)
339 fDigits->RemoveAt(absID) ;
340 for(absID = nCPV; absID < nPPSD ; absID++)
341 if(fSDigitizer->Calibrate(((AliPHOSDigit *)fDigits->At(absID))->GetAmp()) < fPPSDDigitThreshold)
342 fDigits->RemoveAt(absID) ;
343
344 fDigits->Compress() ;
345
8cb3533f 346 Int_t ndigits = fDigits->GetEntriesFast() ;
347
990119d6 348 fDigits->Expand(ndigits) ;
349
350
351 //Set indexes in list of digits
352 Int_t i ;
353 for (i = 0 ; i < ndigits ; i++) {
354 AliPHOSDigit * digit = (AliPHOSDigit *) fDigits->At(i) ;
355 digit->SetIndexInList(i) ;
356 }
357}
358//____________________________________________________________________________
359void AliPHOSDigitizer::WriteDigits(){
360
bca3b32a 361 // Made TreeD in the output file. Check if branch already exists: if yes, exits
362 // without writing: ROOT TTree does not suppert overwriting/updating of the
363 // already existing branches. Creates branch with Digits, named "PHOS", title "...",
364 // and branch "AliPHOSDigitizer", with the same title to keep all the parameters
365 // and names of files, from which digits are made.
990119d6 366
8cb3533f 367 gAlice->GetEvent(fIevent->At(0)) ; // Suitable only for One-To-One mixing
368 gAlice->SetEvent(fIevent->At(0)) ; // for all-to-all will produce a lot of branches in TreeD
990119d6 369
370 if(gAlice->TreeD()==0)
761e34c0 371 gAlice->MakeTree("D") ;
990119d6 372
8cb3533f 373 //Check, if this branch already exits?
374 TBranch * digitsBranch = 0;
375 TBranch * digitizerBranch = 0;
376
377 TObjArray * branches = gAlice->TreeD()->GetListOfBranches() ;
378 Int_t ibranch;
379 Bool_t phosNotFound = kTRUE ;
380 Bool_t digitizerNotFound = kTRUE ;
381
382 for(ibranch = 0;ibranch <branches->GetEntries();ibranch++){
383
384 if(phosNotFound){
385 digitsBranch=(TBranch *) branches->At(ibranch) ;
386 if( (strcmp("PHOS",digitsBranch->GetName())==0 ) &&
387 (fDigitsTitle.CompareTo(digitsBranch->GetTitle()) == 0) )
388 phosNotFound = kFALSE ;
990119d6 389 }
8cb3533f 390 if(digitizerNotFound){
391 digitizerBranch = (TBranch *) branches->At(ibranch) ;
392 if( (strcmp(digitizerBranch->GetName(),"AliPHOSDigitizer") == 0) &&
393 (fDigitsTitle.CompareTo(digitizerBranch->GetTitle()) == 0))
394 digitizerNotFound = kFALSE ;
395 }
396 }
990119d6 397
8cb3533f 398
399 if(!(digitizerNotFound && phosNotFound)){
400 cout << "AliPHOSDigitizer error: " << endl ;
401 cout << " can not update/overwrite existing branches "<< endl ;
402 cout << " do not write " << endl ;
403 return ;
404 }
405
406 // create new branches
407
408 //First generate file name
409 char * file =0;
410 if(gSystem->Getenv("CONFIG_SPLIT_FILE")){ //generating file name
411 file = new char[strlen(gAlice->GetBaseFile())+20] ;
412 sprintf(file,"%s/PHOS.Digits.root",gAlice->GetBaseFile()) ;
413 }
414
415 TDirectory *cwd = gDirectory;
416
417 //First create list of sdigits
418 Int_t bufferSize = 32000 ;
419 digitsBranch = gAlice->TreeD()->Branch("PHOS",&fDigits,bufferSize);
420 digitsBranch->SetTitle(fDigitsTitle.Data());
421 if (file) {
422 digitsBranch->SetFile(file);
423 TIter next( digitsBranch->GetListOfBranches());
761e34c0 424 TBranch * sbr ;
425 while ((sbr=(TBranch*)next())) {
426 sbr->SetFile(file);
8cb3533f 427 }
428 cwd->cd();
429 }
430
431 //second - create Digitizer
990119d6 432 Int_t splitlevel = 0 ;
8cb3533f 433 AliPHOSDigitizer * d = this ;
434 digitizerBranch = gAlice->TreeD()->Branch("AliPHOSDigitizer","AliPHOSDigitizer",
435 &d,bufferSize,splitlevel);
436 digitizerBranch->SetTitle(fDigitsTitle.Data());
437 if (file) {
438 digitizerBranch->SetFile(file);
439 TIter next( digitizerBranch->GetListOfBranches());
761e34c0 440 TBranch * sbr;
441 while ((sbr=(TBranch*)next())) {
442 sbr->SetFile(file);
8cb3533f 443 }
444 cwd->cd();
445 }
990119d6 446
761e34c0 447 digitsBranch->Fill() ;
448 digitizerBranch->Fill() ;
8cb3533f 449
990119d6 450 gAlice->TreeD()->Write(0,kOverwrite) ;
bca3b32a 451
452 //remove fSDigitizer before new event.
453 if(fSDigitizer){
454 delete fSDigitizer ;
455 fSDigitizer = 0 ;
456 }
457
458
990119d6 459}
460
461//____________________________________________________________________________
462void AliPHOSDigitizer::Exec(Option_t *option) {
bca3b32a 463 // Managing method
464
8cb3533f 465 if(!fInitialized) Init() ;
990119d6 466
8cb3533f 467 if(strstr(option,"tim"))
468 gBenchmark->Start("PHOSDigitizer");
469
470 //reset events numbers to start from the beginnig
471 Reset() ;
990119d6 472
473 while(Combinator()){
474
475 if(!ReadSDigits()) //read sdigits event(s) evaluated by Combinator() from file(s)
476 return ;
477
478 Digitize(option) ; //Add prepared SDigits to digits and add the noise
479 WriteDigits() ;
8cb3533f 480
481 if(strstr(option,"deb"))
482 PrintDigits(option);
990119d6 483
8cb3533f 484 }
990119d6 485
8cb3533f 486 if(strstr(option,"tim")){
487 gBenchmark->Stop("PHOSDigitizer");
488 cout << "AliPHOSDigitizer:" << endl ;
489 cout << " took " << gBenchmark->GetCpuTime("PHOSDigitizer") << " seconds for SDigitizing "
490 << gBenchmark->GetCpuTime("PHOSDigitizer")/(fIeventMax->At(0)) << " seconds per event " << endl ;
491 cout << endl ;
492 }
990119d6 493
494}
495
496//__________________________________________________________________
497Bool_t AliPHOSDigitizer::ReadSDigits(){
498// Reads summable digits from the opened files for the particular set of events given by fIevent
499
8cb3533f 500 if(!fInitialized) Init() ;
990119d6 501
bca3b32a 502
990119d6 503 Int_t inputs ;
504 for(inputs = fNinputs-1; inputs >= 0; inputs --){
505
506 Int_t event = fIevent->At(inputs) ;
507
508 TFile * file = (TFile*) gROOT->GetFile(((TObjString *) fHeaderFiles->At(inputs))->GetString() ) ;
509 file->cd() ;
510
511 // Get SDigits Tree header from file
512 char treeName[20];
513 sprintf(treeName,"TreeS%d",event);
514 TTree * treeS = (TTree*)file->Get(treeName);
515
516 if(treeS==0){
517 cout << "Error at AliPHOSDigitizer: no "<<treeName << " in file " << file->GetName() << endl ;
518 cout << "Do nothing " << endl ;
519 return kFALSE ;
520 }
521
522 TBranch * sdigitsBranch = 0;
523 TBranch * sdigitizerBranch = 0;
524
525 TObjArray * branches = treeS->GetListOfBranches() ;
526 Int_t ibranch;
527 Bool_t phosNotFound = kTRUE ;
528 Bool_t sdigitizerNotFound = kTRUE ;
529
530 for(ibranch = 0;ibranch <branches->GetEntries();ibranch++){
8cb3533f 531
990119d6 532 if(phosNotFound){
533 sdigitsBranch=(TBranch *) branches->At(ibranch) ;
8cb3533f 534 if(( strcmp("PHOS",sdigitsBranch->GetName())==0 ) &&
535 ((TObjString*) fSDigitsTitles->At(inputs))->GetString().CompareTo(sdigitsBranch->GetTitle())== 0 )
536 phosNotFound = kFALSE ;
537
990119d6 538 }
8cb3533f 539
990119d6 540 if(sdigitizerNotFound){
541 sdigitizerBranch = (TBranch *) branches->At(ibranch) ;
8cb3533f 542 if(( strcmp(sdigitizerBranch->GetName(),"AliPHOSSDigitizer") == 0) &&
543 ((TObjString*) fSDigitsTitles->At(inputs))->GetString().CompareTo(sdigitizerBranch->GetTitle())== 0 )
544 sdigitizerNotFound = kFALSE ;
545
990119d6 546 }
990119d6 547 }
8cb3533f 548
990119d6 549 if(sdigitizerNotFound || phosNotFound){
550 cout << "Can't find Branch with sdigits or SDigitizer in the file " ;
8cb3533f 551 if( ((TObjString*)fSDigitsTitles->At(inputs))->GetString().IsNull() )
990119d6 552 cout << file->GetName() << endl ;
553 else
8cb3533f 554 cout << ((TObjString*)fSDigitsTitles->At(inputs))->GetString().Data() << endl ;
990119d6 555 cout << "Do nothing" <<endl ;
556 return kFALSE ;
557 }
8cb3533f 558
990119d6 559 TClonesArray * sdigits = (TClonesArray*) fSDigits->At(inputs) ;
560 sdigitsBranch->SetAddress(&sdigits) ;
561
562 AliPHOSSDigitizer *sDigitizer = new AliPHOSSDigitizer();
563 sdigitizerBranch->SetAddress(&sDigitizer) ;
761e34c0 564
565 sdigitsBranch->GetEntry(0) ;
566 sdigitizerBranch->GetEntry(0) ;
8cb3533f 567
990119d6 568 if(fSDigitizer == 0)
569 fSDigitizer = sDigitizer ;
570 else
571 if(!((*fSDigitizer)==(*sDigitizer)) ){
bca3b32a 572 cout << "AliPHOSDigitizer ERROR:" << endl ;
573 cout << " you are using sdigits made with different SDigitizers" << endl ;
574 cout << "fSD " << fSDigitizer << " SD" << sDigitizer << endl ;
990119d6 575 fSDigitizer->Print("") ;
576 sDigitizer->Print("") ;
577 cout << "Do Nothing " << endl ;
578 return kFALSE ;
579 }
580
581 }
8cb3533f 582 fPedestal = fSDigitizer->GetPedestalParameter() ;
583 fSlope = fSDigitizer->GetCalibrationParameter() ;
990119d6 584
990119d6 585 return kTRUE ;
586
587}
588//__________________________________________________________________
8cb3533f 589void AliPHOSDigitizer::MixWith(char* HeaderFile, char* sDigitsTitle){
bca3b32a 590 // Alows produce digits by superimposing background and signal event.
591 // It is assumed, that headers file with SIGNAL events is opened in
592 // constructor, and now we set the BACKGROUND event, with which we
593 // will mix. Thus we avoid writing (changing) huge and expencive
594 // backgound files: all output will be writen into SIGNAL, i.e.
595 // opened in constructor file.
596 //
597 // One can open as many files to mix with as one wants.
598
990119d6 599
600 if(!fInitialized)
8cb3533f 601 Init() ;
602
990119d6 603
604 if(HeaderFile == 0){
605 cout << "Specify at least header file to merge"<< endl ;
606 return ;
607 }
608
609 Int_t inputs ;
610 for(inputs = 0; inputs < fNinputs ; inputs++){
611 if(strcmp(((TObjString *)fHeaderFiles->At(inputs))->GetString(),HeaderFile) == 0 ){
8cb3533f 612 if(sDigitsTitle == 0){
613 if(((TObjString*)fSDigitsTitles->At(inputs))->GetString().CompareTo("") == 0){
990119d6 614 cout << "Entry already exists, do not add" << endl ;
615 return ;
616 }
617 }
618 else
8cb3533f 619 if(((TObjString*)fSDigitsTitles->At(inputs))->GetString().CompareTo(sDigitsTitle)){
620 cout << "Entry already exists, do not add" << endl ;
621 return;
622 }
990119d6 623 }
624 }
625
626 fHeaderFiles->Expand(fNinputs+1) ;
627 new((*fHeaderFiles)[fNinputs]) TObjString(HeaderFile) ;
990119d6 628
8cb3533f 629
630 TFile * file = new TFile(((TObjString *) fHeaderFiles->At(fNinputs))->GetString()) ;
631
990119d6 632 file->cd() ;
8cb3533f 633
634 fSDigitsTitles->Expand(fNinputs+1) ;
635 new((*fSDigitsTitles)[fNinputs]) TObjString(sDigitsTitle) ;
636
990119d6 637 fSDigits->Expand(fNinputs+1) ;
638 new((*fSDigits)[fNinputs]) TClonesArray("AliPHOSDigit",1000) ;
8cb3533f 639
990119d6 640 fIevent->Set(fNinputs+1) ;
641 fIevent->AddAt(-1, fNinputs) ;
8cb3533f 642
990119d6 643 fIeventMax->Set(fNinputs+1) ;
8cb3533f 644
645 TTree * te = (TTree *) file->Get("TE") ;
646 fIeventMax->AddAt((Int_t) te->GetEntries(), fNinputs );
647
990119d6 648 fNinputs++ ;
8cb3533f 649
990119d6 650}
651//__________________________________________________________________
8cb3533f 652void AliPHOSDigitizer::Print(Option_t* option)const {
653
654 if(fInitialized){
655
656 cout << "------------------- "<< GetName() << " -------------" << endl ;
657 cout << "Digitizing sDigits from file(s): " <<endl ;
658 Int_t input ;
659 for(input = 0; input < fNinputs ; input++) {
660 cout << " " << ((TObjString *) fHeaderFiles->At(input))->GetString() <<
661 " Branch title:" << ((TObjString *) fSDigitsTitles->At(input))->GetString() << endl ;
662 }
663 cout << endl ;
664 cout << "Writing digits to " << ((TObjString *) fHeaderFiles->At(0))->GetString() << endl ;
665
666 cout << endl ;
667 cout << "With following parameters: " << endl ;
668 cout << " Electronics noise in EMC (fPinNoise) = " << fPinNoise << endl ;
669 cout << " Threshold in EMC (fEMCDigitThreshold) = " << fEMCDigitThreshold << endl ; ;
670 cout << " Noise in CPV (fCPVNoise) = " << fCPVNoise << endl ;
671 cout << " Threshold in CPV (fCPVDigitThreshold) = " << fCPVDigitThreshold << endl ;
672 cout << " Noise in PPSD (fPPSDNoise) = " << fPPSDNoise << endl ;
673 cout << " Threshold in PPSD (fPPSDDigitThreshold) = " << fPPSDDigitThreshold << endl ;
674 cout << "---------------------------------------------------" << endl ;
990119d6 675 }
8cb3533f 676 else
677 cout << "AliPHOSDigitizer not initialized " << endl ;
678
679}
680//__________________________________________________________________
681void AliPHOSDigitizer::PrintDigits(Option_t * option){
682
683 cout << "AliPHOSDigitiser:"<< endl ;
684 cout << " Number of entries in Digits list " << fDigits->GetEntriesFast() << endl ;
990119d6 685 cout << endl ;
8cb3533f 686 if(strstr(option,"all")){
687
688 //loop over digits
689 AliPHOSDigit * digit;
690 cout << "Digit Id " << " Amplitude " << " Index " << " Nprim " << " Primaries list " << endl;
691 Int_t index ;
692 for (index = 0 ; index < fDigits->GetEntries() ; index++) {
693 digit = (AliPHOSDigit * ) fDigits->At(index) ;
694 cout << setw(8) << digit->GetId() << " " << setw(3) << digit->GetAmp() << " "
695 << setw(6) << digit->GetIndexInList() << " "
696 << setw(5) << digit->GetNprimary() <<" ";
697
698 Int_t iprimary;
699 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++)
700 cout << setw(5) << digit->GetPrimary(iprimary+1) << " ";
701 cout << endl;
702 }
703
704 }
705}
706//__________________________________________________________________
707void AliPHOSDigitizer::SetSDigitsBranch(const char* title){
bca3b32a 708 // we set title (comment) of the SDigits branch in the first! header file
8cb3533f 709 if(!fInitialized) Init() ;
990119d6 710
8cb3533f 711 ((TObjString*) fSDigitsTitles->At(0) )->SetString((char*)title) ;
990119d6 712
8cb3533f 713}
714//__________________________________________________________________
715void AliPHOSDigitizer::SetDigitsBranch(const char* title){
bca3b32a 716 //Sets the title (comment) of the branch to which Digits branch
8cb3533f 717 if(!fInitialized) Init() ;
718
719 fDigitsTitle = title ;
990119d6 720
721}