]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALDigitizer.cxx
Fixing memory leaks
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALDigitizer.cxx
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 // 
20 //////////////////////////////////////////////////////////////////////////////
21 // Class performs digitization of Summable digits 
22 //  
23 // In addition it performs mixing of summable digits from different events.
24 //
25 // For each event two branches are created in TreeD:
26 //   "EMCAL" - list of digits
27 //   "AliEMCALDigitizer" - AliEMCALDigitizer 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 //
32 // Examples of use:
33 // root[0] AliEMCALDigitizer * d = new AliEMCALDigitizer() ;
34 // root[1] d->ExecuteTask()             
35 // Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
36 //                       //Digitizes SDigitis in all events found in file galice.root 
37 //
38 // root[2] AliEMCALDigitizer * d1 = new AliEMCALDigitizer("galice1.root") ;  
39 //                       // Will read sdigits from galice1.root
40 // root[3] d1->MixWith("galice2.root")       
41 // Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
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
51 ////////////////////////////////////////////////////////////////////////////////////
52 //
53 //*-- Author: Sahal Yacoob (LBL)
54 // based on : AliEMCALDigitizer
55 // Modif: 
56 //  August 2002 Yves Schutz: clone PHOS as closely as possible and intoduction
57 //                           of new  IO (à la PHOS)
58 ///_________________________________________________________________________________
59
60 // --- ROOT system ---
61 #include "TTree.h"
62 #include "TSystem.h"
63 #include "TBenchmark.h"
64
65 // --- Standard library ---
66
67 // --- AliRoot header files ---
68 #include "AliRunDigitizer.h"
69 #include "AliEMCALDigit.h"
70 #include "AliEMCAL.h"
71 #include "AliEMCALGetter.h"
72 #include "AliEMCALDigitizer.h"
73 #include "AliEMCALSDigitizer.h"
74 #include "AliEMCALGeometry.h"
75 #include "AliEMCALTick.h"
76
77 ClassImp(AliEMCALDigitizer)
78
79
80 //____________________________________________________________________________ 
81   AliEMCALDigitizer::AliEMCALDigitizer():AliDigitizer("",""),
82                                        fInput(0),
83                                        fInputFileNames(0x0),
84                                        fEventNames(0x0)
85 {
86   // ctor
87   InitParameters() ; 
88   fDefaultInit = kTRUE ; 
89   fManager = 0 ;                     // We work in the standalong mode
90   fEventFolderName = "" ; 
91 }
92
93 //____________________________________________________________________________ 
94 AliEMCALDigitizer::AliEMCALDigitizer(TString alirunFileName, TString eventFolderName):
95   AliDigitizer("EMCAL"+AliConfig::Instance()->GetDigitizerTaskName(), alirunFileName),
96   fInputFileNames(0), fEventNames(0), fEventFolderName(eventFolderName)
97 {
98   // ctor
99
100   InitParameters() ; 
101   Init() ;
102   fDefaultInit = kFALSE ; 
103   fManager = 0 ;                     // We work in the standalong mode
104 }
105
106 //____________________________________________________________________________ 
107 AliEMCALDigitizer::AliEMCALDigitizer(const AliEMCALDigitizer & d) : AliDigitizer(d)
108 {
109   // copyy ctor 
110
111   SetName(d.GetName()) ; 
112   SetTitle(d.GetTitle()) ; 
113   fDigitThreshold = d.fDigitThreshold ; 
114   fMeanPhotonElectron = d.fMeanPhotonElectron ; 
115   fPedestal           = d.fPedestal ; 
116   fSlope              = d.fSlope ; 
117   fPinNoise           = d.fPinNoise ; 
118   fTimeResolution     = d.fTimeResolution ; 
119   fTimeThreshold      = d.fTimeThreshold ; 
120   fTimeSignalLength   = d.fTimeSignalLength ; 
121   fADCchannelEC       = d.fADCchannelEC ; 
122   fADCpedestalEC      = d.fADCpedestalEC ; 
123   fNADCEC             = d.fNADCEC ;
124   fEventFolderName    = d.fEventFolderName;
125  }
126
127 //____________________________________________________________________________ 
128 AliEMCALDigitizer::AliEMCALDigitizer(AliRunDigitizer * rd):
129  AliDigitizer(rd,"EMCAL"+AliConfig::Instance()->GetDigitizerTaskName()),
130  fEventFolderName(0)
131 {
132   // ctor Init() is called by RunDigitizer
133   fManager = rd ; 
134   fEventFolderName = fManager->GetInputFolderName(0) ;
135   SetTitle(dynamic_cast<AliStream*>(fManager->GetInputStream(0))->GetFileName(0));
136   InitParameters() ; 
137   fDefaultInit = kFALSE ; 
138 }
139
140 //____________________________________________________________________________ 
141   AliEMCALDigitizer::~AliEMCALDigitizer()
142 {
143   AliEMCALGetter * gime =AliEMCALGetter::Instance(GetTitle(),fEventFolderName);
144   gime->EmcalLoader()->CleanDigitizer();
145   delete [] fInputFileNames ; 
146   delete [] fEventNames ; 
147
148 }
149
150 //____________________________________________________________________________
151 void AliEMCALDigitizer::Digitize(Int_t event) 
152
153
154   // Makes the digitization of the collected summable digits
155   // for this it first creates the array of all EMCAL modules
156   // filled with noise (different for EMC, CPV and PPSD) and
157   // after that adds contributions from SDigits. This design 
158   // helps to avoid scanning over the list of digits to add 
159   // contribution of any new SDigit.
160
161   AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName) ; 
162   Int_t ReadEvent = event ; 
163   if (fManager) 
164     ReadEvent = dynamic_cast<AliStream*>(fManager->GetInputStream(0))->GetCurrentEventNumber() ; 
165   Info("Digitize", "Adding event %d from input stream 0 %s %s", ReadEvent, GetTitle(), fEventFolderName.Data()) ; 
166   gime->Event(ReadEvent, "S") ;
167   TClonesArray * digits = gime->Digits() ; 
168   digits->Clear() ;
169
170   const AliEMCALGeometry *geom = gime->EMCALGeometry() ; 
171
172   Int_t nEMC = geom->GetNPhi()*geom->GetNZ(); //max number of digits possible
173   
174   Int_t absID ;
175
176   digits->Expand(nEMC) ;
177
178   // get first the sdigitizer from the tasks list (must have same name as the digitizer)
179   if ( !gime->SDigitizer() ) 
180     gime->LoadSDigitizer();
181   AliEMCALSDigitizer * sDigitizer = gime->SDigitizer(); 
182   
183   if ( !sDigitizer )
184     Fatal("Digitize", "SDigitizer with name %s %s not found", fEventFolderName.Data(), GetTitle() ) ; 
185
186   //take all the inputs to add together and load the SDigits
187   TObjArray * sdigArray = new TObjArray(fInput) ;
188   sdigArray->AddAt(gime->SDigits(), 0) ;
189   Int_t i ;
190   for(i = 1 ; i < fInput ; i++){
191     TString tempo(fEventNames[i]) ; 
192     tempo += i ;
193     AliEMCALGetter * gime = AliEMCALGetter::Instance(fInputFileNames[i], tempo) ; 
194     if (fManager) 
195       ReadEvent = dynamic_cast<AliStream*>(fManager->GetInputStream(i))->GetCurrentEventNumber() ; 
196     Info("Digitize", "Adding event %d from input stream %d %s %s", ReadEvent, i, fInputFileNames[i].Data(), tempo.Data()) ; 
197     gime->Event(ReadEvent,"S");
198     sdigArray->AddAt(gime->SDigits(), i) ;
199   }
200   
201   //Find the first tower with signal
202   Int_t nextSig = nEMC + 1 ; 
203   TClonesArray * sdigits ;  
204   for(i = 0 ; i < fInput ; i++){
205     sdigits = dynamic_cast<TClonesArray *>(sdigArray->At(i)) ;
206     if ( !sdigits->GetEntriesFast() )
207       continue ; 
208     Int_t curNext = dynamic_cast<AliEMCALDigit *>(sdigits->At(0))->GetId() ;
209      if(curNext < nextSig) 
210        nextSig = curNext ;
211   }
212
213   TArrayI index(fInput) ;
214   index.Reset() ;  //Set all indexes to zero
215
216   AliEMCALDigit * digit ;
217   AliEMCALDigit * curSDigit ;
218
219   TClonesArray * ticks = new TClonesArray("AliEMCALTick",1000) ;
220
221   //Put Noise contribution
222   for(absID = 1; absID <= nEMC; absID++){
223     Float_t amp = 0 ;
224     // amplitude set to zero, noise will be added later
225     new((*digits)[absID-1]) AliEMCALDigit( -1, -1, absID, 0, TimeOfNoise() ) ;
226     //look if we have to add signal?
227     digit = dynamic_cast<AliEMCALDigit *>(digits->At(absID-1)) ;
228     
229     if(absID==nextSig){
230       //Add SDigits from all inputs    
231       ticks->Clear() ;
232       Int_t contrib = 0 ;
233       Float_t a = digit->GetAmp() ;
234       Float_t b = TMath::Abs( a /fTimeSignalLength) ;
235       //Mark the beginning of the signal
236       new((*ticks)[contrib++]) AliEMCALTick(digit->GetTime(),0, b);  
237       //Mark the end of the signal     
238       new((*ticks)[contrib++]) AliEMCALTick(digit->GetTime()+fTimeSignalLength, -a, -b);
239       
240       // loop over input
241       for(i = 0; i< fInput ; i++){  //loop over (possible) merge sources
242         if(dynamic_cast<TClonesArray *>(sdigArray->At(i))->GetEntriesFast() > index[i] )
243           curSDigit = dynamic_cast<AliEMCALDigit*>(dynamic_cast<TClonesArray *>(sdigArray->At(i))->At(index[i])) ;      
244         else
245           curSDigit = 0 ;
246         //May be several digits will contribute from the same input
247         while(curSDigit && (curSDigit->GetId() == absID)){         
248           //Shift primary to separate primaries belonging different inputs
249           Int_t primaryoffset ;
250           if(fManager)
251             primaryoffset = fManager->GetMask(i) ; 
252           else
253             primaryoffset = i ;
254           curSDigit->ShiftPrimary(primaryoffset) ;
255           
256           a = curSDigit->GetAmp() ;
257           b = a /fTimeSignalLength ;
258           new((*ticks)[contrib++]) AliEMCALTick(curSDigit->GetTime(),0, b);  
259           new((*ticks)[contrib++]) AliEMCALTick(curSDigit->GetTime()+fTimeSignalLength, -a, -b); 
260
261           *digit = *digit + *curSDigit ;  //add energies
262
263           index[i]++ ;
264           if( dynamic_cast<TClonesArray *>(sdigArray->At(i))->GetEntriesFast() > index[i] )
265             curSDigit = dynamic_cast<AliEMCALDigit*>(dynamic_cast<TClonesArray *>(sdigArray->At(i))->At(index[i])) ;            
266           else
267             curSDigit = 0 ;
268         }
269       }
270       // add fluctuations for photo-electron creation
271       amp = sDigitizer->Calibrate(digit->GetAmp()) ; // GeV
272       amp *= static_cast<Float_t>(gRandom->Poisson(fMeanPhotonElectron)) / static_cast<Float_t>(fMeanPhotonElectron) ;
273   
274       //calculate and set time
275       Float_t time = FrontEdgeTime(ticks) ;
276       digit->SetTime(time) ;
277
278       //Find next signal module
279       nextSig = nEMC + 1 ;
280       for(i = 0 ; i < fInput ; i++){
281         sdigits = dynamic_cast<TClonesArray *>(sdigArray->At(i)) ;
282         Int_t curNext = nextSig ;
283         if(sdigits->GetEntriesFast() > index[i] ){
284           curNext = dynamic_cast<AliEMCALDigit *>(sdigits->At(index[i]))->GetId() ;       
285         }
286         if(curNext < nextSig) nextSig = curNext ;
287       }
288     }
289     // add the noise now
290     amp += TMath::Abs(gRandom->Gaus(0., fPinNoise)) ;
291     digit->SetAmp(sDigitizer->Digitize(amp)) ;  
292   }
293   
294   ticks->Delete() ;
295   delete ticks ;
296
297   delete sdigArray ; //We should not delete its contents
298
299   //remove digits below thresholds
300   for(i = 0 ; i < nEMC ; i++){
301     digit = dynamic_cast<AliEMCALDigit*>( digits->At(i) ) ;
302     Float_t threshold = fDigitThreshold ; 
303     if(sDigitizer->Calibrate( digit->GetAmp() ) < threshold)
304       digits->RemoveAt(i) ;
305     else 
306       digit->SetTime(gRandom->Gaus(digit->GetTime(),fTimeResolution) ) ;
307   }
308   
309   digits->Compress() ;  
310   
311   Int_t ndigits = digits->GetEntriesFast() ; 
312   digits->Expand(ndigits) ;
313   
314   //Set indexes in list of digits
315   for (i = 0 ; i < ndigits ; i++) { 
316     digit = dynamic_cast<AliEMCALDigit *>( digits->At(i) ) ; 
317     digit->SetIndexInList(i) ; 
318     Float_t energy = sDigitizer->Calibrate(digit->GetAmp()) ;
319     digit->SetAmp(DigitizeEnergy(energy) ) ;
320   }
321 }
322
323 //____________________________________________________________________________
324
325 Int_t AliEMCALDigitizer::DigitizeEnergy(Float_t energy)
326
327   Int_t channel = -999; 
328   channel = static_cast<Int_t> (TMath::Ceil( (energy + fADCpedestalEC)/fADCchannelEC ))  ;
329   if(channel > fNADCEC ) 
330     channel =  fNADCEC ; 
331   return channel ;
332 }
333
334 //____________________________________________________________________________
335 void AliEMCALDigitizer::Exec(Option_t *option) 
336
337   // Steering method to process digitization for events
338   // in the range from fFirstEvent to fLastEvent.
339   // This range is optionally set by SetEventRange().
340   // if fLastEvent=-1, then process events until the end.
341   // by default fLastEvent = fFirstEvent (process only one event)
342
343   if (!fInit) { // to prevent overwrite existing file
344     Error( "Exec", "Give a version name different from %s", fEventFolderName.Data() ) ;
345     return ;
346   } 
347
348   if (strstr(option,"print")) {
349     Print();
350     return ; 
351   }
352   
353   if(strstr(option,"tim"))
354     gBenchmark->Start("EMCALDigitizer");
355   
356   AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle()) ;
357    
358   if (fLastEvent == -1) 
359     fLastEvent = gime->MaxEvent() - 1 ;
360   else if (fManager) 
361     fLastEvent = fFirstEvent ; 
362
363   Int_t nEvents   = fLastEvent - fFirstEvent + 1;
364   
365   Int_t ievent ;
366
367   for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) {
368   
369     gime->Event(ievent,"S") ; 
370
371     Digitize(ievent) ; //Add prepared SDigits to digits and add the noise
372
373     WriteDigits() ;
374
375     if(strstr(option,"deb"))
376       PrintDigits(option);
377
378     //increment the total number of Digits per run 
379     fDigitsInRun += gime->Digits()->GetEntriesFast() ;  
380   }
381   
382   if(strstr(option,"tim")){
383     gBenchmark->Stop("EMCALDigitizer");
384     printf("Exec: took %f seconds for Digitizing %f seconds per event", 
385          gBenchmark->GetCpuTime("EMCALDigitizer"), gBenchmark->GetCpuTime("EMCALDigitizer")/nEvents ) ;
386   } 
387 }
388
389 //____________________________________________________________________________ 
390 Float_t AliEMCALDigitizer::FrontEdgeTime(TClonesArray * ticks) 
391
392   //  Returns the shortest time among all time ticks
393
394   ticks->Sort() ; //Sort in accordance with times of ticks
395   TIter it(ticks) ;
396   AliEMCALTick * ctick = (AliEMCALTick *) it.Next() ;
397   Float_t time = ctick->CrossingTime(fTimeThreshold) ;    
398   
399   AliEMCALTick * t ;  
400   while((t=(AliEMCALTick*) it.Next())){
401     if(t->GetTime() < time)  //This tick starts before crossing
402       *ctick+=*t ;
403     else
404       return time ;
405     
406     time = ctick->CrossingTime(fTimeThreshold) ;    
407   }
408   return time ;
409 }
410
411 //____________________________________________________________________________ 
412 Bool_t AliEMCALDigitizer::Init()
413 {
414   // Makes all memory allocations
415   fInit = kTRUE ; 
416   AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName) ;  
417   if ( gime == 0 ) {
418     Error("Init", "Could not obtain the Getter object for file %s and event %s !", GetTitle(), fEventFolderName.Data()) ;   
419     return kFALSE;
420   } 
421   TString opt("Digits") ; 
422   if(gime->VersionExists(opt) ) { 
423     Error( "Init", "Give a version name different from %s", fEventFolderName.Data() ) ;
424     fInit = kFALSE ; 
425   }
426
427   // Post Digitizer to the white board
428   gime->PostDigitizer(this) ;
429   
430   fFirstEvent = 0 ; 
431   fLastEvent = fFirstEvent ; 
432   
433   if(fManager)
434     fInput = fManager->GetNinputs() ; 
435   else 
436     fInput           = 1 ;
437
438   fInputFileNames  = new TString[fInput] ; 
439   fEventNames      = new TString[fInput] ; 
440   fInputFileNames[0] = GetTitle() ; 
441   fEventNames[0]     = fEventFolderName.Data() ; 
442   Int_t index ; 
443   for (index = 1 ; index < fInput ; index++) {
444     fInputFileNames[index] = dynamic_cast<AliStream*>(fManager->GetInputStream(index))->GetFileName(0); 
445     TString tempo = fManager->GetInputFolderName(index) ;
446     fEventNames[index] = tempo.Remove(tempo.Length()-1) ; // strip of the stream number added bt fManager 
447   }
448   
449   //to prevent cleaning of this object while GetEvent is called
450   gime->EmcalLoader()->GetDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE);
451   
452   return fInit ;    
453 }
454
455 //____________________________________________________________________________ 
456 void AliEMCALDigitizer::InitParameters()
457 {
458   fMeanPhotonElectron = 18200 ; // electrons per GeV
459   fPinNoise           = 0.003 ; // noise equivalent GeV (random choice)
460   if (fPinNoise == 0. ) 
461     Warning("InitParameters", "No noise added\n") ; 
462   fDigitThreshold     = fPinNoise * 3; //2 sigma
463   fTimeResolution     = 1.0e-9 ;
464   fTimeSignalLength   = 1.0e-9 ;
465
466   fADCchannelEC    = 0.00305;                     // width of one ADC channel in GeV - HG fix so that we see 200 GeV gammas
467   fADCpedestalEC   = 0.005 ;                       // GeV
468   fNADCEC          = (Int_t) TMath::Power(2,16) ;  // number of channels in Tower ADC
469
470   fTimeThreshold      = 0.001*10000000 ; //Means 1 MeV in terms of SDigits amplitude
471  
472 }
473
474 //__________________________________________________________________
475 void AliEMCALDigitizer::MixWith(TString alirunFileName, TString eventFolderName)
476 {
477   // Allows to produce digits by superimposing background and signal event.
478   // It is assumed, that headers file with SIGNAL events is opened in 
479   // the constructor. 
480   // Sets the BACKGROUND event, with which the SIGNAL event is to be mixed 
481   // Thus we avoid writing (changing) huge and expensive 
482   // backgound files: all output will be writen into SIGNAL, i.e. 
483   // opened in constructor file. 
484   //
485   // One can open as many files to mix with as one needs.
486   // However only Sdigits with the same name (i.e. constructed with the same SDigitizer)
487   // can be mixed.
488
489   if( strcmp(GetName(), "") == 0 )
490     Init() ;
491   
492   if(fManager){
493     Error("MixWith", "Cannot use this method under AliRunDigitizer") ;
494     return ;
495   } 
496   // looking for file which contains AliRun
497   if (gSystem->AccessPathName(alirunFileName)) {// file does not exist
498     Error("MixWith", "File %s does not exist!", alirunFileName.Data()) ;
499     return ; 
500   }
501   // looking for the file which contains SDigits
502   AliEMCALGetter * gime = AliEMCALGetter::Instance() ; 
503   TString fileName( gime->GetSDigitsFileName() ) ; 
504     if ( eventFolderName != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name 
505       fileName = fileName.ReplaceAll(".root", "") + "_" + eventFolderName + ".root" ;
506     if ( (gSystem->AccessPathName(fileName)) ) { 
507       Error("MixWith", "The file %s does not exist!", fileName.Data()) ;
508       return ;
509     }
510     // need to increase the arrays
511     TString tempo = fInputFileNames[fInput-1] ; 
512     delete [] fInputFileNames ; 
513     fInputFileNames = new TString[fInput+1] ; 
514     fInputFileNames[fInput-1] = tempo ; 
515  
516     tempo = fEventNames[fInput-1] ; 
517     delete [] fEventNames ; 
518     fEventNames = new TString[fInput+1] ; 
519     fEventNames[fInput-1] = tempo ; 
520
521     fInputFileNames[fInput] = alirunFileName ; 
522     fEventNames[fInput]     = eventFolderName ;
523     fInput++ ;
524 }  
525  
526 //__________________________________________________________________
527 void AliEMCALDigitizer::Print()const 
528 {
529   // Print Digitizer's parameters
530   printf("Print: \n------------------- %s -------------", GetName() ) ; 
531   if( strcmp(fEventFolderName.Data(), "") != 0 ){
532     printf(" Writing Digits to branch with title  %s\n", fEventFolderName.Data()) ;
533     
534     Int_t nStreams ; 
535     if (fManager) 
536       nStreams =  GetNInputStreams() ;
537     else 
538       nStreams = fInput ; 
539     
540     Int_t index = 0 ;  
541     for (index = 0 ; index < nStreams ; index++) {  
542       TString tempo(fEventNames[index]) ; 
543       tempo += index ;
544       AliEMCALGetter * gime = AliEMCALGetter::Instance(fInputFileNames[index], tempo) ; 
545       TString fileName( gime->GetSDigitsFileName() ) ; 
546       if ( fEventNames[index] != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name 
547         fileName = fileName.ReplaceAll(".root", "") + "_" + fEventNames[index]  + ".root" ;
548       printf ("Adding SDigits from %s %s\n", fInputFileNames[index].Data(), fileName.Data()) ; 
549     }
550     AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName) ; 
551     printf("\nWriting digits to %s", gime->GetDigitsFileName().Data()) ;
552     
553     printf("\nWith following parameters:\n") ;
554     
555     printf("    Electronics noise in EMC (fPinNoise) = %f\n", fPinNoise) ;
556     printf("    Threshold  in EMC  (fDigitThreshold) = %f\n", fDigitThreshold)  ;
557     printf("---------------------------------------------------\n")  ;
558   }
559   else
560     printf("Print: AliEMCALDigitizer not initialized") ; 
561 }
562
563 //__________________________________________________________________
564 void AliEMCALDigitizer::PrintDigits(Option_t * option){
565     
566   AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName) ; 
567   TClonesArray * digits = gime->Digits() ;
568   
569   printf("PrintDigits: %d", digits->GetEntriesFast()) ; 
570   printf("\nevent %d", gAlice->GetEvNumber()) ;
571   printf("\n       Number of entries in Digits list %d", digits->GetEntriesFast() )  ;  
572   
573   if(strstr(option,"all")){  
574     //loop over digits
575     AliEMCALDigit * digit;
576     printf("\nEMC digits (with primaries):\n")  ;
577     printf("\n   Id  Amplitude    Time          Index Nprim: Primaries list \n") ;    
578     Int_t index ;
579     for (index = 0 ; index < digits->GetEntries() ; index++) {
580       digit = dynamic_cast<AliEMCALDigit *>(digits->At(index)) ;
581       printf("\n%6d  %8d    %6.5e %4d      %2d : ",
582               digit->GetId(), digit->GetAmp(), digit->GetTime(), digit->GetIndexInList(), digit->GetNprimary()) ;  
583       Int_t iprimary;
584       for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
585         printf("%d ",digit->GetPrimary(iprimary+1) ) ; 
586       }
587     }   
588   }
589 }
590
591 //__________________________________________________________________
592 Float_t AliEMCALDigitizer::TimeOfNoise(void)
593 {  
594   // Calculates the time signal generated by noise
595   Info("TimeOfNoise", "Change me") ; 
596   return gRandom->Rndm() * 1.28E-5;
597 }
598
599 //__________________________________________________________________
600 void AliEMCALDigitizer::Unload() 
601 {  
602   // Unloads the SDigits and Digits
603   Int_t i ; 
604   for(i = 1 ; i < fInput ; i++){
605     TString tempo(fEventNames[i]) ; 
606     tempo += i ;
607     AliEMCALGetter * gime = AliEMCALGetter::Instance(fInputFileNames[i], tempo) ; 
608     gime->EmcalLoader()->UnloadSDigits() ; 
609   }
610   
611   AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName) ; 
612   gime->EmcalLoader()->UnloadDigits() ; 
613 }
614
615 //_________________________________________________________________________________________
616 void AliEMCALDigitizer::WriteDigits()
617 {
618
619   // Makes TreeD in the output file. 
620   // Check if branch already exists: 
621   //   if yes, exit without writing: ROOT TTree does not support overwriting/updating of 
622   //      already existing branches. 
623   //   else creates branch with Digits, named "EMCAL", title "...",
624   //      and branch "AliEMCALDigitizer", with the same title to keep all the parameters
625   //      and names of files, from which digits are made.
626
627   AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName) ; 
628   const TClonesArray * digits = gime->Digits() ; 
629   TTree * treeD = gime->TreeD(); 
630
631   // -- create Digits branch
632   Int_t bufferSize = 32000 ;    
633   TBranch * digitsBranch = treeD->Branch("EMCAL",&digits,bufferSize);
634   digitsBranch->SetTitle(fEventFolderName);
635   digitsBranch->Fill() ;
636   
637   gime->WriteDigits("OVERWRITE");
638   gime->WriteDigitizer("OVERWRITE");
639
640   Unload() ; 
641
642 }
643