]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSSDigitizer.cxx
Backframe and Baby-Spaceframe added.
[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"
7acf6008 55#include "TROOT.h"
7acf6008 56#include "TBenchmark.h"
106fc2fa 57
990119d6 58// --- Standard library ---
59
60// --- AliRoot header files ---
7acf6008 61#include "AliRun.h"
990119d6 62#include "AliPHOSDigit.h"
7b7c1533 63#include "AliPHOSGetter.h"
990119d6 64#include "AliPHOSHit.h"
990119d6 65#include "AliPHOSSDigitizer.h"
66
990119d6 67ClassImp(AliPHOSSDigitizer)
68
69
70//____________________________________________________________________________
88cb7938 71 AliPHOSSDigitizer::AliPHOSSDigitizer():TTask("","")
548f0134 72{
990119d6 73 // ctor
92f521a9 74 InitParameters() ;
75 fDefaultInit = kTRUE ;
990119d6 76}
7acf6008 77
990119d6 78//____________________________________________________________________________
88cb7938 79AliPHOSSDigitizer::AliPHOSSDigitizer(const char * alirunFileName, const char * eventFolderName):
80 TTask("PHOS"+AliConfig::fgkSDigitizerTaskName, alirunFileName),
81 fEventFolderName(eventFolderName)
990119d6 82{
88cb7938 83
990119d6 84 // ctor
8d0f3f77 85 InitParameters() ;
2bd5457f 86 Init();
92f521a9 87 fDefaultInit = kFALSE ;
990119d6 88}
89
bdc147a9 90//____________________________________________________________________________
a8c47ab6 91AliPHOSSDigitizer::AliPHOSSDigitizer(const AliPHOSSDigitizer & sd)
92 : TTask(sd)
93{
bdc147a9 94 //cpy ctor
95
96 fA = sd.fA ;
97 fB = sd.fB ;
98 fPrimThreshold = sd.fPrimThreshold ;
99 fSDigitsInRun = sd.fSDigitsInRun ;
88cb7938 100 SetName(sd.GetName()) ;
101 SetTitle(sd.GetTitle()) ;
102 fEventFolderName = sd.fEventFolderName;
bdc147a9 103}
104
7b7c1533 105
7acf6008 106//____________________________________________________________________________
a4e98857 107void AliPHOSSDigitizer::Init()
108{
88cb7938 109 // Uses the getter to access the required files
7b7c1533 110
88cb7938 111 fInit = kTRUE ;
112
113 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName.Data());
7b7c1533 114 if ( gime == 0 ) {
88cb7938 115 Fatal("Init" ,"Could not obtain the Getter object for file %s and event %s !", GetTitle(), fEventFolderName.Data()) ;
7b7c1533 116 return ;
117 }
118
88cb7938 119 TString opt("SDigits") ;
120 if(gime->VersionExists(opt) ) {
121 Error( "Init", "Give a version name different from %s", fEventFolderName.Data() ) ;
122 fInit = kFALSE ;
fbf811ec 123 }
124
88cb7938 125 gime->PostSDigitizer(this);
126 gime->PhosLoader()->GetSDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE);
127
7acf6008 128}
7b7c1533 129
8d0f3f77 130//____________________________________________________________________________
131void AliPHOSSDigitizer::InitParameters()
132{
88cb7938 133 // initializes the parameters for digitization
8d0f3f77 134 fA = 0;
135 fB = 10000000.;
136 fPrimThreshold = 0.01 ;
137 fSDigitsInRun = 0 ;
8d0f3f77 138}
139
990119d6 140//____________________________________________________________________________
a4e98857 141void AliPHOSSDigitizer::Exec(Option_t *option)
142{
143 // Collects all hits in the same active volume into digit
7b7c1533 144
145 if (strstr(option, "print") ) {
88cb7938 146 Print() ;
7b7c1533 147 return ;
148 }
990119d6 149
7acf6008 150 if(strstr(option,"tim"))
151 gBenchmark->Start("PHOSSDigitizer");
fbf811ec 152
88cb7938 153 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
154
155 //switch off reloading of this task while getting event
156 if (!fInit) { // to prevent overwrite existing file
157 Error( "Exec", "Give a version name different from %s", fEventFolderName.Data() ) ;
158 return ;
159 }
160
161
fbf811ec 162 Int_t nevents = gime->MaxEvent() ;
990119d6 163 Int_t ievent ;
7b7c1533 164 for(ievent = 0; ievent < nevents; ievent++){
88cb7938 165
5ad40cd6 166 gime->Event(ievent,"H") ;
88cb7938 167
168 TTree * treeS = gime->TreeS();
169 TClonesArray * hits = gime->Hits() ;
170 TClonesArray * sdigits = gime->SDigits() ;
7b7c1533 171 sdigits->Clear();
990119d6 172 Int_t nSdigits = 0 ;
7b7c1533 173 //Now make SDigits from hits, for PHOS it is the same, so just copy
88cb7938 174 Int_t nPrim = static_cast<Int_t>((gime->TreeH())->GetEntries()) ;
fbf811ec 175 // Attention nPrim is the number of primaries tracked by Geant
176 // and this number could be different to the number of Primaries in TreeK;
177 Int_t iprim ;
88cb7938 178
fbf811ec 179 for (iprim = 0 ; iprim < nPrim ; iprim ++) {
3962b6a1 180 //=========== Get the PHOS branch from Hits Tree for the Primary iprim
181 gime->Track(iprim) ;
990119d6 182 Int_t i;
7b7c1533 183 for ( i = 0 ; i < hits->GetEntries() ; i++ ) {
7a9d98f9 184 AliPHOSHit * hit = dynamic_cast<AliPHOSHit *>(hits->At(i)) ;
990119d6 185 // Assign primary number only if contribution is significant
9688c1dd 186
990119d6 187 if( hit->GetEnergy() > fPrimThreshold)
9688c1dd 188 new((*sdigits)[nSdigits]) AliPHOSDigit(hit->GetPrimary(),hit->GetId(),
fbf811ec 189 Digitize(hit->GetEnergy()), hit->GetTime()) ;
990119d6 190 else
9688c1dd 191 new((*sdigits)[nSdigits]) AliPHOSDigit( -1 , hit->GetId(),
fbf811ec 192 Digitize(hit->GetEnergy()), hit->GetTime()) ;
9688c1dd 193 nSdigits++ ;
990119d6 194
9688c1dd 195 }
88cb7938 196
3962b6a1 197 } // loop over iprim
88cb7938 198
7b7c1533 199 sdigits->Sort() ;
88cb7938 200
7b7c1533 201 nSdigits = sdigits->GetEntriesFast() ;
88cb7938 202
69866bef 203 fSDigitsInRun += nSdigits ;
7b7c1533 204 sdigits->Expand(nSdigits) ;
88cb7938 205
3962b6a1 206 Int_t i ;
990119d6 207 for (i = 0 ; i < nSdigits ; i++) {
7a9d98f9 208 AliPHOSDigit * digit = dynamic_cast<AliPHOSDigit *>(sdigits->At(i)) ;
990119d6 209 digit->SetIndexInList(i) ;
210 }
3962b6a1 211
fbf811ec 212 //Now write SDigits
fbf811ec 213
88cb7938 214
7acf6008 215 //First list of sdigits
88cb7938 216
fbf811ec 217 Int_t bufferSize = 32000 ;
88cb7938 218 TBranch * sdigitsBranch = treeS->Branch("PHOS",&sdigits,bufferSize);
219
fbf811ec 220 sdigitsBranch->Fill() ;
fbf811ec 221
88cb7938 222 gime->WriteSDigits("OVERWRITE");
223
224 //Next - SDigitizer
225
226 gime->WriteSDigitizer("OVERWRITE");
227
7acf6008 228 if(strstr(option,"deb"))
229 PrintSDigits(option) ;
990119d6 230 }
fbf811ec 231
88cb7938 232 Unload();
233
234 gime->PhosLoader()->GetSDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE);
235
7acf6008 236 if(strstr(option,"tim")){
237 gBenchmark->Stop("PHOSSDigitizer");
21cd0c07 238 Info("Exec"," took %f seconds for SDigitizing %f seconds per event",
239 gBenchmark->GetCpuTime("PHOSSDigitizer"), gBenchmark->GetCpuTime("PHOSSDigitizer")/nevents) ;
7acf6008 240 }
990119d6 241}
106fc2fa 242
990119d6 243//__________________________________________________________________
88cb7938 244void AliPHOSSDigitizer::Print()const
a4e98857 245{
246 // Prints parameters of SDigitizer
88cb7938 247 Info("Print", "\n------------------- %s -------------", GetName() ) ;
248 printf(" Writing SDigits to branch with title %s\n", fEventFolderName.Data()) ;
249 printf(" with digitization parameters A = %f\n", fA) ;
250 printf(" B = %f\n", fB) ;
251 printf(" Threshold for Primary assignment= %f\n", fPrimThreshold) ;
252 printf("---------------------------------------------------\n") ;
7acf6008 253
990119d6 254}
548f0134 255
990119d6 256//__________________________________________________________________
a4e98857 257Bool_t AliPHOSSDigitizer::operator==( AliPHOSSDigitizer const &sd )const
258{
3de072dc 259 // Equal operator.
260 // SDititizers are equal if their pedestal, slope and threshold are equal
261
990119d6 262 if( (fA==sd.fA)&&(fB==sd.fB)&&(fPrimThreshold==sd.fPrimThreshold))
263 return kTRUE ;
264 else
265 return kFALSE ;
266}
548f0134 267
a6eedfad 268//__________________________________________________________________
a4e98857 269void AliPHOSSDigitizer::PrintSDigits(Option_t * option)
270{
271 // Prints list of digits produced in the current pass of AliPHOSDigitizer
7b7c1533 272
a6eedfad 273
88cb7938 274 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
275 const TClonesArray * sdigits = gime->SDigits() ;
7b7c1533 276
21cd0c07 277 TString message ;
278 message = "\nAliPHOSSDigitiser: event " ;
279 message += gAlice->GetEvNumber();
280 message += "\n Number of entries in SDigits list " ;
281 message += sdigits->GetEntriesFast() ;
11f9c5ff 282 char * tempo = new char[8192];
21cd0c07 283
a6eedfad 284 if(strstr(option,"all")||strstr(option,"EMC")){
7acf6008 285
286 //loop over digits
287 AliPHOSDigit * digit;
21cd0c07 288 message += "\nEMC sdigits\n" ;
11f9c5ff 289 message += "\n Id Amplitude Time Index Nprim: Primaries list \n" ;
a6eedfad 290 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
7acf6008 291 Int_t index ;
a6eedfad 292 for (index = 0 ; (index < sdigits->GetEntriesFast()) &&
fbf811ec 293 ((dynamic_cast<AliPHOSDigit *> (sdigits->At(index)))->GetId() <= maxEmc) ; index++) {
294 digit = dynamic_cast<AliPHOSDigit *>( sdigits->At(index) ) ;
21cd0c07 295 if(digit->GetNprimary() == 0)
296 continue;
11f9c5ff 297 sprintf(tempo, "\n%6d %8d %6.5e %4d %2d :",
298 digit->GetId(), digit->GetAmp(), digit->GetTime(), digit->GetIndexInList(), digit->GetNprimary()) ;
299 message += tempo ;
7acf6008 300 Int_t iprimary;
11f9c5ff 301 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
302 sprintf(tempo, "%d ",digit->GetPrimary(iprimary+1) ) ;
303 message += tempo ;
304 }
a6eedfad 305 }
a6eedfad 306 }
307
308 if(strstr(option,"all")||strstr(option,"CPV")){
7acf6008 309
a6eedfad 310 //loop over CPV digits
311 AliPHOSDigit * digit;
21cd0c07 312
313 message += "CPV sdigits\n" ;
11f9c5ff 314 message += "\n Id Amplitude Index Nprim: Primaries list \n" ;
a6eedfad 315 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
316 Int_t index ;
317 for (index = 0 ; index < sdigits->GetEntriesFast(); index++) {
fbf811ec 318 digit = dynamic_cast<AliPHOSDigit *>( sdigits->At(index) ) ;
a6eedfad 319 if(digit->GetId() > maxEmc){
11f9c5ff 320 sprintf(tempo, "\n%6d %8d %4d %2d :",
321 digit->GetId(), digit->GetAmp(), digit->GetIndexInList(), digit->GetNprimary()) ;
322 message += tempo ;
a6eedfad 323 Int_t iprimary;
21cd0c07 324 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
11f9c5ff 325 sprintf(tempo, "%d ",digit->GetPrimary(iprimary+1) ) ;
326 message += tempo ;
21cd0c07 327 }
a6eedfad 328 }
329 }
7acf6008 330 }
88cb7938 331 delete []tempo ;
21cd0c07 332 Info("PrintSDigits", message.Data() ) ;
7acf6008 333}
7b7c1533 334
335//____________________________________________________________________________
88cb7938 336void AliPHOSSDigitizer::Unload() const
7b7c1533 337{
88cb7938 338 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
339 AliPHOSLoader * loader = gime->PhosLoader() ;
340 loader->UnloadHits() ;
341 loader->UnloadSDigits() ;
7b7c1533 342}