]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSSDigitizer.cxx
moved component registration to agent; added component configuration/initialization...
[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 *
c65c502a 10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
990119d6 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
702ab87e 19/* History of cvs commits:
20 *
21 * $Log$
04236e67 22 * Revision 1.56 2007/10/19 18:04:29 schutz
23 * The standalone QA data maker is called from AliSimulation and AliReconstruction outside the event loop; i.e. re-reading the data. The QA data making in the event loop has been commented out.
24 *
c65c502a 25 * Revision 1.55 2007/10/14 21:08:10 schutz
26 * Introduced the checking of QA results from previous step before entering the event loop
27 *
8661738e 28 * Revision 1.54 2007/10/10 09:05:10 schutz
29 * Changing name QualAss to QA
30 *
b8274834 31 * Revision 1.53 2007/09/30 17:08:20 schutz
32 * Introducing the notion of QA data acquisition cycle (needed by online)
33 *
5b188f2f 34 * Revision 1.52 2007/09/26 14:22:18 cvetan
35 * Important changes to the reconstructor classes. Complete elimination of the run-loaders, which are now steered only from AliReconstruction. Removal of the corresponding Reconstruct() and FillESD() methods.
36 *
d76c31f4 37 * Revision 1.51 2007/08/07 14:12:03 kharlov
38 * Quality assurance added (Yves Schutz)
39 *
ddd1a39c 40 * Revision 1.50 2006/08/28 10:01:56 kharlov
41 * Effective C++ warnings fixed (Timur Pocheptsov)
42 *
3663622c 43 * Revision 1.49 2006/05/10 06:42:53 kharlov
44 * Remove redundant loop over primaries
45 *
e3310962 46 * Revision 1.48 2006/04/22 10:30:17 hristov
47 * Add fEnergy to AliPHOSDigit and operate with EMC amplitude in energy units (Yu.Kharlov)
48 *
27a73a5d 49 * Revision 1.47 2005/05/28 14:19:04 schutz
50 * Compilation warnings fixed by T.P.
51 *
702ab87e 52 */
53
990119d6 54//_________________________________________________________________________
7acf6008 55// This is a TTask that makes SDigits out of Hits
7b7c1533 56// The name of the TTask is also the title of the branch that will contain
57// the created SDigits
58// The title of the TTAsk is the name of the file that contains the hits from
59// which the SDigits are created
7acf6008 60// A Summable Digits is the sum of all hits originating
61// from one primary in one active cell
62// A threshold for assignment of the primary to SDigit is applied
63// SDigits are written to TreeS, branch "PHOS"
64// AliPHOSSDigitizer with all current parameters is written
65// to TreeS branch "AliPHOSSDigitizer".
f035f6ce 66// Both branches have the same title. If necessary one can produce
67// another set of SDigits with different parameters. Two versions
68// can be distunguished using titles of the branches.
69// User case:
a4e98857 70// root [0] AliPHOSSDigitizer * s = new AliPHOSSDigitizer("galice.root")
71// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
72// root [1] s->ExecuteTask()
f035f6ce 73// // Makes SDigitis for all events stored in galice.root
a4e98857 74// root [2] s->SetPedestalParameter(0.001)
f035f6ce 75// // One can change parameters of digitization
3de072dc 76// root [3] s->SetSDigitsBranch("Pedestal 0.001")
f035f6ce 77// // and write them into the new branch
3de072dc 78// root [4] s->ExecuteTask("deb all tim")
f035f6ce 79// // available parameters:
80// deb - print # of produced SDigitis
81// deb all - print # and list of produced SDigits
82// tim - print benchmarking information
990119d6 83//
84//*-- Author : Dmitri Peressounko (SUBATECH & KI)
85//////////////////////////////////////////////////////////////////////////////
86
f035f6ce 87
990119d6 88// --- ROOT system ---
7acf6008 89#include "TBenchmark.h"
9d6866ec 90 //#include "TObjectTable.h"
106fc2fa 91
990119d6 92// --- Standard library ---
93
94// --- AliRoot header files ---
9d6866ec 95#include "AliLog.h"
e957fea8 96#include "AliPHOSGeometry.h"
990119d6 97#include "AliPHOSDigit.h"
7b7c1533 98#include "AliPHOSGetter.h"
990119d6 99#include "AliPHOSHit.h"
990119d6 100#include "AliPHOSSDigitizer.h"
101
990119d6 102ClassImp(AliPHOSSDigitizer)
103
104
105//____________________________________________________________________________
3663622c 106AliPHOSSDigitizer::AliPHOSSDigitizer() :
107 TTask("",""),
108 fA(0.f), fB(0.f),
109 fPrimThreshold(0.f),
110 fDefaultInit(kTRUE),
111 fEventFolderName(""),
112 fInit(kFALSE),
113 fSDigitsInRun(0),
114 fFirstEvent(0),
c65c502a 115 fLastEvent(0)
116// , fQADM (0x0)
548f0134 117{
990119d6 118 // ctor
ddd1a39c 119 // Intialize the quality assurance data maker
990119d6 120}
7acf6008 121
990119d6 122//____________________________________________________________________________
e191bb57 123AliPHOSSDigitizer::AliPHOSSDigitizer(const char * alirunFileName,
124 const char * eventFolderName):
125 TTask("PHOS"+AliConfig::Instance()->GetSDigitizerTaskName(), alirunFileName),
3663622c 126 fA(0.f), fB(0.f),
127 fPrimThreshold(0.f),
128 fDefaultInit(kFALSE),
129 fEventFolderName(eventFolderName),
130 fInit(kFALSE),
131 fSDigitsInRun(0),
132 fFirstEvent(0),
c65c502a 133 fLastEvent(0)
134// , fQADM (0x0)
990119d6 135{
136 // ctor
8d0f3f77 137 InitParameters() ;
2bd5457f 138 Init();
92f521a9 139 fDefaultInit = kFALSE ;
c65c502a 140// // Intialize the quality assurance data maker
141// //FIXME: get the run number
142// Int_t run = 0 ;
143// //EMXIF
144// GetQADataMaker()->Init(AliQA::kHITS, run, fgkCycles) ;
145// GetQADataMaker()->StartOfCycle(AliQA::kHITS) ;
146// GetQADataMaker()->Init(AliQA::kSDIGITS, run) ;
147// GetQADataMaker()->StartOfCycle(AliQA::kSDIGITS, kTRUE) ;
ddd1a39c 148}
149
150//____________________________________________________________________________
151AliPHOSSDigitizer::AliPHOSSDigitizer(const AliPHOSSDigitizer& sd) :
152 TTask(sd.GetName(), sd.GetTitle()),
153 fA(sd.fA), fB(sd.fB),
154 fPrimThreshold(sd.fPrimThreshold),
155 fDefaultInit(kFALSE),
156 fEventFolderName(sd.fEventFolderName),
157 fInit(kFALSE),
158 fSDigitsInRun(sd.fSDigitsInRun),
159 fFirstEvent(sd.fFirstEvent),
c65c502a 160 fLastEvent(sd.fLastEvent)
161// , fQADM (sd.fQADM)
ddd1a39c 162{
163 // cpy ctor
c65c502a 164// // Intialize the quality assurance data maker
165// //FIXME: get the run number
166// Int_t run = 0 ;
167// //EMXIF
168// GetQADataMaker()->Init(AliQA::kHITS, run, fgkCycles) ;
169// GetQADataMaker()->StartOfCycle(AliQA::kHITS) ;
170// GetQADataMaker()->Init(AliQA::kSDIGITS, run) ;
171// GetQADataMaker()->StartOfCycle(AliQA::kSDIGITS, kTRUE) ;
ddd1a39c 172}
173
ddd1a39c 174//_____________________________________________________________________________
175AliPHOSSDigitizer& AliPHOSSDigitizer::operator = (const AliPHOSSDigitizer& qa)
176{
177// assignment operator
178
179 this->~AliPHOSSDigitizer();
180 new(this) AliPHOSSDigitizer(qa);
181 return *this;
990119d6 182}
183
7acf6008 184//____________________________________________________________________________
797e311f 185AliPHOSSDigitizer::~AliPHOSSDigitizer() {
186 //dtor
9d6866ec 187 // AliPHOSGetter * gime =
188 // AliPHOSGetter::Instance(GetTitle(),fEventFolderName.Data());
797e311f 189 AliPHOSGetter * gime =
9d6866ec 190 AliPHOSGetter::Instance();
797e311f 191 gime->PhosLoader()->CleanSDigitizer();
c65c502a 192// delete fQADM ;
797e311f 193}
ddd1a39c 194
797e311f 195//____________________________________________________________________________
a4e98857 196void AliPHOSSDigitizer::Init()
197{
88cb7938 198 // Uses the getter to access the required files
7b7c1533 199
88cb7938 200 fInit = kTRUE ;
201
202 AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName.Data());
7b7c1533 203 if ( gime == 0 ) {
88cb7938 204 Fatal("Init" ,"Could not obtain the Getter object for file %s and event %s !", GetTitle(), fEventFolderName.Data()) ;
7b7c1533 205 return ;
206 }
207
88cb7938 208 TString opt("SDigits") ;
209 if(gime->VersionExists(opt) ) {
210 Error( "Init", "Give a version name different from %s", fEventFolderName.Data() ) ;
211 fInit = kFALSE ;
fbf811ec 212 }
213
88cb7938 214 gime->PostSDigitizer(this);
215 gime->PhosLoader()->GetSDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE);
9d6866ec 216
c65c502a 217// fQADM = new AliPHOSQADataMaker() ;
ddd1a39c 218
7acf6008 219}
7b7c1533 220
8d0f3f77 221//____________________________________________________________________________
222void AliPHOSSDigitizer::InitParameters()
223{
88cb7938 224 // initializes the parameters for digitization
8d0f3f77 225 fA = 0;
226 fB = 10000000.;
227 fPrimThreshold = 0.01 ;
228 fSDigitsInRun = 0 ;
8d0f3f77 229}
230
990119d6 231//____________________________________________________________________________
a4e98857 232void AliPHOSSDigitizer::Exec(Option_t *option)
233{
212d1c0f 234 // Steering method to produce summable digits for events
235 // in the range from fFirstEvent to fLastEvent.
236 // This range is optionally set by SetEventRange().
237 // if fLastEvent=-1 (by default), then process events until the end.
238 //
239 // Summable digit is a sum of all hits in the same active
240 // volume into digit
7b7c1533 241
242 if (strstr(option, "print") ) {
88cb7938 243 Print() ;
7b7c1533 244 return ;
245 }
990119d6 246
7acf6008 247 if(strstr(option,"tim"))
248 gBenchmark->Start("PHOSSDigitizer");
fbf811ec 249
04236e67 250/*
251 // check the QA result for RAWS
8661738e 252 AliQA * qa = AliQA::Instance(AliQA::kPHOS) ;
253 if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kFATAL)) {
254 AliFatal("QA status in RAW was Fatal") ;
255 } else if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kERROR)) {
256 AliError("QA status in RAW was Error") ;
257 } else if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kWARNING) ) {
258 AliWarning("QA status in RAW was Warning") ;
259 } else if ( qa->IsSet(AliQA::kPHOS, AliQA::kRAW, AliQA::kINFO) ) {
260 AliInfo("QA status in RAW was Info") ;
261 }
04236e67 262*/
9d6866ec 263 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
88cb7938 264
265 //switch off reloading of this task while getting event
266 if (!fInit) { // to prevent overwrite existing file
9d6866ec 267 AliError( Form("Give a version name different from %s", fEventFolderName.Data()) ) ;
88cb7938 268 return ;
269 }
270
212d1c0f 271 if (fLastEvent == -1)
272 fLastEvent = gime->MaxEvent() - 1 ;
273 else
d7d3b67b 274 fLastEvent = TMath::Min(fFirstEvent, gime->MaxEvent()); // only ine event at the time
212d1c0f 275 Int_t nEvents = fLastEvent - fFirstEvent + 1;
276
e3310962 277 Int_t ievent, i;
9d6866ec 278
279 //AliMemoryWatcher memwatcher;
280
281 for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) {
282 gime->Event(ievent,"H") ;
88cb7938 283 TTree * treeS = gime->TreeS();
284 TClonesArray * hits = gime->Hits() ;
285 TClonesArray * sdigits = gime->SDigits() ;
7b7c1533 286 sdigits->Clear();
990119d6 287 Int_t nSdigits = 0 ;
7b7c1533 288 //Now make SDigits from hits, for PHOS it is the same, so just copy
e3310962 289 for ( i = 0 ; i < hits->GetEntries() ; i++ ) {
290 AliPHOSHit * hit = dynamic_cast<AliPHOSHit *>(hits->At(i)) ;
291 // Assign primary number only if contribution is significant
292
293 if( hit->GetEnergy() > fPrimThreshold)
294 new((*sdigits)[nSdigits]) AliPHOSDigit(hit->GetPrimary(),hit->GetId(),
295 hit->GetEnergy() ,hit->GetTime()) ;
296 else
297 new((*sdigits)[nSdigits]) AliPHOSDigit(-1 ,hit->GetId(),
298 hit->GetEnergy() ,hit->GetTime()) ;
299 nSdigits++ ;
300
301 }
88cb7938 302
7b7c1533 303 sdigits->Sort() ;
88cb7938 304
7b7c1533 305 nSdigits = sdigits->GetEntriesFast() ;
88cb7938 306
69866bef 307 fSDigitsInRun += nSdigits ;
7b7c1533 308 sdigits->Expand(nSdigits) ;
88cb7938 309
990119d6 310 for (i = 0 ; i < nSdigits ; i++) {
7a9d98f9 311 AliPHOSDigit * digit = dynamic_cast<AliPHOSDigit *>(sdigits->At(i)) ;
990119d6 312 digit->SetIndexInList(i) ;
313 }
3962b6a1 314
c65c502a 315// // make Quality Assurance data
316//
317// if (GetQADataMaker()->IsCycleDone() ) {
318// GetQADataMaker()->EndOfCycle(AliQA::kHITS) ;
319// GetQADataMaker()->EndOfCycle(AliQA::kSDIGITS) ;
320// GetQADataMaker()->StartOfCycle(AliQA::kHITS) ;
321// GetQADataMaker()->StartOfCycle(AliQA::kSDIGITS, kTRUE) ;
322// }
323// GetQADataMaker()->Exec(AliQA::kHITS, hits) ;
324// GetQADataMaker()->Exec(AliQA::kSDIGITS, sdigits) ;
325// GetQADataMaker()->Increment() ;
5b188f2f 326
fbf811ec 327 //Now write SDigits
fbf811ec 328
88cb7938 329
7acf6008 330 //First list of sdigits
88cb7938 331
fbf811ec 332 Int_t bufferSize = 32000 ;
88cb7938 333 TBranch * sdigitsBranch = treeS->Branch("PHOS",&sdigits,bufferSize);
334
fbf811ec 335 sdigitsBranch->Fill() ;
fbf811ec 336
88cb7938 337 gime->WriteSDigits("OVERWRITE");
338
339 //Next - SDigitizer
340
341 gime->WriteSDigitizer("OVERWRITE");
9d6866ec 342 //gObjectTable->Print() ;
343
7acf6008 344 if(strstr(option,"deb"))
345 PrintSDigits(option) ;
9d6866ec 346
347 //memwatcher.Watch(ievent);
348 }// event loop
fbf811ec 349
c65c502a 350// //Write the quality assurance data
351// GetQADataMaker()->EndOfCycle(AliQA::kHITS) ;
352// GetQADataMaker()->EndOfCycle(AliQA::kSDIGITS) ;
353// GetQADataMaker()->Finish() ;
ddd1a39c 354
88cb7938 355 Unload();
356
9d6866ec 357 // gime->PhosLoader()->GetSDigitsDataLoader()->GetBaseTaskLoader()->SetDoNotReload(kTRUE);
88cb7938 358
7acf6008 359 if(strstr(option,"tim")){
360 gBenchmark->Stop("PHOSSDigitizer");
21cd0c07 361 Info("Exec"," took %f seconds for SDigitizing %f seconds per event",
212d1c0f 362 gBenchmark->GetCpuTime("PHOSSDigitizer"), gBenchmark->GetCpuTime("PHOSSDigitizer")/nEvents) ;
7acf6008 363 }
9d6866ec 364
365 //TFile f("out.root","RECREATE");
366 //memwatcher.WriteToFile();
367 //f.Close();
990119d6 368}
106fc2fa 369
990119d6 370//__________________________________________________________________
702ab87e 371void AliPHOSSDigitizer::Print(const Option_t *)const
a4e98857 372{
373 // Prints parameters of SDigitizer
88cb7938 374 Info("Print", "\n------------------- %s -------------", GetName() ) ;
375 printf(" Writing SDigits to branch with title %s\n", fEventFolderName.Data()) ;
376 printf(" with digitization parameters A = %f\n", fA) ;
377 printf(" B = %f\n", fB) ;
378 printf(" Threshold for Primary assignment= %f\n", fPrimThreshold) ;
379 printf("---------------------------------------------------\n") ;
7acf6008 380
990119d6 381}
548f0134 382
990119d6 383//__________________________________________________________________
a4e98857 384Bool_t AliPHOSSDigitizer::operator==( AliPHOSSDigitizer const &sd )const
385{
3de072dc 386 // Equal operator.
387 // SDititizers are equal if their pedestal, slope and threshold are equal
388
990119d6 389 if( (fA==sd.fA)&&(fB==sd.fB)&&(fPrimThreshold==sd.fPrimThreshold))
390 return kTRUE ;
391 else
392 return kFALSE ;
393}
548f0134 394
a6eedfad 395//__________________________________________________________________
a4e98857 396void AliPHOSSDigitizer::PrintSDigits(Option_t * option)
397{
398 // Prints list of digits produced in the current pass of AliPHOSDigitizer
7b7c1533 399
a6eedfad 400
88cb7938 401 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
402 const TClonesArray * sdigits = gime->SDigits() ;
21cd0c07 403
71dfb0d8 404 Info( "\nPrintSDigits", "event # %d %d sdigits", gAlice->GetEvNumber(), sdigits->GetEntriesFast() ) ;
405
a6eedfad 406 if(strstr(option,"all")||strstr(option,"EMC")){
7acf6008 407
408 //loop over digits
409 AliPHOSDigit * digit;
71dfb0d8 410 printf("\nEMC sdigits\n") ;
a6eedfad 411 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
7acf6008 412 Int_t index ;
a6eedfad 413 for (index = 0 ; (index < sdigits->GetEntriesFast()) &&
fbf811ec 414 ((dynamic_cast<AliPHOSDigit *> (sdigits->At(index)))->GetId() <= maxEmc) ; index++) {
415 digit = dynamic_cast<AliPHOSDigit *>( sdigits->At(index) ) ;
71dfb0d8 416 // if(digit->GetNprimary() == 0)
417 // continue;
27a73a5d 418// printf("%6d %8d %6.5e %4d %2d :\n", // YVK
419 printf("%6d %.4f %6.5e %4d %2d :\n",
420 digit->GetId(), digit->GetEnergy(), digit->GetTime(), digit->GetIndexInList(), digit->GetNprimary()) ;
7acf6008 421 Int_t iprimary;
11f9c5ff 422 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
71dfb0d8 423 printf("%d ",digit->GetPrimary(iprimary+1) ) ;
11f9c5ff 424 }
a6eedfad 425 }
a6eedfad 426 }
427
428 if(strstr(option,"all")||strstr(option,"CPV")){
7acf6008 429
a6eedfad 430 //loop over CPV digits
431 AliPHOSDigit * digit;
71dfb0d8 432 printf("\nCPV sdigits\n") ;
a6eedfad 433 Int_t maxEmc = gime->PHOSGeometry()->GetNModules()*gime->PHOSGeometry()->GetNCristalsInModule() ;
434 Int_t index ;
435 for (index = 0 ; index < sdigits->GetEntriesFast(); index++) {
fbf811ec 436 digit = dynamic_cast<AliPHOSDigit *>( sdigits->At(index) ) ;
a6eedfad 437 if(digit->GetId() > maxEmc){
71dfb0d8 438 printf("\n%6d %8d %4d %2d :",
11f9c5ff 439 digit->GetId(), digit->GetAmp(), digit->GetIndexInList(), digit->GetNprimary()) ;
a6eedfad 440 Int_t iprimary;
21cd0c07 441 for (iprimary=0; iprimary<digit->GetNprimary(); iprimary++) {
71dfb0d8 442 printf("%d ",digit->GetPrimary(iprimary+1) ) ;
21cd0c07 443 }
a6eedfad 444 }
445 }
7acf6008 446 }
447}
7b7c1533 448
449//____________________________________________________________________________
88cb7938 450void AliPHOSSDigitizer::Unload() const
7b7c1533 451{
e957fea8 452 // Unloads the objects from the folder
88cb7938 453 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
454 AliPHOSLoader * loader = gime->PhosLoader() ;
455 loader->UnloadHits() ;
456 loader->UnloadSDigits() ;
7b7c1533 457}