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