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