]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PHOS/AliPHOSDigitizer.cxx
HBTP code imported (P.Skowronski)
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigitizer.cxx
... / ...
CommitLineData
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//_________________________________________________________________________
19//*-- Author : Dmitri Peressounko (SUBATECH & Kurchatov Institute)
20//////////////////////////////////////////////////////////////////////////////
21// This TTask performs digitization of Summable digits (in the PHOS case it is just
22// the sum of contributions from all primary particles into a given cell).
23// In addition it performs mixing of summable digits from different events.
24// The name of the TTask is also the title of the branch that will contain
25// the created SDigits
26// The title of the TTAsk is the name of the file that contains the hits from
27// which the SDigits are created
28//
29// For each event two branches are created in TreeD:
30// "PHOS" - list of digits
31// "AliPHOSDigitizer" - AliPHOSDigitizer with all parameters used in digitization
32//
33// Note, that one can set a title for new digits branch, and repeat digitization with
34// another set of parameters.
35//
36// Use case:
37// root[0] AliPHOSDigitizer * d = new AliPHOSDigitizer() ;
38// root[1] d->ExecuteTask()
39// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
40// //Digitizes SDigitis in all events found in file galice.root
41//
42// root[2] AliPHOSDigitizer * d1 = new AliPHOSDigitizer("galice1.root") ;
43// // Will read sdigits from galice1.root
44// root[3] d1->MixWith("galice2.root")
45// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
46// // Reads another set of sdigits from galice2.root
47// root[3] d1->MixWith("galice3.root")
48// // Reads another set of sdigits from galice3.root
49// root[4] d->ExecuteTask("deb timing")
50// // Reads SDigits from files galice1.root, galice2.root ....
51// // mixes them and stores produced Digits in file galice1.root
52// // deb - prints number of produced digits
53// // deb all - prints list of produced digits
54// // timing - prints time used for digitization
55//
56
57// --- ROOT system ---
58#include "TFile.h"
59#include "TTree.h"
60#include "TSystem.h"
61#include "TROOT.h"
62#include "TFolder.h"
63#include "TObjString.h"
64#include "TBenchmark.h"
65
66// --- Standard library ---
67#include <iomanip.h>
68
69// --- AliRoot header files ---
70
71#include "AliRun.h"
72#include "AliRunDigitizer.h"
73#include "AliPHOSDigit.h"
74#include "AliPHOS.h"
75#include "AliPHOSGetter.h"
76#include "AliPHOSDigitizer.h"
77#include "AliPHOSSDigitizer.h"
78#include "AliPHOSGeometry.h"
79#include "AliPHOSTick.h"
80
81ClassImp(AliPHOSDigitizer)
82
83
84//____________________________________________________________________________
85 AliPHOSDigitizer::AliPHOSDigitizer()
86{
87 // ctor
88
89 fPinNoise = 0.01 ;
90 fEMCDigitThreshold = 0.01 ;
91 fCPVNoise = 0.01;
92 fCPVDigitThreshold = 0.09 ;
93 fTimeResolution = 1.0e-9 ;
94 fTimeSignalLength = 1.0e-9 ;
95 fDigitsInRun = 0 ;
96 fADCchanelEmc = 0.0015; // width of one ADC channel in GeV
97 fADCpedestalEmc = 0.005 ; //
98 fNADCemc = (Int_t) TMath::Power(2,16) ; // number of channels in EMC ADC
99
100 fADCchanelCpv = 0.0012 ; // width of one ADC channel in CPV 'popugais'
101 fADCpedestalCpv = 0.012 ; //
102 fNADCcpv = (Int_t) TMath::Power(2,12); // number of channels in CPV ADC
103
104 fTimeThreshold = 0.001*10000000 ; //Means 1 MeV in terms of SDigits amplitude
105 fARD = 0 ; // We work in the standalong mode
106}
107
108//____________________________________________________________________________
109AliPHOSDigitizer::AliPHOSDigitizer(const char *headerFile,const char * name)
110{
111 // ctor
112 SetName(name) ;
113 SetTitle(headerFile) ;
114 fARD = 0 ; // We work in the standalong mode
115 Init() ;
116
117}
118
119//____________________________________________________________________________
120AliPHOSDigitizer::AliPHOSDigitizer(AliRunDigitizer * ard)
121{
122 // ctor
123 fARD = ard ;
124 SetName("Default");
125 SetTitle("aliroot") ;
126 Init() ;
127
128}
129
130//____________________________________________________________________________
131 AliPHOSDigitizer::~AliPHOSDigitizer()
132{
133 // dtor
134
135
136}
137
138//____________________________________________________________________________
139void AliPHOSDigitizer::Digitize(const Int_t event)
140{
141
142 // Makes the digitization of the collected summable digits.
143 // It first creates the array of all PHOS modules
144 // filled with noise (different for EMC, CPV and PPSD) and
145 // then adds contributions from SDigits.
146 // This design avoids scanning over the list of digits to add
147 // contribution to new SDigits only.
148
149 if( strcmp(GetName(), "") == 0 )
150 Init() ;
151
152 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
153 TClonesArray * digits = gime->Digits(GetName()) ;
154 AliPHOSSDigitizer * sdiz = gime->SDigitizer(GetName()) ;
155
156 digits->Clear() ;
157
158 const AliPHOSGeometry *geom = gime->PHOSGeometry() ;
159
160 //Making digits with noise, first EMC
161 Int_t nEMC = geom->GetNModules()*geom->GetNPhi()*geom->GetNZ();
162
163 Int_t nCPV ;
164 Int_t absID ;
165 TString name = geom->GetName() ;
166
167 nCPV = nEMC + geom->GetNumberOfCPVPadsZ()*geom->GetNumberOfCPVPadsPhi()*
168 geom->GetNModules() ;
169
170 digits->Expand(nCPV) ;
171
172
173 // sdigitize random gaussian noise and add it to all cells (EMCA+CPV+PPSD)
174 // get first the sdigitizer from the tasks list (must have same name as the digitizer)
175 const AliPHOSSDigitizer * sDigitizer = gime->SDigitizer(GetName());
176 if ( !sDigitizer) {
177 cerr << "ERROR: AliPHOSDigitizer::Digitize -> SDigitizer with name " << GetName() << " not found " << endl ;
178 abort() ;
179 }
180
181 // loop through the sdigits posted to the White Board and add them to the noise
182 TCollection * folderslist = ((TFolder*)gROOT->FindObjectAny("YSAlice/WhiteBoard/SDigits/PHOS"))->GetListOfFolders() ;
183 TIter next(folderslist) ;
184 TFolder * folder = 0 ;
185 TClonesArray * sdigits = 0 ;
186 Int_t input = 0 ;
187 TObjArray * sdigArray = new TObjArray(2) ;
188 while ( (folder = (TFolder*)next()) )
189 if ( (sdigits = (TClonesArray*)folder->FindObject(GetName()) ) ) {
190 cout << "INFO: AliPHOSDigitizer::Digitize -> Adding SDigits "
191 << GetName() << " from " << folder->GetName() << endl ;
192 sdigArray->AddAt(sdigits, input) ;
193 input++ ;
194 }
195
196 //Find the first crystall with sygnal
197 Int_t nextSig = 200000 ;
198 Int_t i;
199 for(i=0; i<input; i++){
200 sdigits = (TClonesArray *)sdigArray->At(i) ;
201 Int_t curNext = ((AliPHOSDigit *)sdigits->At(0))->GetId() ;
202 if(curNext < nextSig) nextSig = curNext ;
203 }
204
205 TArrayI index(input) ;
206 index.Reset() ; //Set all indexes to zero
207
208 AliPHOSDigit * digit ;
209 AliPHOSDigit * curSDigit ;
210
211 TClonesArray * ticks = new TClonesArray("AliPHOSTick",1000) ;
212
213 //Put Noise contribution
214 for(absID = 1; absID <= nEMC; absID++){
215 Float_t noise = gRandom->Gaus(0., fPinNoise) ;
216 new((*digits)[absID-1]) AliPHOSDigit( -1,absID,sDigitizer->Digitize(noise), TimeOfNoise() ) ;
217 //look if we have to add signal?
218 if(absID==nextSig){
219 //Add SDigits from all inputs
220 digit = (AliPHOSDigit *) digits->At(absID-1) ;
221
222 ticks->Clear() ;
223 Int_t contrib = 0 ;
224 Float_t a = digit->GetAmp() ;
225 Float_t b = TMath::Abs( a /fTimeSignalLength) ;
226 //Mark the beginnign of the signal
227 new((*ticks)[contrib++]) AliPHOSTick(digit->GetTime(),0, b);
228 //Mark the end of the ignal
229 new((*ticks)[contrib++]) AliPHOSTick(digit->GetTime()+fTimeSignalLength, -a, -b);
230
231 //loop over inputs
232 for(i=0; i<input; i++){
233 curSDigit = (AliPHOSDigit*)((TClonesArray *)sdigArray->At(i))->At(index[i]) ;
234 //May be several digits will contribute from the same input
235 while(curSDigit && curSDigit->GetId() == absID){
236 //Shift primary to separate primaries belonging different inputs
237 Int_t primaryoffset ;
238 if(fARD)
239 primaryoffset = fARD->GetMask(i) ;
240 else
241 primaryoffset = 10000000*i ;
242 curSDigit->ShiftPrimary(primaryoffset) ;
243
244 a = curSDigit->GetAmp() ;
245 b = a /fTimeSignalLength ;
246 new((*ticks)[contrib++]) AliPHOSTick(curSDigit->GetTime(),0, b);
247 new((*ticks)[contrib++]) AliPHOSTick(curSDigit->GetTime()+fTimeSignalLength, -a, -b);
248
249 *digit = *digit + *curSDigit ; //add energies
250
251 index[i]++ ;
252 curSDigit = (AliPHOSDigit*)((TClonesArray *)sdigArray->At(i))->At(index[i]) ;
253 }
254 }
255
256 //calculate and set time
257 Float_t time = FrontEdgeTime(ticks) ;
258 digit->SetTime(time) ;
259
260 //Find next signal module
261 nextSig = 200000 ;
262 for(i=0; i<input; i++){
263 sdigits = ((TClonesArray *)sdigArray->At(i)) ;
264 Int_t curNext = ((AliPHOSDigit *) sdigits->At(index[i]))->GetId() ;
265 if(curNext < nextSig) nextSig = curNext ;
266 }
267 }
268 }
269
270 ticks->Delete() ;
271 delete ticks ;
272
273
274 //Now CPV digits (different noise and no timing)
275 for(absID = nEMC+1; absID <= nCPV; absID++){
276 Float_t noise = gRandom->Gaus(0., fCPVNoise) ;
277 new((*digits)[absID-1]) AliPHOSDigit( -1,absID,sDigitizer->Digitize(noise), TimeOfNoise() ) ;
278 //look if we have to add signal?
279 if(absID==nextSig){
280 digit = (AliPHOSDigit *) digits->At(absID-1) ;
281 //Add SDigits from all inputs
282 for(i=0; i<input; i++){
283 curSDigit = (AliPHOSDigit*)((TClonesArray *)sdigArray->At(i))->At(index[i]) ;
284 //May be several digits will contribute from the same input
285 while(curSDigit && curSDigit->GetId() == absID){
286 //Shift primary to separate primaries belonging different inputs
287 Int_t primaryoffset ;
288 if(fARD)
289 primaryoffset = fARD->GetMask(i) ;
290 else
291 primaryoffset = 10000000*i ;
292 curSDigit->ShiftPrimary(primaryoffset) ;
293
294 //add energies
295 *digit = *digit + *curSDigit ;
296 index[i]++ ;
297 curSDigit = (AliPHOSDigit*)((TClonesArray *)sdigArray->At(i))->At(index[i]) ;
298 }
299 }
300
301 //Find next signal module
302 for(i=0; i<input; i++){
303 sdigits = (TClonesArray *)sdigArray->At(i) ;
304 Int_t curNext = ((AliPHOSDigit *) sdigits->At(index[i]))->GetId() ;
305 if(curNext < nextSig) nextSig = curNext ;
306 }
307
308 }
309 }
310 delete sdigArray ; //We should not delete its contents
311
312
313
314 //remove digits below thresholds
315 for(absID = 0; absID < nEMC ; absID++)
316 if(sDigitizer->Calibrate(((AliPHOSDigit*)digits->At(absID))->GetAmp()) < fEMCDigitThreshold)
317 digits->RemoveAt(absID) ;
318
319 for(absID = nEMC; absID < nCPV ; absID++)
320 if(sDigitizer->Calibrate(((AliPHOSDigit*)digits->At(absID))->GetAmp()) < fCPVDigitThreshold)
321 digits->RemoveAt(absID) ;
322
323 digits->Compress() ;
324
325 Int_t ndigits = digits->GetEntriesFast() ;
326 digits->Expand(ndigits) ;
327
328 //Set indexes in list of digits and make true digitization of the energy
329 for (i = 0 ; i < ndigits ; i++) {
330 AliPHOSDigit * digit = (AliPHOSDigit *) digits->At(i) ;
331 digit->SetIndexInList(i) ;
332 Float_t energy = sdiz->Calibrate(digit->GetAmp()) ;
333 digit->SetAmp(DigitizeEnergy(energy,digit->GetId()) ) ;
334 }
335
336}
337//____________________________________________________________________________
338Int_t AliPHOSDigitizer::DigitizeEnergy(Float_t energy, Int_t absId)
339{
340 Int_t chanel ;
341 if(absId <= fEmcCrystals){ //digitize as EMC
342 chanel = (Int_t) TMath::Ceil((energy - fADCpedestalEmc)/fADCchanelEmc) ;
343 if(chanel > fNADCemc ) chanel = fNADCemc ;
344 }
345 else{ //Digitize as CPV
346 chanel = (Int_t) TMath::Ceil((energy - fADCpedestalCpv)/fADCchanelCpv) ;
347 if(chanel > fNADCcpv ) chanel = fNADCcpv ;
348 }
349 return chanel ;
350}
351//____________________________________________________________________________
352void AliPHOSDigitizer::Exec(Option_t *option)
353{
354 // Managing method
355
356 if( strcmp(GetName(), "") == 0 )
357 Init() ;
358
359 if (strstr(option,"print")) {
360 Print("");
361 return ;
362 }
363
364 if(strstr(option,"tim"))
365 gBenchmark->Start("PHOSDigitizer");
366
367 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
368
369 Int_t nevents ;
370
371 TTree * treeD ;
372
373 if(fARD){
374 treeD = fARD->GetTreeD() ;
375 nevents = 1 ; // Will process only one event
376 }
377 else {
378 gAlice->GetEvent(0) ;
379 nevents = (Int_t) gAlice->TreeE()->GetEntries() ;
380 treeD=gAlice->TreeD() ;
381 }
382 if(treeD == 0 ){
383 cerr << " AliPHOSDigitizer :: Can not find TreeD " << endl ;
384 return ;
385 }
386
387 //Check, if this branch already exits
388 TObjArray * lob = (TObjArray*)treeD->GetListOfBranches() ;
389 TIter next(lob) ;
390 TBranch * branch = 0 ;
391 Bool_t phosfound = kFALSE, digitizerfound = kFALSE ;
392
393 while ( (branch = (TBranch*)next()) && (!phosfound || !digitizerfound) ) {
394 if ( (strcmp(branch->GetName(), "PHOS")==0) &&
395 (strcmp(branch->GetTitle(), GetName())==0) )
396 phosfound = kTRUE ;
397
398 else if ( (strcmp(branch->GetName(), "AliPHOSDigitizer")==0) &&
399 (strcmp(branch->GetTitle(), GetName())==0) )
400 digitizerfound = kTRUE ;
401 }
402
403 if ( phosfound ) {
404 cerr << "WARNING: AliPHOSDigitizer -> Digits branch with name " << GetName()
405 << " already exits" << endl ;
406 return ;
407 }
408 if ( digitizerfound ) {
409 cerr << "WARNING: AliPHOSDigitizer -> Digitizer branch with name " << GetName()
410 << " already exits" << endl ;
411 return ;
412 }
413
414 Int_t ievent ;
415
416 for(ievent = 0; ievent < nevents; ievent++){
417
418 if(fARD){
419 Int_t input ;
420 for(input = 0 ; input < fARD->GetNinputs(); input ++){
421 TTree * treeS = fARD->GetInputTreeS(input) ;
422 if(!treeS){
423 cerr << "AliPHOSDigitizer -> No Input " << endl ;
424 return ;
425 }
426 gime->ReadTreeS(treeS,input) ;
427 }
428 }
429 else
430 gime->Event(ievent,"S") ;
431
432 Digitize(ievent) ; //Add prepared SDigits to digits and add the noise
433
434 WriteDigits(ievent) ;
435
436 if(strstr(option,"deb"))
437 PrintDigits(option);
438 }
439
440 if(strstr(option,"tim")){
441 gBenchmark->Stop("PHOSDigitizer");
442 cout << "AliPHOSDigitizer:" << endl ;
443 cout << " took " << gBenchmark->GetCpuTime("PHOSDigitizer") << " seconds for Digitizing "
444 << gBenchmark->GetCpuTime("PHOSDigitizer")/nevents << " seconds per event " << endl ;
445 cout << endl ;
446 }
447
448}
449
450//____________________________________________________________________________
451Float_t AliPHOSDigitizer::FrontEdgeTime(TClonesArray * ticks)
452{ //
453 ticks->Sort() ; //Sort in accordance with times of ticks
454 TIter it(ticks) ;
455 AliPHOSTick * ctick = (AliPHOSTick *) it.Next() ;
456 Float_t time = ctick->CrossingTime(fTimeThreshold) ;
457
458 AliPHOSTick * t ;
459 while((t=(AliPHOSTick*) it.Next())){
460 if(t->GetTime() < time) //This tick starts before crossing
461 *ctick+=*t ;
462 else
463 return time ;
464
465 time = ctick->CrossingTime(fTimeThreshold) ;
466 }
467 return time ;
468}
469//____________________________________________________________________________
470Bool_t AliPHOSDigitizer::Init()
471{
472 fPinNoise = 0.01 ;
473 fEMCDigitThreshold = 0.01 ;
474 fCPVNoise = 0.01;
475 fCPVDigitThreshold = 0.09 ;
476 fTimeResolution = 1.0e-9 ;
477 fTimeSignalLength = 1.0e-9 ;
478 fDigitsInRun = 0 ;
479 fADCchanelEmc = 0.0015; // width of one ADC channel in GeV
480 fADCpedestalEmc = 0.005 ; //
481 fNADCemc = (Int_t) TMath::Power(2,16) ; // number of channels in EMC ADC
482
483 fADCchanelCpv = 0.0012 ; // width of one ADC channel in CPV 'popugais'
484 fADCpedestalCpv = 0.012 ; //
485 fNADCcpv = (Int_t) TMath::Power(2,12); // number of channels in CPV ADC
486
487 fTimeThreshold = 0.001*10000000 ; //Means 1 MeV in terms of SDigits amplitude
488
489 // Makes all memory allocations
490 // Adds Digitizer task to the folder of PHOS tasks
491
492 //============================================================= YS
493 // The initialisation is now done by AliPHOSGetter
494
495 if( strcmp(GetTitle(), "") == 0 )
496 SetTitle("galice.root") ;
497
498 // the SDigits name is stored by AliPHOSGetter as the name of the TClones Array
499 // //YSAlice/WhiteBoard/SDigits/PHOS/headerFile/branchname and has branchTitle as title.
500
501 AliPHOSGetter * gime = AliPHOSGetter::GetInstance(GetTitle(), GetName()) ;
502 if ( gime == 0 ) {
503 cerr << "ERROR: AliPHOSDigitizer::Init -> Could not obtain the Getter object !" << endl ;
504 return kFALSE;
505 }
506
507 const AliPHOSGeometry * geom = gime->PHOSGeometry() ;
508 fEmcCrystals = geom->GetNModules() * geom->GetNCristalsInModule() ;
509
510 // create a folder on the white board //YSAlice/WhiteBoard/Digits/PHOS/headerFile/digitsTitle
511 gime->PostDigits(GetName() ) ;
512
513 //add Task to //YSAlice/tasks/Digitizer/PHOS
514 gime->PostDigitizer(this) ;
515
516 //Mark that we will use current header file
517 if(!fARD){
518 gime->PostSDigits(GetName(),GetTitle()) ;
519 gime->PostSDigitizer(GetName(),GetTitle()) ;
520 }
521 return kTRUE ;
522}
523
524//__________________________________________________________________
525void AliPHOSDigitizer::MixWith(const char* headerFile)
526{
527 // Allows to produce digits by superimposing background and signal event.
528 // It is assumed, that headers file with SIGNAL events is opened in
529 // the constructor.
530 // Sets the BACKGROUND event, with which the SIGNAL event is to be mixed
531 // Thus we avoid writing (changing) huge and expensive
532 // backgound files: all output will be writen into SIGNAL, i.e.
533 // opened in constructor file.
534 //
535 // One can open as many files to mix with as one needs.
536 // However only Sdigits with the same name (i.e. constructed with the same SDigitizer)
537 // can be mixed.
538
539 if( strcmp(GetName(), "") == 0 )
540 Init() ;
541
542 if(fARD){
543 cout << "Can not use this method under AliRunDigitizer " << endl ;
544 return ;
545 }
546
547 // check if the specified SDigits do not already exist on the White Board:
548 // //YSAlice/WhiteBoard/SDigits/PHOS/headerFile/sDigitsTitle
549
550 TString path = "YSAlice/WhiteBoard/SDigits/PHOS/" ;
551 path += headerFile ;
552 path += "/" ;
553 path += GetName() ;
554 if ( gROOT->FindObjectAny(path.Data()) ) {
555 cerr << "WARNING: AliPHOSDigitizer::MixWith -> Entry already exists, do not add" << endl ;
556 return;
557 }
558
559 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
560 gime->PostSDigits(GetName(),headerFile) ;
561
562 // check if the requested file is already open or exist and if SDigits Branch exist
563 TFile * file = (TFile*)gROOT->FindObject(headerFile);
564 if ( !file ) {
565 file = new TFile(headerFile, "READ") ;
566 if (!file) {
567 cerr << "ERROR: AliPHOSDigitizer::MixWith -> File " << headerFile << " does not exist!" << endl ;
568 return ;
569 }
570 }
571
572}
573
574//__________________________________________________________________
575void AliPHOSDigitizer::Print(Option_t* option)const {
576 // Print Digitizer's parameters
577 if( strcmp(GetName(), "") != 0 ){
578
579 cout << "------------------- "<< GetName() << " -------------" << endl ;
580 cout << "Digitizing sDigits from file(s): " <<endl ;
581
582 TCollection * folderslist = ((TFolder*)gROOT->FindObjectAny("YSAlice/WhiteBoard/SDigits/PHOS"))->GetListOfFolders() ;
583 TIter next(folderslist) ;
584 TFolder * folder = 0 ;
585
586 while ( (folder = (TFolder*)next()) ) {
587 if ( folder->FindObject(GetName()) )
588 cout << "Adding SDigits " << GetName() << " from " << folder->GetName() << endl ;
589 }
590 cout << endl ;
591 cout << "Writing digits to " << GetTitle() << endl ;
592
593 cout << endl ;
594 cout << "With following parameters: " << endl ;
595 cout << " Electronics noise in EMC (fPinNoise) = " << fPinNoise << endl ;
596 cout << " Threshold in EMC (fEMCDigitThreshold) = " << fEMCDigitThreshold << endl ; ;
597 cout << " Noise in CPV (fCPVNoise) = " << fCPVNoise << endl ;
598 cout << " Threshold in CPV (fCPVDigitThreshold) = " << fCPVDigitThreshold << endl ;
599 cout << "---------------------------------------------------" << endl ;
600 }
601 else
602 cout << "AliPHOSDigitizer not initialized " << endl ;
603
604}
605
606//__________________________________________________________________
607void AliPHOSDigitizer::PrintDigits(Option_t * option){
608 // Print a table of digits
609
610 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
611 TClonesArray * digits = gime->Digits() ;
612
613 cout << "AliPHOSDigitiser: event " << gAlice->GetEvNumber() << endl ;
614 cout << " Number of entries in Digits list " << digits->GetEntriesFast() << endl ;
615 cout << endl ;
616 if(strstr(option,"all")||strstr(option,"EMC")){
617
618 //loop over digits
619 AliPHOSDigit * digit;
620 cout << "Digit Id Amplitude Index " << " Nprim " << " Primaries list " << endl;
621 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
622 Int_t index ;
623 for (index = 0 ; (index < digits->GetEntries()) &&
624 (((AliPHOSDigit * ) digits->At(index))->GetId() <= maxEmc) ; index++) {
625 digit = (AliPHOSDigit * ) digits->At(index) ;
626 if(digit->GetNprimary() == 0) continue;
627 cout << setw(6) << digit->GetId() << " " << setw(10) << digit->GetAmp() << " "
628 << setw(6) << digit->GetIndexInList() << " "
629 << setw(5) << digit->GetNprimary() <<" ";
630
631 Int_t iprimary;
632 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++)
633 cout << setw(5) << digit->GetPrimary(iprimary+1) << " ";
634 cout << endl;
635 }
636 cout << endl;
637 }
638
639 if(strstr(option,"all")||strstr(option,"CPV")){
640
641 //loop over CPV digits
642 AliPHOSDigit * digit;
643 cout << "Digit Id " << " Amplitude " << " Index " << " Nprim " << " Primaries list " << endl;
644 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
645 Int_t index ;
646 for (index = 0 ; index < digits->GetEntries(); index++) {
647 digit = (AliPHOSDigit * ) digits->At(index) ;
648 if(digit->GetId() > maxEmc){
649 cout << setw(6) << digit->GetId() << " " << setw(10) << digit->GetAmp() << " "
650 << setw(6) << digit->GetIndexInList() << " "
651 << setw(5) << digit->GetNprimary() <<" ";
652
653 Int_t iprimary;
654 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++)
655 cout << setw(5) << digit->GetPrimary(iprimary+1) << " ";
656 cout << endl;
657 }
658 }
659 }
660
661}
662
663//__________________________________________________________________
664void AliPHOSDigitizer::SetSDigitsBranch(const char* title)
665{
666 // we set title (comment) of the SDigits branch in the first! header file
667 if( strcmp(GetName(), "") == 0 )
668 Init() ;
669
670 AliPHOSGetter::GetInstance()->SDigits()->SetName(title) ;
671
672}
673//__________________________________________________________________
674Float_t AliPHOSDigitizer::TimeOfNoise(void)
675{ // Calculates the time signal generated by noise
676 //to be rewritten, now returns just big number
677 return 1. ;
678
679}
680//____________________________________________________________________________
681void AliPHOSDigitizer::Reset()
682{
683 // sets current event number to the first simulated event
684
685 if( strcmp(GetName(), "") == 0 )
686 Init() ;
687
688 // Int_t inputs ;
689// for(inputs = 0; inputs < fNinputs ;inputs++)
690// fIevent->AddAt(-1, inputs ) ;
691
692}
693
694//____________________________________________________________________________
695void AliPHOSDigitizer::WriteDigits(Int_t event)
696{
697
698 // Makes TreeD in the output file.
699 // Check if branch already exists:
700 // if yes, exit without writing: ROOT TTree does not support overwriting/updating of
701 // already existing branches.
702 // else creates branch with Digits, named "PHOS", title "...",
703 // and branch "AliPHOSDigitizer", with the same title to keep all the parameters
704 // and names of files, from which digits are made.
705
706 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
707 TClonesArray * digits = gime->Digits(GetName()) ;
708
709 TTree * treeD ;
710
711 if(fARD)
712 treeD = fARD->GetTreeD() ;
713 else
714 treeD = gAlice->TreeD();
715
716 // create new branches
717 // -- generate file name if necessary
718 char * file =0;
719 if(gSystem->Getenv("CONFIG_SPLIT_FILE")){ //generating file name
720 file = new char[strlen(gAlice->GetBaseFile())+20] ;
721 sprintf(file,"%s/PHOS.Digits.root",gAlice->GetBaseFile()) ;
722 }
723
724 TDirectory *cwd = gDirectory;
725 // -- create Digits branch
726 Int_t bufferSize = 32000 ;
727 TBranch * digitsBranch = treeD->Branch("PHOS",&digits,bufferSize);
728 digitsBranch->SetTitle(GetName());
729 if (file) {
730 digitsBranch->SetFile(file);
731 TIter next( digitsBranch->GetListOfBranches());
732 TBranch * sbr ;
733 while ((sbr=(TBranch*)next())) {
734 sbr->SetFile(file);
735 }
736 cwd->cd();
737 }
738
739 // -- Create Digitizer branch
740 Int_t splitlevel = 0 ;
741 AliPHOSDigitizer * d = gime->Digitizer(GetName()) ;
742 TBranch * digitizerBranch = treeD->Branch("AliPHOSDigitizer", "AliPHOSDigitizer", &d,bufferSize,splitlevel);
743 digitizerBranch->SetTitle(GetName());
744 if (file) {
745 digitizerBranch->SetFile(file);
746 TIter next( digitizerBranch->GetListOfBranches());
747 TBranch * sbr;
748 while ((sbr=(TBranch*)next())) {
749 sbr->SetFile(file);
750 }
751 cwd->cd();
752 }
753
754 digitsBranch->Fill() ;
755 digitizerBranch->Fill() ;
756
757 treeD->Write(0,kOverwrite) ;
758
759}