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