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