]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSSDigitizer.cxx
Updated VZERO source
[u/mrichter/AliRoot.git] / PHOS / AliPHOSSDigitizer.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
c093f031 16
990119d6 17/* $Id$ */
18
19//_________________________________________________________________________
7acf6008 20// This is a TTask that makes SDigits out of Hits
7b7c1533 21// The name of the TTask is also the title of the branch that will contain
22// the created SDigits
23// The title of the TTAsk is the name of the file that contains the hits from
24// which the SDigits are created
7acf6008 25// A Summable Digits is the sum of all hits originating
26// from one primary in one active cell
27// A threshold for assignment of the primary to SDigit is applied
28// SDigits are written to TreeS, branch "PHOS"
29// AliPHOSSDigitizer with all current parameters is written
30// to TreeS branch "AliPHOSSDigitizer".
f035f6ce 31// Both branches have the same title. If necessary one can produce
32// another set of SDigits with different parameters. Two versions
33// can be distunguished using titles of the branches.
34// User case:
a4e98857 35// root [0] AliPHOSSDigitizer * s = new AliPHOSSDigitizer("galice.root")
36// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
37// root [1] s->ExecuteTask()
f035f6ce 38// // Makes SDigitis for all events stored in galice.root
a4e98857 39// root [2] s->SetPedestalParameter(0.001)
f035f6ce 40// // One can change parameters of digitization
3de072dc 41// root [3] s->SetSDigitsBranch("Pedestal 0.001")
f035f6ce 42// // and write them into the new branch
3de072dc 43// root [4] s->ExecuteTask("deb all tim")
f035f6ce 44// // available parameters:
45// deb - print # of produced SDigitis
46// deb all - print # and list of produced SDigits
47// tim - print benchmarking information
990119d6 48//
49//*-- Author : Dmitri Peressounko (SUBATECH & KI)
50//////////////////////////////////////////////////////////////////////////////
51
f035f6ce 52
990119d6 53// --- ROOT system ---
7acf6008 54#include "TFile.h"
990119d6 55#include "TTask.h"
56#include "TTree.h"
57#include "TSystem.h"
7acf6008 58#include "TROOT.h"
59#include "TFolder.h"
60#include "TBenchmark.h"
106fc2fa 61#include "TGeometry.h"
62
990119d6 63// --- Standard library ---
7acf6008 64#include <iomanip.h>
990119d6 65
66// --- AliRoot header files ---
7acf6008 67#include "AliRun.h"
106fc2fa 68#include "AliHeader.h"
990119d6 69#include "AliPHOSDigit.h"
a6eedfad 70#include "AliPHOSGeometry.h"
7b7c1533 71#include "AliPHOSGetter.h"
990119d6 72#include "AliPHOSHit.h"
990119d6 73#include "AliPHOSSDigitizer.h"
74
990119d6 75
76ClassImp(AliPHOSSDigitizer)
77
78
79//____________________________________________________________________________
7b7c1533 80 AliPHOSSDigitizer::AliPHOSSDigitizer():TTask("","")
990119d6 81{
82 // ctor
2bd5457f 83 fA = 0;
84 fB = 10000000.;
990119d6 85 fPrimThreshold = 0.01 ;
2b60655b 86 fSDigitsInRun = 0 ;
c093f031 87 fSplitFile = 0 ;
990119d6 88}
7acf6008 89
990119d6 90//____________________________________________________________________________
7b7c1533 91AliPHOSSDigitizer::AliPHOSSDigitizer(const char * headerFile, const char * sDigitsTitle):TTask(sDigitsTitle, headerFile)
990119d6 92{
93 // ctor
2bd5457f 94 fA = 0;
95 fB = 10000000.;
990119d6 96 fPrimThreshold = 0.01 ;
106fc2fa 97 fSDigitsInRun = 0 ;
c093f031 98 fSplitFile = 0 ;
2bd5457f 99 Init();
990119d6 100}
101
c093f031 102//____________________________________________________________________________
103AliPHOSSDigitizer::~AliPHOSSDigitizer()
104{
105 if (fSplitFile)
106 if ( fSplitFile->IsOpen() )
107 fSplitFile->Close() ;
303492aa 108 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
109 gime->CloseFile() ;
c093f031 110}
7b7c1533 111
7acf6008 112//____________________________________________________________________________
a4e98857 113void AliPHOSSDigitizer::Init()
114{
2bd5457f 115 // Initialization: open root-file, allocate arrays for hits and sdigits,
116 // attach task SDigitizer to the list of PHOS tasks
117 //
a4e98857 118 // Initialization can not be done in the default constructor
7b7c1533 119 //============================================================= YS
120 // The initialisation is now done by AliPHOSGetter
121
122 if( strcmp(GetTitle(), "") == 0 )
123 SetTitle("galice.root") ;
85f78bbc 124
7b7c1533 125 AliPHOSGetter * gime = AliPHOSGetter::GetInstance(GetTitle(), GetName()) ;
126 if ( gime == 0 ) {
127 cerr << "ERROR: AliPHOSSDigitizer::Init -> Could not obtain the Getter object !" << endl ;
128 return ;
129 }
130
5ad40cd6 131 gime->PostSDigits( GetName(), GetTitle() ) ;
132
133 TString sdname(GetName() );
134 sdname.Append(":") ;
135 sdname.Append(GetTitle() ) ;
136 SetName(sdname) ;
137 gime->PostSDigitizer(this) ;
7acf6008 138}
7b7c1533 139
990119d6 140//____________________________________________________________________________
a4e98857 141void AliPHOSSDigitizer::Exec(Option_t *option)
142{
143 // Collects all hits in the same active volume into digit
7b7c1533 144 if( strcmp(GetName(), "") == 0 )
7acf6008 145 Init() ;
7b7c1533 146
147 if (strstr(option, "print") ) {
148 Print("") ;
149 return ;
150 }
990119d6 151
7acf6008 152 if(strstr(option,"tim"))
153 gBenchmark->Start("PHOSSDigitizer");
7b7c1533 154
155 //Check, if this branch already exits
5ad40cd6 156 gAlice->GetEvent(0) ;
a2d8b8a4 157
158 TString sdname(GetName()) ;
159 sdname.Remove(sdname.Index(GetTitle())-1) ;
160
5ad40cd6 161 if(gAlice->TreeS() ) {
7a9d98f9 162 TObjArray * lob = static_cast<TObjArray*>(gAlice->TreeS()->GetListOfBranches()) ;
5ad40cd6 163 TIter next(lob) ;
164 TBranch * branch = 0 ;
165 Bool_t phosfound = kFALSE, sdigitizerfound = kFALSE ;
7b7c1533 166
7a9d98f9 167 while ( (branch = (static_cast<TBranch*>(next()))) && (!phosfound || !sdigitizerfound) ) {
c093f031 168 TString thisName( GetName() ) ;
169 TString branchName( branch->GetTitle() ) ;
170 branchName.Append(":") ;
171 if ( (strcmp(branch->GetName(), "PHOS")==0) && thisName.BeginsWith(branchName) )
5ad40cd6 172 phosfound = kTRUE ;
c093f031 173 else if ( (strcmp(branch->GetName(), "AliPHOSSDigitizer")==0) && thisName.BeginsWith(branchName) )
5ad40cd6 174 sdigitizerfound = kTRUE ;
175 }
176
177 if ( phosfound || sdigitizerfound ) {
178 cerr << "WARNING: AliPHOSSDigitizer::Exec -> SDigits and/or SDigitizer branch with name " << GetName()
179 << " already exits" << endl ;
180 return ;
181 }
182 }
7b7c1533 183
7b7c1533 184 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
185
7b7c1533 186 Int_t nevents = (Int_t) gAlice->TreeE()->GetEntries() ;
990119d6 187
188 Int_t ievent ;
7b7c1533 189 for(ievent = 0; ievent < nevents; ievent++){
5ad40cd6 190 gime->Event(ievent,"H") ;
017addb3 191 const TClonesArray * hits = gime->Hits() ;
5ad40cd6 192 TClonesArray * sdigits = gime->SDigits(sdname.Data()) ;
7b7c1533 193 sdigits->Clear();
990119d6 194 Int_t nSdigits = 0 ;
195
990119d6 196
7b7c1533 197 //Now make SDigits from hits, for PHOS it is the same, so just copy
c093f031 198
3962b6a1 199 Int_t Nprim = (Int_t) (gAlice->TreeH())->GetEntries();
200 // Attention Nprim is the number of primaries tracked by Geant and this number could be different to the number of Primaries in TreeK;
201 Int_t iprim;
202 for (iprim=0; iprim<Nprim; iprim++) {
203 //=========== Get the PHOS branch from Hits Tree for the Primary iprim
204 gime->Track(iprim) ;
990119d6 205 Int_t i;
7b7c1533 206 for ( i = 0 ; i < hits->GetEntries() ; i++ ) {
7a9d98f9 207 AliPHOSHit * hit = dynamic_cast<AliPHOSHit *>(hits->At(i)) ;
990119d6 208 // Assign primary number only if contribution is significant
9688c1dd 209
990119d6 210 if( hit->GetEnergy() > fPrimThreshold)
9688c1dd 211 new((*sdigits)[nSdigits]) AliPHOSDigit(hit->GetPrimary(),hit->GetId(),
212 Digitize(hit->GetEnergy()), hit->GetTime()) ;
990119d6 213 else
9688c1dd 214 new((*sdigits)[nSdigits]) AliPHOSDigit( -1 , hit->GetId(),
215 Digitize(hit->GetEnergy()), hit->GetTime()) ;
216 nSdigits++ ;
990119d6 217
9688c1dd 218 }
c093f031 219
3962b6a1 220 } // loop over iprim
990119d6 221
7b7c1533 222 sdigits->Sort() ;
990119d6 223
7b7c1533 224 nSdigits = sdigits->GetEntriesFast() ;
69866bef 225 fSDigitsInRun += nSdigits ;
7b7c1533 226 sdigits->Expand(nSdigits) ;
c093f031 227
3962b6a1 228 Int_t i ;
990119d6 229 for (i = 0 ; i < nSdigits ; i++) {
7a9d98f9 230 AliPHOSDigit * digit = dynamic_cast<AliPHOSDigit *>(sdigits->At(i)) ;
990119d6 231 digit->SetIndexInList(i) ;
232 }
3962b6a1 233
106fc2fa 234 if(gAlice->TreeS() == 0)
85f78bbc 235 gAlice->MakeTree("S", fSplitFile);
c093f031 236
7acf6008 237 //First list of sdigits
238 Int_t bufferSize = 32000 ;
7b7c1533 239 TBranch * sdigitsBranch = gAlice->TreeS()->Branch("PHOS",&sdigits,bufferSize);
5ad40cd6 240 sdigitsBranch->SetTitle(sdname);
7acf6008 241
7b7c1533 242 //Next - SDigitizer
7acf6008 243 Int_t splitlevel = 0 ;
244 AliPHOSSDigitizer * sd = this ;
7b7c1533 245 TBranch * sdigitizerBranch = gAlice->TreeS()->Branch("AliPHOSSDigitizer","AliPHOSSDigitizer",
7acf6008 246 &sd,bufferSize,splitlevel);
5ad40cd6 247 sdigitizerBranch->SetTitle(sdname);
c093f031 248
42d2745f 249 sdigitsBranch->Fill() ;
c093f031 250 sdigitizerBranch->Fill() ;
42d2745f 251 gAlice->TreeS()->AutoSave() ;
7acf6008 252
253 if(strstr(option,"deb"))
254 PrintSDigits(option) ;
c093f031 255
990119d6 256 }
c093f031 257
258 if (fSplitFile)
259 if ( fSplitFile->IsOpen() )
260 fSplitFile->Close() ;
7acf6008 261
c093f031 262
7acf6008 263 if(strstr(option,"tim")){
264 gBenchmark->Stop("PHOSSDigitizer");
265 cout << "AliPHOSSDigitizer:" << endl ;
266 cout << " took " << gBenchmark->GetCpuTime("PHOSSDigitizer") << " seconds for SDigitizing "
7b7c1533 267 << gBenchmark->GetCpuTime("PHOSSDigitizer")/nevents << " seconds per event " << endl ;
7acf6008 268 cout << endl ;
269 }
270
271
990119d6 272}
106fc2fa 273
990119d6 274//__________________________________________________________________
a4e98857 275void AliPHOSSDigitizer::SetSDigitsBranch(const char * title )
276{
277 // Setting title to branch SDigits
7b7c1533 278
279 TString stitle(title) ;
280
281 // check if branch with title already exists
7a9d98f9 282 TBranch * sdigitsBranch =
283 static_cast<TBranch*>(gAlice->TreeS()->GetListOfBranches()->FindObject("PHOS")) ;
284 TBranch * sdigitizerBranch =
285 static_cast<TBranch*>(gAlice->TreeS()->GetListOfBranches()->FindObject("AliPHOSSDigitizer")) ;
7b7c1533 286 const char * sdigitsTitle = sdigitsBranch ->GetTitle() ;
287 const char * sdigitizerTitle = sdigitizerBranch ->GetTitle() ;
288 if ( stitle.CompareTo(sdigitsTitle)==0 || stitle.CompareTo(sdigitizerTitle)==0 ){
289 cerr << "ERROR: AliPHOSSdigitizer::SetSDigitsBranch -> Cannot overwrite existing branch with title " << title << endl ;
290 return ;
291 }
292
293 cout << "AliPHOSSdigitizer::SetSDigitsBranch -> Changing SDigits file from " << GetName() << " to " << title << endl ;
294
295 SetName(title) ;
296
297 // Post to the WhiteBoard
298 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
5ad40cd6 299 gime->PostSDigits( title, GetTitle()) ;
990119d6 300}
7b7c1533 301
106fc2fa 302//__________________________________________________________________
c093f031 303void AliPHOSSDigitizer::SetSplitFile(const TString splitFileName)
106fc2fa 304{
305 // Diverts the SDigits in a file separate from the hits file
306
307 TDirectory * cwd = gDirectory ;
c093f031 308
309 if ( !(gAlice->GetTreeSFileName() == splitFileName) ) {
310 if (gAlice->GetTreeSFile() )
311 gAlice->GetTreeSFile()->Close() ;
312 }
313
314 fSplitFile = gAlice->InitTreeFile("S",splitFileName.Data());
315 fSplitFile->cd() ;
316 if ( !fSplitFile->Get("gAlice") )
317 gAlice->Write();
106fc2fa 318
319 TTree *treeE = gAlice->TreeE();
320 if (!treeE) {
c093f031 321 cerr << "ERROR: AliPHOSSDigitizer::SetSPlitFile -> No TreeE found "<<endl;
106fc2fa 322 abort() ;
323 }
324
325 // copy TreeE
c093f031 326 if ( !fSplitFile->Get("TreeE") ) {
327 AliHeader *header = new AliHeader();
328 treeE->SetBranchAddress("Header", &header);
329 treeE->SetBranchStatus("*",1);
330 TTree *treeENew = treeE->CloneTree();
331 treeENew->Write();
332 }
333
106fc2fa 334 // copy AliceGeom
c093f031 335 if ( !fSplitFile->Get("AliceGeom") ) {
336 TGeometry *AliceGeom = static_cast<TGeometry*>(cwd->Get("AliceGeom"));
337 if (!AliceGeom) {
338 cerr << "ERROR: AliPHOSSDigitizer::SetSPlitFile -> AliceGeom was not found in the input file "<<endl;
339 abort() ;
340 }
341 AliceGeom->Write();
106fc2fa 342 }
c093f031 343
c093f031 344 gAlice->MakeTree("S",fSplitFile);
85f78bbc 345 cwd->cd() ;
106fc2fa 346}
347
990119d6 348//__________________________________________________________________
a4e98857 349void AliPHOSSDigitizer::Print(Option_t* option)const
350{
351 // Prints parameters of SDigitizer
990119d6 352 cout << "------------------- "<< GetName() << " -------------" << endl ;
7a9d98f9 353 cout << " Writing SDigits to branch with title " << GetName() << endl ;
7acf6008 354 cout << " with digitization parameters A = " << fA << endl ;
355 cout << " B = " << fB << endl ;
356 cout << " Threshold for Primary assignment= " << fPrimThreshold << endl ;
990119d6 357 cout << "---------------------------------------------------"<<endl ;
7acf6008 358
990119d6 359}
360//__________________________________________________________________
a4e98857 361Bool_t AliPHOSSDigitizer::operator==( AliPHOSSDigitizer const &sd )const
362{
3de072dc 363 // Equal operator.
364 // SDititizers are equal if their pedestal, slope and threshold are equal
365
990119d6 366 if( (fA==sd.fA)&&(fB==sd.fB)&&(fPrimThreshold==sd.fPrimThreshold))
367 return kTRUE ;
368 else
369 return kFALSE ;
370}
7acf6008 371//__________________________________________________________________
a6eedfad 372//__________________________________________________________________
a4e98857 373void AliPHOSSDigitizer::PrintSDigits(Option_t * option)
374{
375 // Prints list of digits produced in the current pass of AliPHOSDigitizer
7b7c1533 376
a6eedfad 377
7b7c1533 378 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
5ad40cd6 379 TString sdname(GetName()) ;
380 sdname.Remove(sdname.Index(GetTitle())-1) ;
017addb3 381 const TClonesArray * sdigits = gime->SDigits(sdname.Data()) ;
7b7c1533 382
a6eedfad 383 cout << "AliPHOSSDigitiser: event " << gAlice->GetEvNumber() << endl ;
384 cout << " Number of entries in SDigits list " << sdigits->GetEntriesFast() << endl ;
7acf6008 385 cout << endl ;
a6eedfad 386 if(strstr(option,"all")||strstr(option,"EMC")){
7acf6008 387
388 //loop over digits
389 AliPHOSDigit * digit;
a6eedfad 390 cout << "EMC sdigits " << endl ;
391 cout << "Digit Id Amplitude Index Nprim Primaries list " << endl;
392 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
7acf6008 393 Int_t index ;
a6eedfad 394 for (index = 0 ; (index < sdigits->GetEntriesFast()) &&
395 (((AliPHOSDigit * ) sdigits->At(index))->GetId() <= maxEmc) ; index++) {
7b7c1533 396 digit = (AliPHOSDigit * ) sdigits->At(index) ;
a6eedfad 397 if(digit->GetNprimary() == 0) continue;
398 cout << setw(6) << digit->GetId() << " " << setw(10) << digit->GetAmp() << " "
399 << setw(6) << digit->GetIndexInList() << " "
400 << setw(5) << digit->GetNprimary() <<" ";
7acf6008 401
402 Int_t iprimary;
403 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++)
a6eedfad 404 cout << setw(5) << digit->GetPrimary(iprimary+1) << " ";
7acf6008 405 cout << endl;
a6eedfad 406 }
407 cout << endl;
408 }
409
410 if(strstr(option,"all")||strstr(option,"CPV")){
7acf6008 411
a6eedfad 412 //loop over CPV digits
413 AliPHOSDigit * digit;
414 cout << "CPV sdigits " << endl ;
415 cout << "Digit Id Amplitude Index Nprim Primaries list " << endl;
416 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
417 Int_t index ;
418 for (index = 0 ; index < sdigits->GetEntriesFast(); index++) {
419 digit = (AliPHOSDigit * ) sdigits->At(index) ;
420 if(digit->GetId() > maxEmc){
421 cout << setw(6) << digit->GetId() << " " << setw(10) << digit->GetAmp() << " "
422 << setw(6) << digit->GetIndexInList() << " "
423 << setw(5) << digit->GetNprimary() <<" ";
424
425 Int_t iprimary;
426 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++)
427 cout << setw(5) << digit->GetPrimary(iprimary+1) << " ";
428 cout << endl;
429 }
430 }
7acf6008 431 }
a6eedfad 432
7acf6008 433}
7b7c1533 434
435//____________________________________________________________________________
436void AliPHOSSDigitizer::UseHitsFrom(const char * filename)
437{
438 SetTitle(filename) ;
439 Init() ;
440}