]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSDigitizer.cxx
Bug correction
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigitizer.cxx
CommitLineData
990119d6 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
88cb7938 18
990119d6 19//_________________________________________________________________________
990119d6 20//*-- Author : Dmitri Peressounko (SUBATECH & Kurchatov Institute)
21//////////////////////////////////////////////////////////////////////////////
a4e98857 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).
990119d6 24// In addition it performs mixing of summable digits from different events.
7b7c1533 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
bca3b32a 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//
a4e98857 34// Note, that one can set a title for new digits branch, and repeat digitization with
bca3b32a 35// another set of parameters.
36//
a4e98857 37// Use case:
990119d6 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
bca3b32a 42//
8cb3533f 43// root[2] AliPHOSDigitizer * d1 = new AliPHOSDigitizer("galice1.root") ;
44// // Will read sdigits from galice1.root
45// root[3] d1->MixWith("galice2.root")
990119d6 46// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
a4e98857 47// // Reads another set of sdigits from galice2.root
8cb3533f 48// root[3] d1->MixWith("galice3.root")
a4e98857 49// // Reads another set of sdigits from galice3.root
8cb3533f 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
990119d6 56//
990119d6 57
58// --- ROOT system ---
990119d6 59#include "TTree.h"
60#include "TSystem.h"
8cb3533f 61#include "TBenchmark.h"
e957fea8 62#include "TRandom.h"
ba54256b 63
990119d6 64// --- Standard library ---
65
66// --- AliRoot header files ---
e957fea8 67
3f81a70b 68#include "AliRunDigitizer.h"
990119d6 69#include "AliPHOSDigit.h"
7b7c1533 70#include "AliPHOSGetter.h"
990119d6 71#include "AliPHOSDigitizer.h"
72#include "AliPHOSSDigitizer.h"
8cb3533f 73#include "AliPHOSGeometry.h"
7437a0f7 74#include "AliPHOSTick.h"
990119d6 75
76ClassImp(AliPHOSDigitizer)
77
78
79//____________________________________________________________________________
88cb7938 80 AliPHOSDigitizer::AliPHOSDigitizer():AliDigitizer("",""),
81 fInput(0),
82 fInputFileNames(0x0),
83 fEventNames(0x0)
990119d6 84{
85 // ctor
8d0f3f77 86 InitParameters() ;
9bd3caba 87 fDefaultInit = kTRUE ;
fbf811ec 88 fManager = 0 ; // We work in the standalong mode
88cb7938 89 fEventFolderName = "" ;
90}
3f81a70b 91
92//____________________________________________________________________________
e191bb57 93AliPHOSDigitizer::AliPHOSDigitizer(TString alirunFileName,
94 TString eventFolderName):
95 AliDigitizer("PHOS"+AliConfig::Instance()->GetDigitizerTaskName(),
96 alirunFileName),
88cb7938 97 fInputFileNames(0), fEventNames(0), fEventFolderName(eventFolderName)
3f81a70b 98{
99 // ctor
8d0f3f77 100 InitParameters() ;
3f81a70b 101 Init() ;
92f521a9 102 fDefaultInit = kFALSE ;
88cb7938 103 fManager = 0 ; // We work in the standalong mode
104}
105
106//____________________________________________________________________________
107AliPHOSDigitizer::AliPHOSDigitizer(const AliPHOSDigitizer & d)
a8c47ab6 108 : AliDigitizer(d)
88cb7938 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;
990119d6 128}
129
990119d6 130//____________________________________________________________________________
88cb7938 131AliPHOSDigitizer::AliPHOSDigitizer(AliRunDigitizer * rd):
e191bb57 132 AliDigitizer(rd,"PHOS"+AliConfig::Instance()->GetDigitizerTaskName()),
88cb7938 133 fEventFolderName(0)
990119d6 134{
45fa49ca 135 // ctor Init() is called by RunDigitizer
88cb7938 136 fManager = rd ;
8da7719d 137 fEventFolderName = fManager->GetInputFolderName(0) ;
88cb7938 138 SetTitle(dynamic_cast<AliStream*>(fManager->GetInputStream(0))->GetFileName(0));
b22e4735 139 InitParameters() ;
fbf811ec 140 fDefaultInit = kFALSE ;
990119d6 141}
142
143//____________________________________________________________________________
144 AliPHOSDigitizer::~AliPHOSDigitizer()
145{
146 // dtor
88cb7938 147 delete [] fInputFileNames ;
148 delete [] fEventNames ;
149
990119d6 150}
151
152//____________________________________________________________________________
fc7e2f43 153void AliPHOSDigitizer::Digitize(Int_t event)
a4e98857 154{
155
156 // Makes the digitization of the collected summable digits.
157 // It first creates the array of all PHOS modules
dc986a1d 158 // filled with noise (different for EMC, and CPV) and
a4e98857 159 // then adds contributions from SDigits.
160 // This design avoids scanning over the list of digits to add
161 // contribution to new SDigits only.
990119d6 162
88cb7938 163 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName) ;
45fa49ca 164 Int_t ReadEvent = event ;
165 if (fManager)
166 ReadEvent = dynamic_cast<AliStream*>(fManager->GetInputStream(0))->GetCurrentEventNumber() ;
b67f6b2d 167 Info("Digitize", "Adding event %d from input stream 0 %s %s", ReadEvent, GetTitle(), fEventFolderName.Data()) ;
45fa49ca 168 gime->Event(ReadEvent, "S") ;
88cb7938 169 TClonesArray * digits = gime->Digits() ;
7b7c1533 170 digits->Clear() ;
990119d6 171
7b7c1533 172 const AliPHOSGeometry *geom = gime->PHOSGeometry() ;
990119d6 173 //Making digits with noise, first EMC
174 Int_t nEMC = geom->GetNModules()*geom->GetNPhi()*geom->GetNZ();
175
176 Int_t nCPV ;
990119d6 177 Int_t absID ;
990119d6 178
88cb7938 179 nCPV = nEMC + geom->GetNumberOfCPVPadsZ() * geom->GetNumberOfCPVPadsPhi() * geom->GetNModules() ;
180
9688c1dd 181 digits->Expand(nCPV) ;
8cb3533f 182
88cb7938 183 // get first the sdigitizer from the tasks list
184 if ( !gime->SDigitizer() )
185 gime->LoadSDigitizer();
186 AliPHOSSDigitizer * sDigitizer = gime->SDigitizer();
187
188 if ( !sDigitizer )
b67f6b2d 189 Fatal("Digitize", "SDigitizer with name %s %s not found", GetTitle(), fEventFolderName.Data() ) ;
88cb7938 190
191 //take all the inputs to add together and load the SDigits
192 TObjArray * sdigArray = new TObjArray(fInput) ;
193 sdigArray->AddAt(gime->SDigits(), 0) ;
194 Int_t i ;
195 for(i = 1 ; i < fInput ; i++){
196 TString tempo(fEventNames[i]) ;
197 tempo += i ;
45fa49ca 198 AliPHOSGetter * gime = AliPHOSGetter::Instance(fInputFileNames[i], tempo) ;
199 if (fManager)
200 ReadEvent = dynamic_cast<AliStream*>(fManager->GetInputStream(i))->GetCurrentEventNumber() ;
b67f6b2d 201 Info("Digitize", "Adding event %d from input stream %d %s %s", ReadEvent, i, fInputFileNames[i].Data(), tempo.Data()) ;
45fa49ca 202 gime->Event(ReadEvent,"S");
88cb7938 203 sdigArray->AddAt(gime->SDigits(), i) ;
38bb0fd5 204 }
9688c1dd 205
7a9d98f9 206 //Find the first crystall with signal
9688c1dd 207 Int_t nextSig = 200000 ;
88cb7938 208 TClonesArray * sdigits ;
209 for(i = 0 ; i < fInput ; i++){
210 sdigits = dynamic_cast<TClonesArray *>(sdigArray->At(i)) ;
a6eedfad 211 if ( !sdigits->GetEntriesFast() )
7a9d98f9 212 continue ;
88cb7938 213 Int_t curNext = dynamic_cast<AliPHOSDigit *>(sdigits->At(0))->GetId() ;
214 if(curNext < nextSig)
215 nextSig = curNext ;
9688c1dd 216 }
88cb7938 217
218 TArrayI index(fInput) ;
9688c1dd 219 index.Reset() ; //Set all indexes to zero
88cb7938 220
9688c1dd 221 AliPHOSDigit * digit ;
222 AliPHOSDigit * curSDigit ;
88cb7938 223
7437a0f7 224 TClonesArray * ticks = new TClonesArray("AliPHOSTick",1000) ;
88cb7938 225
9688c1dd 226 //Put Noise contribution
88cb7938 227 for(absID = 1 ; absID <= nEMC ; absID++){
9688c1dd 228 Float_t noise = gRandom->Gaus(0., fPinNoise) ;
88cb7938 229 new((*digits)[absID-1]) AliPHOSDigit( -1, absID, sDigitizer->Digitize(noise), TimeOfNoise() ) ;
9688c1dd 230 //look if we have to add signal?
88cb7938 231 digit = dynamic_cast<AliPHOSDigit *>(digits->At(absID-1)) ;
232
9688c1dd 233 if(absID==nextSig){
234 //Add SDigits from all inputs
7437a0f7 235 ticks->Clear() ;
9688c1dd 236 Int_t contrib = 0 ;
7437a0f7 237 Float_t a = digit->GetAmp() ;
88cb7938 238 Float_t b = TMath::Abs( a / fTimeSignalLength) ;
239 //Mark the beginning of the signal
7437a0f7 240 new((*ticks)[contrib++]) AliPHOSTick(digit->GetTime(),0, b);
241 //Mark the end of the ignal
242 new((*ticks)[contrib++]) AliPHOSTick(digit->GetTime()+fTimeSignalLength, -a, -b);
88cb7938 243
9688c1dd 244 //loop over inputs
88cb7938 245 for(i = 0 ; i < fInput ; i++){
246 if( dynamic_cast<TClonesArray *>(sdigArray->At(i))->GetEntriesFast() > index[i] )
247 curSDigit = dynamic_cast<AliPHOSDigit*>(dynamic_cast<TClonesArray *>(sdigArray->At(i))->At(index[i])) ;
5c9dfca0 248 else
249 curSDigit = 0 ;
9688c1dd 250 //May be several digits will contribute from the same input
251 while(curSDigit && curSDigit->GetId() == absID){
252 //Shift primary to separate primaries belonging different inputs
253 Int_t primaryoffset ;
9891b76e 254 if(fManager)
255 primaryoffset = fManager->GetMask(i) ;
9688c1dd 256 else
21c293b7 257 primaryoffset = 10000000*i ;
258 curSDigit->ShiftPrimary(primaryoffset) ;
7437a0f7 259
260 a = curSDigit->GetAmp() ;
261 b = a /fTimeSignalLength ;
262 new((*ticks)[contrib++]) AliPHOSTick(curSDigit->GetTime(),0, b);
263 new((*ticks)[contrib++]) AliPHOSTick(curSDigit->GetTime()+fTimeSignalLength, -a, -b);
88cb7938 264
9688c1dd 265 *digit = *digit + *curSDigit ; //add energies
88cb7938 266
9688c1dd 267 index[i]++ ;
88cb7938 268 if( dynamic_cast<TClonesArray *>(sdigArray->At(i))->GetEntriesFast() > index[i] )
269 curSDigit = dynamic_cast<AliPHOSDigit*>(dynamic_cast<TClonesArray *>(sdigArray->At(i))->At(index[i])) ;
5c9dfca0 270 else
271 curSDigit = 0 ;
9688c1dd 272 }
273 }
88cb7938 274
9688c1dd 275 //calculate and set time
7437a0f7 276 Float_t time = FrontEdgeTime(ticks) ;
9688c1dd 277 digit->SetTime(time) ;
88cb7938 278
9688c1dd 279 //Find next signal module
7437a0f7 280 nextSig = 200000 ;
88cb7938 281 for(i = 0 ; i < fInput ; i++){
282 sdigits = dynamic_cast<TClonesArray *>(sdigArray->At(i)) ;
5c9dfca0 283 Int_t curNext = nextSig ;
284 if(sdigits->GetEntriesFast() > index[i] ){
88cb7938 285 curNext = dynamic_cast<AliPHOSDigit *>(sdigits->At(index[i]))->GetId() ;
5c9dfca0 286 }
9688c1dd 287 if(curNext < nextSig) nextSig = curNext ;
7b7c1533 288 }
289 }
990119d6 290 }
3f81a70b 291
7437a0f7 292 ticks->Delete() ;
293 delete ticks ;
88cb7938 294
9688c1dd 295 //Now CPV digits (different noise and no timing)
296 for(absID = nEMC+1; absID <= nCPV; absID++){
297 Float_t noise = gRandom->Gaus(0., fCPVNoise) ;
298 new((*digits)[absID-1]) AliPHOSDigit( -1,absID,sDigitizer->Digitize(noise), TimeOfNoise() ) ;
299 //look if we have to add signal?
300 if(absID==nextSig){
88cb7938 301 digit = dynamic_cast<AliPHOSDigit *>(digits->At(absID-1)) ;
9688c1dd 302 //Add SDigits from all inputs
88cb7938 303 for(i = 0 ; i < fInput ; i++){
304 if( dynamic_cast<TClonesArray *>(sdigArray->At(i))->GetEntriesFast() > index[i] )
305 curSDigit = dynamic_cast<AliPHOSDigit*>( dynamic_cast<TClonesArray *>(sdigArray->At(i))->At(index[i])) ;
5c9dfca0 306 else
307 curSDigit = 0 ;
a6eedfad 308
9688c1dd 309 //May be several digits will contribute from the same input
310 while(curSDigit && curSDigit->GetId() == absID){
311 //Shift primary to separate primaries belonging different inputs
312 Int_t primaryoffset ;
9891b76e 313 if(fManager)
314 primaryoffset = fManager->GetMask(i) ;
9688c1dd 315 else
316 primaryoffset = 10000000*i ;
317 curSDigit->ShiftPrimary(primaryoffset) ;
318
319 //add energies
320 *digit = *digit + *curSDigit ;
321 index[i]++ ;
88cb7938 322 if( dynamic_cast<TClonesArray *>(sdigArray->At(i))->GetEntriesFast() > index[i] )
323 curSDigit = dynamic_cast<AliPHOSDigit*>( dynamic_cast<TClonesArray *>(sdigArray->At(i))->At(index[i]) ) ;
5c9dfca0 324 else
325 curSDigit = 0 ;
9688c1dd 326 }
327 }
a6eedfad 328
9688c1dd 329 //Find next signal module
a6eedfad 330 nextSig = 200000 ;
88cb7938 331 for(i = 0 ; i < fInput ; i++){
332 sdigits = dynamic_cast<TClonesArray *>(sdigArray->At(i)) ;
5c9dfca0 333 Int_t curNext = nextSig ;
334 if(sdigits->GetEntriesFast() > index[i] )
88cb7938 335 curNext = dynamic_cast<AliPHOSDigit *>( sdigits->At(index[i]) )->GetId() ;
9688c1dd 336 if(curNext < nextSig) nextSig = curNext ;
337 }
338
339 }
340 }
88cb7938 341
342 delete sdigArray ; //We should not delete its contents
9688c1dd 343
990119d6 344 //remove digits below thresholds
88cb7938 345 for(i = 0 ; i < nEMC ; i++){
548f0134 346 digit = dynamic_cast<AliPHOSDigit*>( digits->At(i) ) ;
aaf8a71c 347 if(sDigitizer->Calibrate( digit->GetAmp() ) < fEMCDigitThreshold)
a6eedfad 348 digits->RemoveAt(i) ;
aaf8a71c 349 else
350 digit->SetTime(gRandom->Gaus(digit->GetTime(),fTimeResolution) ) ;
351 }
352
a6eedfad 353
354 for(i = nEMC; i < nCPV ; i++)
88cb7938 355 if( sDigitizer->Calibrate( dynamic_cast<AliPHOSDigit*>(digits->At(i))->GetAmp() ) < fCPVDigitThreshold )
a6eedfad 356 digits->RemoveAt(i) ;
9688c1dd 357
7b7c1533 358 digits->Compress() ;
990119d6 359
7b7c1533 360 Int_t ndigits = digits->GetEntriesFast() ;
7b7c1533 361 digits->Expand(ndigits) ;
990119d6 362
3758d9fc 363 //Set indexes in list of digits and make true digitization of the energy
990119d6 364 for (i = 0 ; i < ndigits ; i++) {
548f0134 365 digit = dynamic_cast<AliPHOSDigit*>( digits->At(i) ) ;
990119d6 366 digit->SetIndexInList(i) ;
f672adc8 367 Float_t energy = sDigitizer->Calibrate(digit->GetAmp()) ;
3758d9fc 368 digit->SetAmp(DigitizeEnergy(energy,digit->GetId()) ) ;
990119d6 369 }
7b7c1533 370}
548f0134 371
3758d9fc 372//____________________________________________________________________________
373Int_t AliPHOSDigitizer::DigitizeEnergy(Float_t energy, Int_t absId)
374{
0bc3b8ed 375 // Returns digitized value of the energy in a cell absId
376
3758d9fc 377 Int_t chanel ;
378 if(absId <= fEmcCrystals){ //digitize as EMC
379 chanel = (Int_t) TMath::Ceil((energy - fADCpedestalEmc)/fADCchanelEmc) ;
380 if(chanel > fNADCemc ) chanel = fNADCemc ;
381 }
382 else{ //Digitize as CPV
383 chanel = (Int_t) TMath::Ceil((energy - fADCpedestalCpv)/fADCchanelCpv) ;
384 if(chanel > fNADCcpv ) chanel = fNADCcpv ;
385 }
386 return chanel ;
387}
548f0134 388
7b7c1533 389//____________________________________________________________________________
390void AliPHOSDigitizer::Exec(Option_t *option)
391{
212d1c0f 392 // Steering method to process digitization for events
393 // in the range from fFirstEvent to fLastEvent.
394 // This range is optionally set by SetEventRange().
45fa49ca 395 // if fLastEvent=-1, then process events until the end.
396 // by default fLastEvent = fFirstEvent (process only one event)
88cb7938 397
398 if (!fInit) { // to prevent overwrite existing file
399 Error( "Exec", "Give a version name different from %s", fEventFolderName.Data() ) ;
400 return ;
401 }
990119d6 402
7b7c1533 403 if (strstr(option,"print")) {
88cb7938 404 Print();
7b7c1533 405 return ;
8cb3533f 406 }
990119d6 407
7b7c1533 408 if(strstr(option,"tim"))
409 gBenchmark->Start("PHOSDigitizer");
3f81a70b 410
fb43ada4 411 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle()) ;
88cb7938 412
5b4d2c50 413 // Post Digitizer to the white board
414 gime->PostDigitizer(this) ;
415
212d1c0f 416 if (fLastEvent == -1)
417 fLastEvent = gime->MaxEvent() - 1 ;
396a348e 418 else if (fManager)
419 fLastEvent = fFirstEvent ;
45fa49ca 420
212d1c0f 421 Int_t nEvents = fLastEvent - fFirstEvent + 1;
422
7b7c1533 423 Int_t ievent ;
88cb7938 424
212d1c0f 425 for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) {
88cb7938 426
427 gime->Event(ievent,"S") ;
b22e4735 428
7b7c1533 429 Digitize(ievent) ; //Add prepared SDigits to digits and add the noise
88cb7938 430
90cceaf6 431 WriteDigits() ;
88cb7938 432
01a599c9 433 if(strstr(option,"deb"))
434 PrintDigits(option);
94de8339 435
436 //increment the total number of Digits per run
437 fDigitsInRun += gime->Digits()->GetEntriesFast() ;
88cb7938 438 }
439
5b4d2c50 440 gime->PhosLoader()->CleanDigitizer();
441
8cb3533f 442 if(strstr(option,"tim")){
443 gBenchmark->Stop("PHOSDigitizer");
21cd0c07 444 TString message ;
445 message = " took %f seconds for Digitizing %f seconds per event\n" ;
446 Info("Exec", message.Data(),
447 gBenchmark->GetCpuTime("PHOSDigitizer"),
212d1c0f 448 gBenchmark->GetCpuTime("PHOSDigitizer")/nEvents );
21cd0c07 449 }
990119d6 450}
451
9688c1dd 452//____________________________________________________________________________
0bc3b8ed 453Float_t AliPHOSDigitizer::FrontEdgeTime(TClonesArray * ticks) const
454{
455 // Returns the shortest time among all time ticks
456
7437a0f7 457 ticks->Sort() ; //Sort in accordance with times of ticks
458 TIter it(ticks) ;
459 AliPHOSTick * ctick = (AliPHOSTick *) it.Next() ;
460 Float_t time = ctick->CrossingTime(fTimeThreshold) ;
461
462 AliPHOSTick * t ;
463 while((t=(AliPHOSTick*) it.Next())){
464 if(t->GetTime() < time) //This tick starts before crossing
465 *ctick+=*t ;
466 else
467 return time ;
468
469 time = ctick->CrossingTime(fTimeThreshold) ;
9688c1dd 470 }
471 return time ;
9688c1dd 472}
8d0f3f77 473
7b7c1533 474//____________________________________________________________________________
3f81a70b 475Bool_t AliPHOSDigitizer::Init()
8d0f3f77 476{
fbf811ec 477 // Makes all memory allocations
88cb7938 478 fInit = kTRUE ;
479 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName) ;
8d0f3f77 480 if ( gime == 0 ) {
88cb7938 481 Fatal("Init" ,"Could not obtain the Getter object for file %s and event %s !", GetTitle(), fEventFolderName.Data()) ;
8d0f3f77 482 return kFALSE;
483 }
484
485 const AliPHOSGeometry * geom = gime->PHOSGeometry() ;
b22e4735 486
88cb7938 487 fEmcCrystals = geom->GetNModules() * geom->GetNCristalsInModule() ;
8d0f3f77 488
88cb7938 489 TString opt("Digits") ;
490 if(gime->VersionExists(opt) ) {
491 Error( "Init", "Give a version name different from %s", fEventFolderName.Data() ) ;
492 fInit = kFALSE ;
493 }
494
45fa49ca 495 fFirstEvent = 0 ;
496 fLastEvent = fFirstEvent ;
88cb7938 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) ;
45fa49ca 510 fEventNames[index] = tempo.Remove(tempo.Length()-1) ; // strip of the stream number added by fManager
8d0f3f77 511 }
88cb7938 512
513 //to prevent cleaning of this object while GetEvent is called
514 gime->PhosLoader()->GetDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE);
515
516 return fInit ;
8d0f3f77 517}
518
519//____________________________________________________________________________
520void AliPHOSDigitizer::InitParameters()
a4e98857 521{
45fa49ca 522 // Set initial parameters Digitizer
0bc3b8ed 523
c74936f1 524 fPinNoise = 0.004 ;
525 fEMCDigitThreshold = 0.012 ;
3758d9fc 526 fCPVNoise = 0.01;
527 fCPVDigitThreshold = 0.09 ;
aaf8a71c 528 fTimeResolution = 0.5e-9 ;
3758d9fc 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
212d1c0f 540 SetEventRange(0,-1) ;
8cb3533f 541
990119d6 542}
7b7c1533 543
990119d6 544//__________________________________________________________________
fc7e2f43 545void AliPHOSDigitizer::MixWith(TString alirunFileName, TString eventFolderName)
a4e98857 546{
ba54256b 547 // Allows to produce digits by superimposing background and signal event.
bca3b32a 548 // It is assumed, that headers file with SIGNAL events is opened in
a4e98857 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
bca3b32a 552 // backgound files: all output will be writen into SIGNAL, i.e.
553 // opened in constructor file.
554 //
a4e98857 555 // One can open as many files to mix with as one needs.
7b7c1533 556 // However only Sdigits with the same name (i.e. constructed with the same SDigitizer)
557 // can be mixed.
bca3b32a 558
88cb7938 559 if( strcmp(fEventFolderName, "") == 0 )
8cb3533f 560 Init() ;
561
9891b76e 562 if(fManager){
88cb7938 563 Warning("MixWith", "Cannot use this method with AliRunDigitizer\n" ) ;
3f81a70b 564 return ;
565 }
88cb7938 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 ;
990119d6 570 }
88cb7938 571 // looking for the file which contains SDigits
572 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
573 TString fileName( gime->GetSDigitsFileName() ) ;
e191bb57 574 if ( eventFolderName != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name
88cb7938 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 ;
7b7c1533 579 }
88cb7938 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++ ;
990119d6 594}
7b7c1533 595
990119d6 596//__________________________________________________________________
88cb7938 597void AliPHOSDigitizer::Print()const
21cd0c07 598{
dd5c4038 599 // Print Digitizer's parameters
88cb7938 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() ) ;
e191bb57 616 if ( fEventNames[index] != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name
88cb7938 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") ;
990119d6 629 }
8cb3533f 630 else
88cb7938 631 Info("Print", "AliPHOSDigitizer not initialized" ) ;
8cb3533f 632
633}
88cb7938 634
8cb3533f 635//__________________________________________________________________
21cd0c07 636 void AliPHOSDigitizer::PrintDigits(Option_t * option)
637{
3bf72d32 638 // Print a table of digits
21cd0c07 639
88cb7938 640 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName) ;
3bf72d32 641 TClonesArray * digits = gime->Digits() ;
642
88cb7938 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
11f9c5ff 647
3bf72d32 648 if(strstr(option,"all")||strstr(option,"EMC")){
8cb3533f 649 //loop over digits
650 AliPHOSDigit * digit;
88cb7938 651 printf("\nEMC digits (with primaries):\n") ;
652 printf("\n Id Amplitude Time Index Nprim: Primaries list \n") ;
9688c1dd 653 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
8cb3533f 654 Int_t index ;
a6eedfad 655 for (index = 0 ; (index < digits->GetEntriesFast()) &&
88cb7938 656 (dynamic_cast<AliPHOSDigit *>(digits->At(index))->GetId() <= maxEmc) ; index++) {
7b7c1533 657 digit = (AliPHOSDigit * ) digits->At(index) ;
21cd0c07 658 if(digit->GetNprimary() == 0)
659 continue;
81d5f731 660 printf("%6d %8d %6.5e %4d %2d :",
11f9c5ff 661 digit->GetId(), digit->GetAmp(), digit->GetTime(), digit->GetIndexInList(), digit->GetNprimary()) ;
8cb3533f 662 Int_t iprimary;
21cd0c07 663 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
88cb7938 664 printf("%d ",digit->GetPrimary(iprimary+1) ) ;
21cd0c07 665 }
81d5f731 666 printf("\n") ;
21cd0c07 667 }
9688c1dd 668 }
3bf72d32 669
9688c1dd 670 if(strstr(option,"all")||strstr(option,"CPV")){
8cb3533f 671
9688c1dd 672 //loop over CPV digits
673 AliPHOSDigit * digit;
88cb7938 674 printf("\nCPV digits (with primaries):\n") ;
675 printf("\n Id Amplitude Time Index Nprim: Primaries list \n") ;
9688c1dd 676 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
677 Int_t index ;
a6eedfad 678 for (index = 0 ; index < digits->GetEntriesFast(); index++) {
9688c1dd 679 digit = (AliPHOSDigit * ) digits->At(index) ;
680 if(digit->GetId() > maxEmc){
81d5f731 681 printf("%6d %8d %4d %2d :",
11f9c5ff 682 digit->GetId(), digit->GetAmp(), digit->GetIndexInList(), digit->GetNprimary()) ;
9688c1dd 683 Int_t iprimary;
21cd0c07 684 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
88cb7938 685 printf("%d ",digit->GetPrimary(iprimary+1) ) ;
21cd0c07 686 }
81d5f731 687 printf("\n") ;
21cd0c07 688 }
9688c1dd 689 }
8cb3533f 690 }
88cb7938 691
8cb3533f 692}
7b7c1533 693
9688c1dd 694//__________________________________________________________________
0bc3b8ed 695Float_t AliPHOSDigitizer::TimeOfNoise(void) const
9688c1dd 696{ // Calculates the time signal generated by noise
26a2ef9d 697 //PH Info("TimeOfNoise", "Change me") ;
04f0bda3 698 return gRandom->Rndm() * 1.28E-5;
8cb3533f 699}
7b7c1533 700
88cb7938 701//__________________________________________________________________
702void AliPHOSDigitizer::Unload()
703{
704
705 Int_t i ;
706 for(i = 1 ; i < fInput ; i++){
707 TString tempo(fEventNames[i]) ;
708 tempo += i ;
709 AliPHOSGetter * gime = AliPHOSGetter::Instance(fInputFileNames[i], tempo) ;
710 gime->PhosLoader()->UnloadSDigits() ;
711 }
712
713 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName) ;
714 gime->PhosLoader()->UnloadDigits() ;
715}
716
7b7c1533 717//____________________________________________________________________________
90cceaf6 718void AliPHOSDigitizer::WriteDigits()
7b7c1533 719{
720
721 // Makes TreeD in the output file.
722 // Check if branch already exists:
723 // if yes, exit without writing: ROOT TTree does not support overwriting/updating of
724 // already existing branches.
725 // else creates branch with Digits, named "PHOS", title "...",
726 // and branch "AliPHOSDigitizer", with the same title to keep all the parameters
727 // and names of files, from which digits are made.
728
88cb7938 729 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName) ;
730 const TClonesArray * digits = gime->Digits() ;
731 TTree * treeD = gime->TreeD();
732
7b7c1533 733 // -- create Digits branch
734 Int_t bufferSize = 32000 ;
ba54256b 735 TBranch * digitsBranch = treeD->Branch("PHOS",&digits,bufferSize);
88cb7938 736 digitsBranch->SetTitle(fEventFolderName);
737 digitsBranch->Fill() ;
fbf811ec 738
88cb7938 739 gime->WriteDigits("OVERWRITE");
740 gime->WriteDigitizer("OVERWRITE");
741
742 Unload() ;
b3690abb 743
7b7c1533 744}