]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSGetter.cxx
Moving AliMUONTriggerEfficiencyCells from sim to base
[u/mrichter/AliRoot.git] / PHOS / AliPHOSGetter.cxx
CommitLineData
4ae78bb1 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
803d1ab0 16/* $Id$ */
4ae78bb1 17
18//_________________________________________________________________________
19// A singleton. This class should be used in the analysis stage to get
20// reconstructed objects: Digits, RecPoints, TrackSegments and RecParticles,
21// instead of directly reading them from galice.root file. This container
22// ensures, that one reads Digits, made of these particular digits, RecPoints,
23// made of these particular RecPoints, TrackSegments and RecParticles.
24// This becomes non trivial if there are several identical branches, produced with
25// different set of parameters.
26//
27// An example of how to use (see also class AliPHOSAnalyser):
28// AliPHOSGetter * gime = AliPHOSGetter::GetInstance("galice.root","test") ;
29// for(Int_t irecp = 0; irecp < gime->NRecParticles() ; irecp++)
30// AliPHOSRecParticle * part = gime->RecParticle(1) ;
31// ................
2a657981 32// gime->Event(event) ; // reads new event from galice.root
4ae78bb1 33//
2a657981 34//*-- Author: Yves Schutz (SUBATECH) & Dmitri Peressounko (RRC KI & SUBATECH)
35//*-- Completely redesigned by Dmitri Peressounko March 2001
4ae78bb1 36//
37//*-- YS June 2001 : renamed the original AliPHOSIndexToObject and make
38//*-- systematic usage of TFolders without changing the interface
39//////////////////////////////////////////////////////////////////////////////
40
4ae78bb1 41// --- ROOT system ---
88cb7938 42
d7b234dd 43#include <TFile.h>
44#include <TROOT.h>
45#include <TSystem.h>
46#include <TParticle.h>
a43c51c3 47#include <TF1.h>
e4d04cf1 48#include <TGraph.h>
2bb77d5e 49#include <TCanvas.h>
50#include <TStyle.h>
351dd634 51//#include <TFrame.h>
4ae78bb1 52
53// --- Standard library ---
4ae78bb1 54
55// --- AliRoot header files ---
024a7e64 56#include "AliESD.h"
57#include "AliHeader.h"
58#include "AliMC.h"
e957fea8 59#include "AliPHOS.h"
024a7e64 60#include "AliPHOSBeamTestEvent.h"
61#include "AliPHOSGetter.h"
62#include "AliPHOSLoader.h"
88cb7938 63#include "AliRunLoader.h"
64#include "AliStack.h"
a43c51c3 65#include "AliPHOSRawStream.h"
66#include "AliRawReaderFile.h"
e4d04cf1 67#include "AliLog.h"
7ca0684e 68#include "AliCDBLocal.h"
69#include "AliCDBStorage.h"
9e1ceb13 70#include "AliCDBManager.h"
88cb7938 71
4ae78bb1 72ClassImp(AliPHOSGetter)
73
2bb77d5e 74AliPHOSGetter * AliPHOSGetter::fgObjGetter = 0 ;
75AliPHOSLoader * AliPHOSGetter::fgPhosLoader = 0;
76AliPHOSCalibData* AliPHOSGetter::fgCalibData = 0;
88cb7938 77Int_t AliPHOSGetter::fgDebug = 0;
78
79// TFile * AliPHOSGetter::fgFile = 0 ;
4ae78bb1 80
81//____________________________________________________________________________
88cb7938 82AliPHOSGetter::AliPHOSGetter(const char* headerFile, const char* version, Option_t * openingOption)
4ae78bb1 83{
88cb7938 84 // ctor only called by Instance()
4ae78bb1 85
88cb7938 86 AliRunLoader* rl = AliRunLoader::GetRunLoader(version) ;
87 if (!rl) {
88 rl = AliRunLoader::Open(headerFile, version, openingOption);
89 if (!rl) {
90 Fatal("AliPHOSGetter", "Could not find the Run Loader for %s - %s",headerFile, version) ;
91 return ;
92 }
93 if (rl->GetAliRun() == 0x0) {
94 rl->LoadgAlice();
95 gAlice = rl->GetAliRun(); // should be removed
12a7cec1 96 rl->LoadHeader();
88cb7938 97 }
fbf811ec 98 }
88cb7938 99 fgPhosLoader = dynamic_cast<AliPHOSLoader*>(rl->GetLoader("PHOSLoader"));
100 if ( !fgPhosLoader )
101 Error("AliPHOSGetter", "Could not find PHOSLoader") ;
102 else
103 fgPhosLoader->SetTitle(version);
104
88cb7938 105 // initialize data members
106 SetDebug(0) ;
107 fBTE = 0 ;
108 fPrimaries = 0 ;
109 fLoadingStatus = "" ;
d2713783 110
111 fESDFileName = rl->GetFileName() ; // this should be the galice.root file
112 fESDFileName.ReplaceAll("galice.root", "AliESDs.root") ;
95635748 113 fESDFile = 0 ;
677c8a30 114 fESD = 0 ;
115 fESDTree = 0 ;
66f895c8 116 fRawDigits = kFALSE ;
7ca0684e 117
88cb7938 118}
9bd3caba 119
88cb7938 120//____________________________________________________________________________
121AliPHOSGetter::~AliPHOSGetter()
122{
123 // dtor
66f895c8 124 if(fgPhosLoader){
125 delete fgPhosLoader ;
126 fgPhosLoader = 0 ;
127 }
128 if(fBTE){
129 delete fBTE ;
130 fBTE = 0 ;
131 }
132 if(fPrimaries){
133 fPrimaries->Delete() ;
134 delete fPrimaries ;
135 }
677c8a30 136 if (fESD)
137 delete fESD ;
138 if (fESDTree)
66f895c8 139 delete fESDTree ;
140
7c193632 141 fgObjGetter = 0;
0ef40383 142}
143
144//____________________________________________________________________________
145void AliPHOSGetter::Reset()
146{
147 // resets things in case the getter is called consecutively with different files
148 // the PHOS Loader is already deleted by the Run Loader
149
150 if (fPrimaries) {
151 fPrimaries->Delete() ;
152 delete fPrimaries ;
153 }
154 fgPhosLoader = 0;
155 fgObjGetter = 0;
88cb7938 156}
fbf811ec 157
88cb7938 158//____________________________________________________________________________
159AliPHOSClusterizer * AliPHOSGetter::Clusterizer()
160{
e957fea8 161 // Returns pointer to the Clusterizer task
88cb7938 162 AliPHOSClusterizer * rv ;
163 rv = dynamic_cast<AliPHOSClusterizer *>(PhosLoader()->Reconstructioner()) ;
164 if (!rv) {
165 Event(0, "R") ;
166 rv = dynamic_cast<AliPHOSClusterizer*>(PhosLoader()->Reconstructioner()) ;
167 }
168 return rv ;
169}
4ae78bb1 170
88cb7938 171//____________________________________________________________________________
2bb77d5e 172TObjArray * AliPHOSGetter::CpvRecPoints() const
88cb7938 173{
174 // asks the Loader to return the CPV RecPoints container
4ae78bb1 175
88cb7938 176 TObjArray * rv = 0 ;
177
178 rv = PhosLoader()->CpvRecPoints() ;
179 if (!rv) {
180 PhosLoader()->MakeRecPointsArray() ;
181 rv = PhosLoader()->CpvRecPoints() ;
182 }
183 return rv ;
184}
dca3a7c4 185
88cb7938 186//____________________________________________________________________________
2bb77d5e 187TClonesArray * AliPHOSGetter::Digits() const
88cb7938 188{
189 // asks the Loader to return the Digits container
7bb289a7 190
88cb7938 191 TClonesArray * rv = 0 ;
192 rv = PhosLoader()->Digits() ;
7bb289a7 193
88cb7938 194 if( !rv ) {
195 PhosLoader()->MakeDigitsArray() ;
196 rv = PhosLoader()->Digits() ;
4ae78bb1 197 }
88cb7938 198 return rv ;
199}
4b808d52 200
88cb7938 201//____________________________________________________________________________
202AliPHOSDigitizer * AliPHOSGetter::Digitizer()
203{
e957fea8 204 // Returns pointer to the Digitizer task
88cb7938 205 AliPHOSDigitizer * rv ;
206 rv = dynamic_cast<AliPHOSDigitizer *>(PhosLoader()->Digitizer()) ;
207 if (!rv) {
208 Event(0, "D") ;
209 rv = dynamic_cast<AliPHOSDigitizer *>(PhosLoader()->Digitizer()) ;
210 }
211 return rv ;
4ae78bb1 212}
fbf811ec 213
88cb7938 214
4ae78bb1 215//____________________________________________________________________________
2bb77d5e 216TObjArray * AliPHOSGetter::EmcRecPoints() const
0bc3b8ed 217{
88cb7938 218 // asks the Loader to return the EMC RecPoints container
d489fb96 219
88cb7938 220 TObjArray * rv = 0 ;
65549808 221
88cb7938 222 rv = PhosLoader()->EmcRecPoints() ;
223 if (!rv) {
224 PhosLoader()->MakeRecPointsArray() ;
225 rv = PhosLoader()->EmcRecPoints() ;
89165262 226 }
88cb7938 227 return rv ;
81bb1a45 228}
7a9d98f9 229
65549808 230//____________________________________________________________________________
2bb77d5e 231TClonesArray * AliPHOSGetter::TrackSegments() const
65549808 232{
88cb7938 233 // asks the Loader to return the TrackSegments container
234
235 TClonesArray * rv = 0 ;
236
237 rv = PhosLoader()->TrackSegments() ;
238 if (!rv) {
239 PhosLoader()->MakeTrackSegmentsArray() ;
240 rv = PhosLoader()->TrackSegments() ;
241 }
242 return rv ;
65549808 243}
4ae78bb1 244
0c87da39 245//____________________________________________________________________________
e957fea8 246AliPHOSTrackSegmentMaker * AliPHOSGetter::TrackSegmentMaker()
88cb7938 247{
e957fea8 248 // Returns pointer to the TrackSegmentMaker task
88cb7938 249 AliPHOSTrackSegmentMaker * rv ;
250 rv = dynamic_cast<AliPHOSTrackSegmentMaker *>(PhosLoader()->TrackSegmentMaker()) ;
251 if (!rv) {
252 Event(0, "T") ;
253 rv = dynamic_cast<AliPHOSTrackSegmentMaker *>(PhosLoader()->TrackSegmentMaker()) ;
0c87da39 254 }
88cb7938 255 return rv ;
0c87da39 256}
257
4ae78bb1 258//____________________________________________________________________________
2bb77d5e 259TClonesArray * AliPHOSGetter::RecParticles() const
4ae78bb1 260{
88cb7938 261 // asks the Loader to return the TrackSegments container
262
263 TClonesArray * rv = 0 ;
4ae78bb1 264
88cb7938 265 rv = PhosLoader()->RecParticles() ;
266 if (!rv) {
267 PhosLoader()->MakeRecParticlesArray() ;
268 rv = PhosLoader()->RecParticles() ;
b134c32f 269 }
88cb7938 270 return rv ;
4ae78bb1 271}
4ae78bb1 272//____________________________________________________________________________
fc7e2f43 273void AliPHOSGetter::Event(Int_t event, const char* opt)
4ae78bb1 274{
88cb7938 275 // Reads the content of all Tree's S, D and R
548f0134 276
66f895c8 277// if ( event >= MaxEvent() ) {
278// Error("Event", "%d not found in TreeE !", event) ;
279// return ;
280// }
4ae78bb1 281
88cb7938 282 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
df25f7dd 283
66f895c8 284// // checks if we are dealing with test-beam data
285// TBranch * btb = rl->TreeE()->GetBranch("AliPHOSBeamTestEvent") ;
286// if(btb){
287// if(!fBTE)
288// fBTE = new AliPHOSBeamTestEvent() ;
289// btb->SetAddress(&fBTE) ;
290// btb->GetEntry(event) ;
291// }
292// else{
293// if(fBTE){
294// delete fBTE ;
295// fBTE = 0 ;
296// }
297// }
88cb7938 298
299 // Loads the type of object(s) requested
b134c32f 300
88cb7938 301 rl->GetEvent(event) ;
302
66f895c8 303 if(strstr(opt,"X") || (strcmp(opt,"")==0)){
88cb7938 304 ReadPrimaries() ;
66f895c8 305 }
306
307 if(strstr(opt,"H") ){
88cb7938 308 ReadTreeH();
66f895c8 309 }
310
311 if(strstr(opt,"S") ){
88cb7938 312 ReadTreeS() ;
66f895c8 313 }
314
315 if(strstr(opt,"D") ){
88cb7938 316 ReadTreeD() ;
66f895c8 317 }
318
319 if(strstr(opt,"R") ){
88cb7938 320 ReadTreeR() ;
66f895c8 321 }
88cb7938 322
66f895c8 323 if( strstr(opt,"T") ){
88cb7938 324 ReadTreeT() ;
66f895c8 325 }
88cb7938 326
66f895c8 327 if( strstr(opt,"P") ){
88cb7938 328 ReadTreeP() ;
66f895c8 329 }
677c8a30 330
66f895c8 331 if( strstr(opt,"E") ){
677c8a30 332 ReadTreeE(event) ;
3cf4f75f 333 }
334
335}
336
337
338//____________________________________________________________________________
339void AliPHOSGetter::Event(AliRawReader *rawReader, const char* opt)
340{
341 // Reads the raw event from rawReader
a43c51c3 342
f88e2313 343 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
344
3cf4f75f 345 if( strstr(opt,"W") ){
f88e2313 346 rawReader->NextEvent();
347 Int_t iEvent = rl->GetEventNumber();
348 rl->GetEvent(iEvent);
3cf4f75f 349 ReadRaw(rawReader) ;
66f895c8 350 }
95635748 351
88cb7938 352}
353
354
355//____________________________________________________________________________
356Int_t AliPHOSGetter::EventNumber() const
357 {
358 // return the current event number
359 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
360 return static_cast<Int_t>(rl->GetEventNumber()) ;
fbf811ec 361}
d489fb96 362
fbf811ec 363//____________________________________________________________________________
2bb77d5e 364 TClonesArray * AliPHOSGetter::Hits() const
fbf811ec 365{
88cb7938 366 // asks the loader to return the Hits container
367
368 TClonesArray * rv = 0 ;
369
370 rv = PhosLoader()->Hits() ;
371 if ( !rv ) {
372 PhosLoader()->LoadHits("read");
373 rv = PhosLoader()->Hits() ;
fbf811ec 374 }
88cb7938 375 return rv ;
376}
fbf811ec 377
88cb7938 378//____________________________________________________________________________
379AliPHOSGetter * AliPHOSGetter::Instance(const char* alirunFileName, const char* version, Option_t * openingOption)
380{
381 // Creates and returns the pointer of the unique instance
382 // Must be called only when the environment has changed
d489fb96 383
88cb7938 384 if(!fgObjGetter){ // first time the getter is called
385 fgObjGetter = new AliPHOSGetter(alirunFileName, version, openingOption) ;
fbf811ec 386 }
88cb7938 387 else { // the getter has been called previously
388 AliRunLoader * rl = AliRunLoader::GetRunLoader(fgPhosLoader->GetTitle());
389 if ( rl->GetFileName() == alirunFileName ) {// the alirunFile has the same name
390 // check if the file is already open
391 TFile * galiceFile = dynamic_cast<TFile *>(gROOT->FindObject(rl->GetFileName()) ) ;
392
393 if ( !galiceFile )
394 fgObjGetter = new AliPHOSGetter(alirunFileName, version, openingOption) ;
395
396 else { // the file is already open check the version name
397 TString currentVersionName = rl->GetEventFolder()->GetName() ;
398 TString newVersionName(version) ;
399 if (currentVersionName == newVersionName)
400 if(fgDebug)
401 ::Warning( "Instance", "Files with version %s already open", currentVersionName.Data() ) ;
402 else {
403 fgObjGetter = new AliPHOSGetter(alirunFileName, version, openingOption) ;
404 }
405 }
406 }
7fba1747 407 else {
408 AliRunLoader * rl = AliRunLoader::GetRunLoader(fgPhosLoader->GetTitle()) ;
e191bb57 409 if ( strstr(version, AliConfig::GetDefaultEventFolderName()) ) // false in case of merging
1c221c70 410 delete rl ;
88cb7938 411 fgObjGetter = new AliPHOSGetter(alirunFileName, version, openingOption) ;
7fba1747 412 }
48f12df6 413 }
88cb7938 414 if (!fgObjGetter)
95635748 415 ::Error("AliPHOSGetter::Instance", "Failed to create the PHOS Getter object") ;
88cb7938 416 else
417 if (fgDebug)
418 Print() ;
4ae78bb1 419
88cb7938 420 return fgObjGetter ;
4ae78bb1 421}
422
6ad0e528 423//____________________________________________________________________________
88cb7938 424AliPHOSGetter * AliPHOSGetter::Instance()
6ad0e528 425{
88cb7938 426 // Returns the pointer of the unique instance already defined
fbf811ec 427
95635748 428 if(!fgObjGetter && fgDebug)
429 ::Warning("AliPHOSGetter::Instance", "Getter not initialized") ;
6ad0e528 430
88cb7938 431 return fgObjGetter ;
432
6ad0e528 433}
434
435//____________________________________________________________________________
88cb7938 436Int_t AliPHOSGetter::MaxEvent() const
6ad0e528 437{
88cb7938 438 // returns the number of events in the run (from TE)
0bc3b8ed 439
88cb7938 440 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
441 return static_cast<Int_t>(rl->GetNumberOfEvents()) ;
6ad0e528 442}
443
444//____________________________________________________________________________
88cb7938 445TParticle * AliPHOSGetter::Primary(Int_t index) const
6ad0e528 446{
88cb7938 447 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
448 return rl->Stack()->Particle(index) ;
449}
6ad0e528 450
4ae78bb1 451//____________________________________________________________________________
88cb7938 452AliPHOS * AliPHOSGetter:: PHOS() const
4ae78bb1 453{
454 // returns the PHOS object
5c4bcd63 455 AliPHOSLoader * loader = 0;
456 static AliPHOSLoader * oldloader = 0;
457 static AliPHOS * phos = 0;
458
459 loader = PhosLoader();
460
461 if ( loader != oldloader) {
462 phos = dynamic_cast<AliPHOS*>(loader->GetModulesFolder()->FindObject("PHOS")) ;
463 oldloader = loader;
464 }
7a9d98f9 465 if (!phos)
88cb7938 466 if (fgDebug)
467 Warning("PHOS", "PHOS module not found in module folders: %s", PhosLoader()->GetModulesFolder()->GetName() ) ;
7a9d98f9 468 return phos ;
4ae78bb1 469}
470
88cb7938 471
472
473//____________________________________________________________________________
e957fea8 474AliPHOSPID * AliPHOSGetter::PID()
88cb7938 475{
e957fea8 476 // Returns pointer to the PID task
88cb7938 477 AliPHOSPID * rv ;
478 rv = dynamic_cast<AliPHOSPID *>(PhosLoader()->PIDTask()) ;
479 if (!rv) {
480 Event(0, "P") ;
481 rv = dynamic_cast<AliPHOSPID *>(PhosLoader()->PIDTask()) ;
482 }
483 return rv ;
484}
485
4ae78bb1 486//____________________________________________________________________________
88cb7938 487AliPHOSGeometry * AliPHOSGetter::PHOSGeometry() const
4ae78bb1 488{
0bc3b8ed 489 // Returns PHOS geometry
490
7a9d98f9 491 AliPHOSGeometry * rv = 0 ;
492 if (PHOS() )
493 rv = PHOS()->GetGeometry() ;
494 return rv ;
495}
4ae78bb1 496
cb34a1fa 497//____________________________________________________________________________
88cb7938 498TClonesArray * AliPHOSGetter::Primaries()
499{
500 // creates the Primaries container if needed
501 if ( !fPrimaries ) {
502 if (fgDebug)
503 Info("Primaries", "Creating a new TClonesArray for primaries") ;
504 fPrimaries = new TClonesArray("TParticle", 1000) ;
505 }
506 return fPrimaries ;
507}
508
509//____________________________________________________________________________
510void AliPHOSGetter::Print()
511{
512 // Print usefull information about the getter
513
514 AliRunLoader * rl = AliRunLoader::GetRunLoader(fgPhosLoader->GetTitle());
515 ::Info( "Print", "gAlice file is %s -- version name is %s", (rl->GetFileName()).Data(), rl->GetEventFolder()->GetName() ) ;
516}
cb34a1fa 517
88cb7938 518//____________________________________________________________________________
519void AliPHOSGetter::ReadPrimaries()
520{
521 // Read Primaries from Kinematics.root
cb34a1fa 522
88cb7938 523 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
cb34a1fa 524
88cb7938 525 // gets kine tree from the root file (Kinematics.root)
7fba1747 526 if ( ! rl->TreeK() ) { // load treeK the first time
88cb7938 527 rl->LoadKinematics() ;
7fba1747 528 }
88cb7938 529
7fba1747 530 fNPrimaries = (rl->GetHeader())->GetNtrack();
88cb7938 531 if (fgDebug)
532 Info( "ReadTreeK", "Found %d particles in event # %d", fNPrimaries, EventNumber() ) ;
cb34a1fa 533
cb34a1fa 534
88cb7938 535 // first time creates the container
536 if ( Primaries() )
537 fPrimaries->Clear() ;
cb34a1fa 538
88cb7938 539 Int_t index = 0 ;
540 for (index = 0 ; index < fNPrimaries; index++) {
541 new ((*fPrimaries)[index]) TParticle(*(Primary(index)));
cb34a1fa 542 }
cb34a1fa 543}
544
95635748 545//____________________________________________________________________________
d2713783 546Bool_t AliPHOSGetter::OpenESDFile()
95635748 547{
d2713783 548 //Open the ESD file
95635748 549 Bool_t rv = kTRUE ;
d2713783 550 if (!fESDFile) {
551 fESDFile = TFile::Open(fESDFileName) ;
552 if (!fESDFile )
553 return kFALSE ;
554 }
95635748 555 else if (fESDFile->IsOpen()) {
556 fESDFile->Close() ;
557 fESDFile = TFile::Open(fESDFileName) ;
558 }
559 if (!fESDFile->IsOpen())
560 rv = kFALSE ;
561 return rv ;
562}
563
45c1ce6f 564//____________________________________________________________________________
2bb77d5e 565void AliPHOSGetter::FitRaw(Bool_t lowGainFlag, TGraph * gLowGain, TGraph * gHighGain, TF1* signalF, Double_t & energy, Double_t & time) const
45c1ce6f 566{
567 // Fits the raw signal time distribution
568
569 const Int_t kNoiseThreshold = 0 ;
570 Double_t timezero1 = 0., timezero2 = 0., timemax = 0. ;
571 Double_t signal = 0., signalmax = 0. ;
44ae287e 572 time = 0. ;
573 energy = 0. ;
45c1ce6f 574
575 if (lowGainFlag) {
576 timezero1 = timezero2 = signalmax = timemax = 0. ;
577 signalF->FixParameter(0, PHOS()->GetRawFormatLowCharge()) ;
578 signalF->FixParameter(1, PHOS()->GetRawFormatLowGain()) ;
579 Int_t index ;
580 for (index = 0; index < PHOS()->GetRawFormatTimeBins(); index++) {
581 gLowGain->GetPoint(index, time, signal) ;
582 if (signal > kNoiseThreshold && timezero1 == 0.)
583 timezero1 = time ;
584 if (signal <= kNoiseThreshold && timezero1 > 0. && timezero2 == 0.)
585 timezero2 = time ;
586 if (signal > signalmax) {
587 signalmax = signal ;
588 timemax = time ;
589 }
590 }
591 signalmax /= PHOS()->RawResponseFunctionMax(PHOS()->GetRawFormatLowCharge(),
592 PHOS()->GetRawFormatLowGain()) ;
593 if ( timezero1 + PHOS()->GetRawFormatTimePeak() < PHOS()->GetRawFormatTimeMax() * 0.4 ) { // else its noise
594 signalF->SetParameter(2, signalmax) ;
595 signalF->SetParameter(3, timezero1) ;
2bb77d5e 596 gLowGain->Fit(signalF, "QRO", "", 0., timezero2); //, "QRON") ;
45c1ce6f 597 energy = signalF->GetParameter(2) ;
598 time = signalF->GetMaximumX() - PHOS()->GetRawFormatTimePeak() - PHOS()->GetRawFormatTimeTrigger() ;
599 }
600 } else {
601 timezero1 = timezero2 = signalmax = timemax = 0. ;
602 signalF->FixParameter(0, PHOS()->GetRawFormatHighCharge()) ;
603 signalF->FixParameter(1, PHOS()->GetRawFormatHighGain()) ;
604 Int_t index ;
605 for (index = 0; index < PHOS()->GetRawFormatTimeBins(); index++) {
606 gHighGain->GetPoint(index, time, signal) ;
607 if (signal > kNoiseThreshold && timezero1 == 0.)
608 timezero1 = time ;
609 if (signal <= kNoiseThreshold && timezero1 > 0. && timezero2 == 0.)
610 timezero2 = time ;
611 if (signal > signalmax) {
612 signalmax = signal ;
613 timemax = time ;
614 }
615 }
616 signalmax /= PHOS()->RawResponseFunctionMax(PHOS()->GetRawFormatHighCharge(),
617 PHOS()->GetRawFormatHighGain()) ;;
618 if ( timezero1 + PHOS()->GetRawFormatTimePeak() < PHOS()->GetRawFormatTimeMax() * 0.4 ) { // else its noise
619 signalF->SetParameter(2, signalmax) ;
620 signalF->SetParameter(3, timezero1) ;
2bb77d5e 621 gHighGain->Fit(signalF, "QRO", "", 0., timezero2) ;
45c1ce6f 622 energy = signalF->GetParameter(2) ;
623 time = signalF->GetMaximumX() - PHOS()->GetRawFormatTimePeak() - PHOS()->GetRawFormatTimeTrigger() ;
624 }
625 }
44ae287e 626 if (time == 0) energy = 0 ;
45c1ce6f 627}
628
44ae287e 629//____________________________________________________________________________
630Int_t AliPHOSGetter::CalibrateRaw(Double_t energy, Int_t *relId)
631{
632 // Convert energy into digitized amplitude for a cell relId
633 // It is a user responsilibity to open CDB and set
634 // AliPHOSCalibData object by the following operators:
635 //
636 // AliCDBLocal *loc = new AliCDBLocal("deCalibDB");
637 // AliPHOSCalibData* clb = (AliPHOSCalibData*)AliCDBStorage::Instance()
638 // ->Get(path_to_calibdata,run_number);
639 // AliPHOSGetter* gime = AliPHOSGetter::Instance("galice.root");
640 // gime->SetCalibData(clb);
641
642 if (CalibData() == 0)
f88e2313 643 Warning("CalibrateRaw","Calibration DB is not initiated!");
44ae287e 644
645 Int_t module = relId[0];
f88e2313 646 Int_t column = relId[3];
647 Int_t row = relId[2];
648
649 Float_t gainFactor = 0.0015; // width of one Emc ADC channel in GeV
650 Float_t pedestal = 0.005; // Emc pedestals
651
652 if(CalibData()) {
653 gainFactor = CalibData()->GetADCchannelEmc (module,column,row);
654 pedestal = CalibData()->GetADCpedestalEmc(module,column,row);
655 }
656
44ae287e 657 Int_t amp = static_cast<Int_t>( (energy - pedestal) / gainFactor + 0.5 ) ;
658 return amp;
659}
a43c51c3 660//____________________________________________________________________________
3cf4f75f 661Int_t AliPHOSGetter::ReadRaw(AliRawReader *rawReader)
a43c51c3 662{
663 // reads the raw format data, converts it into digits format and store digits in Digits()
664 // container.
665
3cf4f75f 666 AliPHOSRawStream in(rawReader);
a43c51c3 667
45c1ce6f 668 Bool_t first = kTRUE ;
669
670 TF1 * signalF = new TF1("signal", AliPHOS::RawResponseFunction, 0, PHOS()->GetRawFormatTimeMax(), 4);
671 signalF->SetParNames("Charge", "Gain", "Amplitude", "TimeZero") ;
672
44ae287e 673 Int_t relId[4], id =0;
45c1ce6f 674 Bool_t lowGainFlag = kFALSE ;
2bb77d5e 675
a43c51c3 676 TClonesArray * digits = Digits() ;
677 digits->Clear() ;
678 Int_t idigit = 0 ;
44ae287e 679 Int_t amp = 0 ;
680 Double_t energy = 0. ;
681 Double_t time = 0. ;
ff808dc7 682
45c1ce6f 683 TGraph * gLowGain = new TGraph(PHOS()->GetRawFormatTimeBins()) ;
684 TGraph * gHighGain= new TGraph(PHOS()->GetRawFormatTimeBins()) ;
2bb77d5e 685 gLowGain ->SetTitle("Low gain channel");
686 gHighGain->SetTitle("High gain channel");
e4d04cf1 687
45c1ce6f 688 while ( in.Next() ) { // PHOS entries loop
689 if ( (in.IsNewRow() || in.IsNewColumn() || in.IsNewModule()) ) {
690 if (!first) {
44ae287e 691 FitRaw(lowGainFlag, gLowGain, gHighGain, signalF, energy, time) ;
b482deac 692 amp = (Int_t)energy;
2bb77d5e 693 if (energy > 0) {
694 new((*digits)[idigit]) AliPHOSDigit( -1, id, (Float_t)energy, time) ;
45c1ce6f 695 idigit++ ;
696 }
697 Int_t index ;
698 for (index = 0; index < PHOS()->GetRawFormatTimeBins(); index++) {
2bb77d5e 699 gLowGain ->SetPoint(index,
700 index * PHOS()->GetRawFormatTimeMax() /
701 PHOS()->GetRawFormatTimeBins(), 0) ;
702 gHighGain->SetPoint(index,
703 index * PHOS()->GetRawFormatTimeMax() /
704 PHOS()->GetRawFormatTimeBins(), 0) ;
45c1ce6f 705 }
706 }
707 first = kFALSE ;
2bb77d5e 708 relId[0] = in.GetModule() ;
709 if ( relId[0] >= PHOS()->GetRawFormatLowGainOffset() ) {
710 relId[0] -= PHOS()->GetRawFormatLowGainOffset() ;
711 lowGainFlag = kTRUE ;
712 } else
713 lowGainFlag = kFALSE ;
714 relId[1] = 0 ;
715 relId[2] = in.GetRow() ;
716 relId[3] = in.GetColumn() ;
717 PHOSGeometry()->RelToAbsNumbering(relId, id) ;
66f895c8 718 }
45c1ce6f 719 if (lowGainFlag)
720 gLowGain->SetPoint(in.GetTime(),
2bb77d5e 721 in.GetTime()* PHOS()->GetRawFormatTimeMax() /
722 PHOS()->GetRawFormatTimeBins(),
723 in.GetSignal()) ;
45c1ce6f 724 else
725 gHighGain->SetPoint(in.GetTime(),
2bb77d5e 726 in.GetTime() * PHOS()->GetRawFormatTimeMax() /
727 PHOS()->GetRawFormatTimeBins(),
728 in.GetSignal() ) ;
45c1ce6f 729
a43c51c3 730 } // PHOS entries loop
45c1ce6f 731
44ae287e 732 FitRaw(lowGainFlag, gLowGain, gHighGain, signalF, energy, time) ;
b482deac 733 amp = (Int_t)energy;
2bb77d5e 734 if (energy > 0 ) {
735 new((*digits)[idigit]) AliPHOSDigit( -1, id, (Float_t)energy, time) ;
44ae287e 736 idigit++ ;
737 }
ff808dc7 738 digits->Sort() ;
45c1ce6f 739
740 delete signalF ;
29167ac3 741 delete gLowGain;
742 delete gHighGain ;
a43c51c3 743
e4d04cf1 744 return digits->GetEntriesFast() ;
a43c51c3 745}
45c1ce6f 746
b0bba0af 747//____________________________________________________________________________
fd31ff92 748Int_t AliPHOSGetter::ReadTreeD() const
88cb7938 749{
750 // Read the Digits
b0bba0af 751
41c29fde 752 PhosLoader()->CleanDigits() ;
ff808dc7 753 PhosLoader()->LoadDigits("UPDATE") ;
754 PhosLoader()->LoadDigitizer("UPDATE") ;
88cb7938 755 return Digits()->GetEntries() ;
756}
7a9d98f9 757
b0bba0af 758//____________________________________________________________________________
fd31ff92 759Int_t AliPHOSGetter::ReadTreeH() const
88cb7938 760{
761 // Read the Hits
41c29fde 762 PhosLoader()->CleanHits() ;
88cb7938 763 // gets TreeH from the root file (PHOS.Hit.root)
41c29fde 764 //if ( !IsLoaded("H") ) {
88cb7938 765 PhosLoader()->LoadHits("UPDATE") ;
41c29fde 766 // SetLoaded("H") ;
767 //}
88cb7938 768 return Hits()->GetEntries() ;
769}
4ae78bb1 770
88cb7938 771//____________________________________________________________________________
fd31ff92 772Int_t AliPHOSGetter::ReadTreeR() const
88cb7938 773{
774 // Read the RecPoints
b0bba0af 775
41c29fde 776 PhosLoader()->CleanRecPoints() ;
88cb7938 777 // gets TreeR from the root file (PHOS.RecPoints.root)
41c29fde 778 //if ( !IsLoaded("R") ) {
88cb7938 779 PhosLoader()->LoadRecPoints("UPDATE") ;
780 PhosLoader()->LoadClusterizer("UPDATE") ;
41c29fde 781 // SetLoaded("R") ;
782 //}
f1611b7c 783
88cb7938 784 return EmcRecPoints()->GetEntries() ;
b0bba0af 785}
7a9d98f9 786
b0bba0af 787//____________________________________________________________________________
fd31ff92 788Int_t AliPHOSGetter::ReadTreeT() const
88cb7938 789{
790 // Read the TrackSegments
7a9d98f9 791
41c29fde 792 PhosLoader()->CleanTracks() ;
88cb7938 793 // gets TreeT from the root file (PHOS.TrackSegments.root)
41c29fde 794 //if ( !IsLoaded("T") ) {
88cb7938 795 PhosLoader()->LoadTracks("UPDATE") ;
796 PhosLoader()->LoadTrackSegmentMaker("UPDATE") ;
41c29fde 797 // SetLoaded("T") ;
798 //}
fbf811ec 799
88cb7938 800 return TrackSegments()->GetEntries() ;
801}
b0bba0af 802//____________________________________________________________________________
fd31ff92 803Int_t AliPHOSGetter::ReadTreeP() const
88cb7938 804{
41c29fde 805 // Read the RecParticles
88cb7938 806
41c29fde 807 PhosLoader()->CleanRecParticles() ;
808
88cb7938 809 // gets TreeT from the root file (PHOS.TrackSegments.root)
41c29fde 810 // if ( !IsLoaded("P") ) {
88cb7938 811 PhosLoader()->LoadRecParticles("UPDATE") ;
812 PhosLoader()->LoadPID("UPDATE") ;
41c29fde 813 // SetLoaded("P") ;
814 //}
7a9d98f9 815
88cb7938 816 return RecParticles()->GetEntries() ;
817}
818//____________________________________________________________________________
fd31ff92 819Int_t AliPHOSGetter::ReadTreeS() const
88cb7938 820{
821 // Read the SDigits
822
41c29fde 823 PhosLoader()->CleanSDigits() ;
88cb7938 824 // gets TreeS from the root file (PHOS.SDigits.root)
41c29fde 825 //if ( !IsLoaded("S") ) {
7b4c1168 826 PhosLoader()->LoadSDigits("READ") ;
827 PhosLoader()->LoadSDigitizer("READ") ;
41c29fde 828 // SetLoaded("S") ;
829 //}
b0bba0af 830
88cb7938 831 return SDigits()->GetEntries() ;
832}
f1611b7c 833
677c8a30 834//____________________________________________________________________________
835Int_t AliPHOSGetter::ReadTreeE(Int_t event)
836{
837 // Read the ESD
838
839 // gets esdTree from the root file (AliESDs.root)
840 if (!fESDFile)
841 if ( !OpenESDFile() )
842 return -1 ;
843
844 fESDTree = static_cast<TTree*>(fESDFile->Get("esdTree")) ;
845 fESD = new AliESD;
846 if (!fESDTree) {
847
848 Error("ReadTreeE", "no ESD tree found");
849 return -1;
850 }
851 fESDTree->SetBranchAddress("ESD", &fESD);
852 fESDTree->GetEvent(event);
853
854 return event ;
855}
856
88cb7938 857//____________________________________________________________________________
2bb77d5e 858TClonesArray * AliPHOSGetter::SDigits() const
88cb7938 859{
860 // asks the Loader to return the Digits container
b0bba0af 861
88cb7938 862 TClonesArray * rv = 0 ;
863
864 rv = PhosLoader()->SDigits() ;
865 if (!rv) {
866 PhosLoader()->MakeSDigitsArray() ;
867 rv = PhosLoader()->SDigits() ;
868 }
869 return rv ;
b0bba0af 870}
871
872//____________________________________________________________________________
e957fea8 873AliPHOSSDigitizer * AliPHOSGetter::SDigitizer()
88cb7938 874{
e957fea8 875 // Returns pointer to the SDigitizer task
88cb7938 876 AliPHOSSDigitizer * rv ;
877 rv = dynamic_cast<AliPHOSSDigitizer *>(PhosLoader()->SDigitizer()) ;
878 if (!rv) {
879 Event(0, "S") ;
880 rv = dynamic_cast<AliPHOSSDigitizer *>(PhosLoader()->SDigitizer()) ;
b0bba0af 881 }
88cb7938 882 return rv ;
b0bba0af 883}
7a9d98f9 884
b0bba0af 885//____________________________________________________________________________
fc7e2f43 886TParticle * AliPHOSGetter::Secondary(const TParticle* p, Int_t index) const
88cb7938 887{
888 // Return first (index=1) or second (index=2) secondary particle of primary particle p
889
890 if(index <= 0)
891 return 0 ;
892 if(index > 2)
893 return 0 ;
b0bba0af 894
88cb7938 895 if(p) {
896 Int_t daughterIndex = p->GetDaughter(index-1) ;
897 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
5d12ce38 898 return rl->GetAliRun()->GetMCApp()->Particle(daughterIndex) ;
88cb7938 899 }
900 else
901 return 0 ;
902}
4ae78bb1 903
88cb7938 904//____________________________________________________________________________
fc7e2f43 905void AliPHOSGetter::Track(Int_t itrack)
88cb7938 906{
907 // Read the first entry of PHOS branch in hit tree gAlice->TreeH()
908
909 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
b0bba0af 910
88cb7938 911 if( !TreeH() ) // load treeH the first time
912 rl->LoadHits() ;
b0bba0af 913
88cb7938 914 // first time create the container
915 TClonesArray * hits = Hits() ;
916 if ( hits )
917 hits->Clear() ;
b0bba0af 918
88cb7938 919 TBranch * phosbranch = dynamic_cast<TBranch*>(TreeH()->GetBranch("PHOS")) ;
920 phosbranch->SetAddress(&hits) ;
921 phosbranch->GetEntry(itrack) ;
b0bba0af 922}
923
b0bba0af 924//____________________________________________________________________________
88cb7938 925TTree * AliPHOSGetter::TreeD() const
926{
e957fea8 927 // Returns pointer to the Digits Tree
88cb7938 928 TTree * rv = 0 ;
929 rv = PhosLoader()->TreeD() ;
930 if ( !rv ) {
931 PhosLoader()->MakeTree("D");
932 rv = PhosLoader()->TreeD() ;
b0bba0af 933 }
b0bba0af 934
88cb7938 935 return rv ;
b0bba0af 936}
548f0134 937
b0bba0af 938//____________________________________________________________________________
88cb7938 939TTree * AliPHOSGetter::TreeH() const
940{
e957fea8 941 // Returns pointer to the Hits Tree
88cb7938 942 TTree * rv = 0 ;
943 rv = PhosLoader()->TreeH() ;
944 if ( !rv ) {
945 PhosLoader()->MakeTree("H");
946 rv = PhosLoader()->TreeH() ;
947 }
948
949 return rv ;
b0bba0af 950}
7a9d98f9 951
b0bba0af 952//____________________________________________________________________________
88cb7938 953TTree * AliPHOSGetter::TreeR() const
0bc3b8ed 954{
e957fea8 955 // Returns pointer to the RecPoints Tree
88cb7938 956 TTree * rv = 0 ;
957 rv = PhosLoader()->TreeR() ;
958 if ( !rv ) {
959 PhosLoader()->MakeTree("R");
960 rv = PhosLoader()->TreeR() ;
961 }
b0bba0af 962
88cb7938 963 return rv ;
b0bba0af 964}
965
b0bba0af 966//____________________________________________________________________________
88cb7938 967TTree * AliPHOSGetter::TreeT() const
0bc3b8ed 968{
e957fea8 969 // Returns pointer to the TrackSegments Tree
88cb7938 970 TTree * rv = 0 ;
971 rv = PhosLoader()->TreeT() ;
972 if ( !rv ) {
973 PhosLoader()->MakeTree("T");
974 rv = PhosLoader()->TreeT() ;
975 }
b0bba0af 976
88cb7938 977 return rv ;
b0bba0af 978}
b0bba0af 979//____________________________________________________________________________
88cb7938 980TTree * AliPHOSGetter::TreeP() const
0bc3b8ed 981{
e957fea8 982 // Returns pointer to the RecParticles Tree
88cb7938 983 TTree * rv = 0 ;
984 rv = PhosLoader()->TreeP() ;
985 if ( !rv ) {
986 PhosLoader()->MakeTree("P");
987 rv = PhosLoader()->TreeP() ;
988 }
4ae78bb1 989
88cb7938 990 return rv ;
b0bba0af 991}
992
993//____________________________________________________________________________
88cb7938 994TTree * AliPHOSGetter::TreeS() const
e957fea8 995{
996 // Returns pointer to the SDigits Tree
88cb7938 997 TTree * rv = 0 ;
998 rv = PhosLoader()->TreeS() ;
999 if ( !rv ) {
1000 PhosLoader()->MakeTree("S");
1001 rv = PhosLoader()->TreeS() ;
b0bba0af 1002 }
b0bba0af 1003
88cb7938 1004 return rv ;
b0bba0af 1005}
7a9d98f9 1006
b0bba0af 1007//____________________________________________________________________________
88cb7938 1008Bool_t AliPHOSGetter::VersionExists(TString & opt) const
1009{
1010 // checks if the version with the present name already exists in the same directory
7a9d98f9 1011
88cb7938 1012 Bool_t rv = kFALSE ;
1013
1014 AliRunLoader * rl = AliRunLoader::GetRunLoader(PhosLoader()->GetTitle());
1015 TString version( rl->GetEventFolder()->GetName() ) ;
7a9d98f9 1016
88cb7938 1017 opt.ToLower() ;
b0bba0af 1018
88cb7938 1019 if ( opt == "sdigits") {
1020 // add the version name to the root file name
1021 TString fileName( PhosLoader()->GetSDigitsFileName() ) ;
e191bb57 1022 if (version != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name
88cb7938 1023 fileName = fileName.ReplaceAll(".root", "") + "_" + version + ".root" ;
1024 if ( !(gSystem->AccessPathName(fileName)) ) {
1025 Warning("VersionExists", "The file %s already exists", fileName.Data()) ;
1026 rv = kTRUE ;
4ae78bb1 1027 }
88cb7938 1028 PhosLoader()->SetSDigitsFileName(fileName) ;
b0bba0af 1029 }
7a9d98f9 1030
88cb7938 1031 if ( opt == "digits") {
1032 // add the version name to the root file name
1033 TString fileName( PhosLoader()->GetDigitsFileName() ) ;
e191bb57 1034 if (version != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name
88cb7938 1035 fileName = fileName.ReplaceAll(".root", "") + "_" + version + ".root" ;
1036 if ( !(gSystem->AccessPathName(fileName)) ) {
1037 Warning("VersionExists", "The file %s already exists", fileName.Data()) ;
1038 rv = kTRUE ;
7a9d98f9 1039 }
b0bba0af 1040 }
7a9d98f9 1041
88cb7938 1042 return rv ;
7a9d98f9 1043
b0bba0af 1044}
88cb7938 1045
7bb289a7 1046//____________________________________________________________________________
88cb7938 1047UShort_t AliPHOSGetter::EventPattern(void) const
0bc3b8ed 1048{
1049 // Return the pattern (trigger bit register) of the beam-test event
7bb289a7 1050 if(fBTE)
1051 return fBTE->GetPattern() ;
1052 else
1053 return 0 ;
1054}
1055//____________________________________________________________________________
88cb7938 1056Float_t AliPHOSGetter::BeamEnergy(void) const
0bc3b8ed 1057{
1058 // Return the beam energy of the beam-test event
7bb289a7 1059 if(fBTE)
1060 return fBTE->GetBeamEnergy() ;
1061 else
1062 return 0 ;
1063}
7ca0684e 1064//____________________________________________________________________________
1065
1066AliPHOSCalibData* AliPHOSGetter::CalibData()
1067{
ef868168 1068 // Check if the instance of AliPHOSCalibData exists, and return it
7ca0684e 1069
2bb77d5e 1070 return fgCalibData;
7ca0684e 1071}