]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALGetter.cxx
Removing extra semicolon
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGetter.cxx
CommitLineData
ffa6d63b 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$ */
ffa6d63b 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
88cb7938 22// ensures, that one reads Digits, made of these particular digits, RecPoints,
ffa6d63b 23// made of these particular RecPoints, TrackSegments and RecParticles.
24// This becomes non trivial if there are several identical branches, produced with
d75bea67 25// different set of parameters.
ffa6d63b 26//
27// An example of how to use (see also class AliEMCALAnalyser):
28// AliEMCALGetter * gime = AliEMCALGetter::GetInstance("galice.root","test") ;
d75bea67 29// for(Int_t irecp = 0; irecp < gime->NRecParticles() ; irecp++)
30// AliEMCALRecParticle * part = gime->RecParticle(1) ;
ffa6d63b 31// ................
88cb7938 32// gime->Event(event) ; // reads new event from galice.root
ffa6d63b 33//
d75bea67 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 AliEMCALIndexToObject and make
88cb7938 38//*-- systematic usage of TFolders without changing the interface
ffa6d63b 39//////////////////////////////////////////////////////////////////////////////
40
ffa6d63b 41// --- ROOT system ---
173558f2 42
024a7e64 43#include <TFile.h>
44#include <TROOT.h>
45#include <TSystem.h>
a43c51c3 46#include <TF1.h>
56088960 47#include <TGraph.h>
48//#include <TCanvas.h>
49//#include <TFrame.h>
ffa6d63b 50
51// --- Standard library ---
173558f2 52
ffa6d63b 53// --- AliRoot header files ---
1ce25ac8 54
d64c959b 55#include "AliEMCAL.h"
024a7e64 56#include "AliEMCALGetter.h"
88cb7938 57#include "AliEMCALLoader.h"
024a7e64 58#include "AliHeader.h"
5d12ce38 59#include "AliMC.h"
024a7e64 60#include "AliRunLoader.h"
61#include "AliStack.h"
a43c51c3 62#include "AliEMCALRawStream.h"
63#include "AliRawReaderFile.h"
ffa6d63b 64
65ClassImp(AliEMCALGetter)
88cb7938 66
67AliEMCALGetter * AliEMCALGetter::fgObjGetter = 0 ;
68AliEMCALLoader * AliEMCALGetter::fgEmcalLoader = 0;
69Int_t AliEMCALGetter::fgDebug = 0;
173558f2 70
88cb7938 71// TFile * AliEMCALGetter::fgFile = 0 ;
ffa6d63b 72
73//____________________________________________________________________________
7c193632 74AliEMCALGetter::AliEMCALGetter(const char* headerFile, const char* version, Option_t * openingOption) {
88cb7938 75 AliRunLoader* rl = AliRunLoader::GetRunLoader(version) ;
76 if (!rl) {
77 rl = AliRunLoader::Open(headerFile, version, openingOption);
78 if (!rl) {
79 Fatal("AliEMCALGetter", "Could not find the Run Loader for %s - %s",headerFile, version) ;
80 return ;
81 }
82 if (rl->GetAliRun() == 0x0) {
83 rl->LoadgAlice();
84 gAlice = rl->GetAliRun(); // should be removed
ba298680 85 }
ad616871 86 }
88cb7938 87 fgEmcalLoader = dynamic_cast<AliEMCALLoader*>(rl->GetLoader("EMCALLoader"));
88 if ( !fgEmcalLoader )
89 Error("AliEMCALGetter", "Could not find EMCALLoader") ;
90 else
91 fgEmcalLoader->SetTitle(version);
7c193632 92
93 // initialize data members
94 SetDebug(0) ;
95 fLoadingStatus = "" ;
96
97}
98
99//____________________________________________________________________________
100AliEMCALGetter::~AliEMCALGetter()
101{
102 if (fgEmcalLoader) {
103 delete fgEmcalLoader;
104 fgEmcalLoader = 0 ;
105 }
106 fgObjGetter = 0;
0ef40383 107}
108
7c193632 109
0ef40383 110//____________________________________________________________________________
111void AliEMCALGetter::Reset()
112{
113 // resets things in case the getter is called consecutively with different files
114 // the EMCAL Loader is already deleted by the Run Loader
7c193632 115 fgEmcalLoader = 0;
116 fgObjGetter = 0;
0ef40383 117
88cb7938 118}
d489fb96 119
88cb7938 120//____________________________________________________________________________
121AliEMCALClusterizer * AliEMCALGetter::Clusterizer()
122{
1ce25ac8 123 // return pointer to Clusterizer Tree
88cb7938 124 AliEMCALClusterizer * rv ;
125 rv = dynamic_cast<AliEMCALClusterizer *>(EmcalLoader()->Reconstructioner()) ;
126 if (!rv) {
127 Event(0, "R") ;
128 rv = dynamic_cast<AliEMCALClusterizer*>(EmcalLoader()->Reconstructioner()) ;
05a92d59 129 }
88cb7938 130 return rv ;
ffa6d63b 131}
132
173558f2 133
88cb7938 134//____________________________________________________________________________
1ce25ac8 135TClonesArray * AliEMCALGetter::Digits() const
65549808 136{
88cb7938 137 // asks the Loader to return the Digits container
138
139 TClonesArray * rv = 0 ;
140 rv = EmcalLoader()->Digits() ;
141
142 if( !rv ) {
143 EmcalLoader()->MakeDigitsArray() ;
144 rv = EmcalLoader()->Digits() ;
145 }
146 return rv ;
65549808 147}
148
ffa6d63b 149//____________________________________________________________________________
88cb7938 150AliEMCALDigitizer * AliEMCALGetter::Digitizer()
151{
1ce25ac8 152 // return pointer to Digitizer Tree
88cb7938 153 AliEMCALDigitizer * rv ;
154 rv = dynamic_cast<AliEMCALDigitizer *>(EmcalLoader()->Digitizer()) ;
155 if (!rv) {
156 Event(0, "D") ;
157 rv = dynamic_cast<AliEMCALDigitizer *>(EmcalLoader()->Digitizer()) ;
158 }
159 return rv ;
160}
173558f2 161
0c87da39 162//____________________________________________________________________________
1ce25ac8 163TObjArray * AliEMCALGetter::ECARecPoints() const
ffa6d63b 164{
88cb7938 165 // asks the Loader to return the EMC RecPoints container
173558f2 166
88cb7938 167 TObjArray * rv = 0 ;
168
169 rv = EmcalLoader()->ECARecPoints() ;
170 if (!rv) {
171 EmcalLoader()->MakeRecPointsArray() ;
172 rv = EmcalLoader()->ECARecPoints() ;
b134c32f 173 }
88cb7938 174 return rv ;
ffa6d63b 175}
176
05a92d59 177//____________________________________________________________________________
1ce25ac8 178TClonesArray * AliEMCALGetter::TrackSegments() const
05a92d59 179{
88cb7938 180 // asks the Loader to return the TrackSegments container
05a92d59 181
88cb7938 182 TClonesArray * rv = 0 ;
183
184 rv = EmcalLoader()->TrackSegments() ;
185 if (!rv) {
186 EmcalLoader()->MakeTrackSegmentsArray() ;
187 rv = EmcalLoader()->TrackSegments() ;
05a92d59 188 }
88cb7938 189 return rv ;
190}
173558f2 191
88cb7938 192//____________________________________________________________________________
193AliEMCALTrackSegmentMaker * AliEMCALGetter::TrackSegmentMaker()
194{
1ce25ac8 195 // return pointer to TrackSegmentMaker Tree
88cb7938 196 AliEMCALTrackSegmentMaker * rv ;
197 rv = dynamic_cast<AliEMCALTrackSegmentMaker *>(EmcalLoader()->TrackSegmentMaker()) ;
198 if (!rv) {
199 Event(0, "T") ;
200 rv = dynamic_cast<AliEMCALTrackSegmentMaker *>(EmcalLoader()->TrackSegmentMaker()) ;
48f12df6 201 }
88cb7938 202 return rv ;
05a92d59 203}
6c58180f 204
05a92d59 205//____________________________________________________________________________
1ce25ac8 206TClonesArray * AliEMCALGetter::RecParticles() const
88cb7938 207{
208 // asks the Loader to return the TrackSegments container
173558f2 209
88cb7938 210 TClonesArray * rv = 0 ;
211
212 rv = EmcalLoader()->RecParticles() ;
213 if (!rv) {
214 EmcalLoader()->MakeRecParticlesArray() ;
215 rv = EmcalLoader()->RecParticles() ;
216 }
217 return rv ;
218}
219//____________________________________________________________________________
09884213 220void AliEMCALGetter::Event(Int_t event, const char* opt)
05a92d59 221{
88cb7938 222 // Reads the content of all Tree's S, D and R
d489fb96 223
7c193632 224// if ( event >= MaxEvent() ) {
225// Error("Event", "%d not found in TreeE !", event) ;
226// return ;
227// }
173558f2 228
88cb7938 229 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
88cb7938 230 // checks if we are dealing with test-beam data
231// TBranch * btb = rl->TreeE()->GetBranch("AliEMCALBeamTestEvent") ;
232// if(btb){
233// if(!fBTE)
234// fBTE = new AliEMCALBeamTestEvent() ;
235// btb->SetAddress(&fBTE) ;
236// btb->GetEntry(event) ;
237// }
238// else{
239// if(fBTE){
240// delete fBTE ;
241// fBTE = 0 ;
242// }
243// }
173558f2 244
88cb7938 245 // Loads the type of object(s) requested
246
247 rl->GetEvent(event) ;
173558f2 248
88cb7938 249 if( strstr(opt,"X") || (strcmp(opt,"")==0) )
250 ReadPrimaries() ;
173558f2 251
88cb7938 252 if(strstr(opt,"H") )
253 ReadTreeH();
173558f2 254
88cb7938 255 if(strstr(opt,"S") )
256 ReadTreeS() ;
173558f2 257
88cb7938 258 if( strstr(opt,"D") )
259 ReadTreeD() ;
173558f2 260
88cb7938 261 if( strstr(opt,"R") )
262 ReadTreeR() ;
173558f2 263
88cb7938 264 if( strstr(opt,"T") )
265 ReadTreeT() ;
173558f2 266
88cb7938 267 if( strstr(opt,"P") )
268 ReadTreeP() ;
a43c51c3 269
270 if( strstr(opt,"W") )
271 ReadRaw(event) ;
272
05a92d59 273}
274
88cb7938 275
05a92d59 276//____________________________________________________________________________
88cb7938 277Int_t AliEMCALGetter::EventNumber() const
278 {
279 // return the current event number
280 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
281 return static_cast<Int_t>(rl->GetEventNumber()) ;
282}
173558f2 283
88cb7938 284//____________________________________________________________________________
1ce25ac8 285 TClonesArray * AliEMCALGetter::Hits() const
05a92d59 286{
88cb7938 287 // asks the loader to return the Hits container
288
289 TClonesArray * rv = 0 ;
290
291 rv = EmcalLoader()->Hits() ;
292 if ( !rv ) {
293 EmcalLoader()->LoadHits("read");
294 rv = EmcalLoader()->Hits() ;
295 }
296 return rv ;
05a92d59 297}
298
299//____________________________________________________________________________
88cb7938 300AliEMCALGetter * AliEMCALGetter::Instance(const char* alirunFileName, const char* version, Option_t * openingOption)
05a92d59 301{
88cb7938 302 // Creates and returns the pointer of the unique instance
303 // Must be called only when the environment has changed
48401f0d 304
88cb7938 305 if(!fgObjGetter){ // first time the getter is called
306 fgObjGetter = new AliEMCALGetter(alirunFileName, version, openingOption) ;
307 }
308 else { // the getter has been called previously
7c193632 309 AliRunLoader * rl = AliRunLoader::GetRunLoader(fgEmcalLoader->GetTitle());
310 if ( rl->GetFileName() == alirunFileName ) {// the alirunFile has the same name
88cb7938 311 // check if the file is already open
312 TFile * galiceFile = dynamic_cast<TFile *>(gROOT->FindObject(rl->GetFileName()) ) ;
313
314 if ( !galiceFile )
7c193632 315 fgObjGetter = new AliEMCALGetter(alirunFileName, version, openingOption);
88cb7938 316
317 else { // the file is already open check the version name
318 TString currentVersionName = rl->GetEventFolder()->GetName() ;
319 TString newVersionName(version) ;
320 if (currentVersionName == newVersionName)
321 if(fgDebug)
322 ::Warning( "Instance", "Files with version %s already open", currentVersionName.Data() ) ;
6b10bdac 323 else {
7c193632 324 fgObjGetter = new AliEMCALGetter(alirunFileName, version, openingOption) ;
88cb7938 325 }
326 }
05a92d59 327 }
7fba1747 328 else {
7c193632 329 AliRunLoader * rl = AliRunLoader::GetRunLoader(fgEmcalLoader->GetTitle());
e191bb57 330 if ( strstr(version, AliConfig::GetDefaultEventFolderName()) ) // false in case of merging
1c221c70 331 delete rl ;
7c193632 332 fgObjGetter = new AliEMCALGetter(alirunFileName, version, openingOption) ;
7fba1747 333 }
05a92d59 334 }
88cb7938 335 if (!fgObjGetter)
9e5dd82c 336 ::Error("AliEMCALGetter::Instance", "Failed to create the EMCAL Getter object") ;
88cb7938 337 else
338 if (fgDebug)
339 Print() ;
6b10bdac 340
88cb7938 341 return fgObjGetter ;
ffa6d63b 342}
343
344//____________________________________________________________________________
88cb7938 345AliEMCALGetter * AliEMCALGetter::Instance()
346{
347 // Returns the pointer of the unique instance already defined
348
9e5dd82c 349 if(!fgObjGetter && fgDebug)
350 ::Warning("AliEMCALGetter::Instance", "Getter not initialized") ;
88cb7938 351
352 return fgObjGetter ;
353
354}
173558f2 355
88cb7938 356//____________________________________________________________________________
357Int_t AliEMCALGetter::MaxEvent() const
ffa6d63b 358{
88cb7938 359 // returns the number of events in the run (from TE)
360
361 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
362 return static_cast<Int_t>(rl->GetNumberOfEvents()) ;
363}
173558f2 364
88cb7938 365//____________________________________________________________________________
366TParticle * AliEMCALGetter::Primary(Int_t index) const
367{
368 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
369 return rl->Stack()->Particle(index) ;
370}
173558f2 371
6b10bdac 372//____________________________________________________________________________
373Int_t AliEMCALGetter::NPrimaries() const
374{
375 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
376 return (rl->GetHeader())->GetNtrack();
377}
378
88cb7938 379//____________________________________________________________________________
380AliEMCAL * AliEMCALGetter:: EMCAL() const
381{
382 // returns the EMCAL object
5c4bcd63 383 AliEMCALLoader * loader = 0;
384 static AliEMCALLoader * oldloader = 0;
385 static AliEMCAL * emcal = 0;
386
387 loader = EmcalLoader();
388
389 if (loader != oldloader ) {
390 emcal = dynamic_cast<AliEMCAL*>(loader->GetModulesFolder()->FindObject("EMCAL")) ;
391 oldloader = loader;
392 }
ffa6d63b 393 if (!emcal)
88cb7938 394 if (fgDebug)
395 Warning("EMCAL", "EMCAL module not found in module folders: %s", EmcalLoader()->GetModulesFolder()->GetName() ) ;
ffa6d63b 396 return emcal ;
397}
398
88cb7938 399
400
ffa6d63b 401//____________________________________________________________________________
88cb7938 402AliEMCALPID * AliEMCALGetter::PID()
403{
1ce25ac8 404 // return pointer to PID Tree
88cb7938 405 AliEMCALPID * rv ;
406 rv = dynamic_cast<AliEMCALPID *>(EmcalLoader()->PIDTask()) ;
407 if (!rv) {
408 Event(0, "P") ;
409 rv = dynamic_cast<AliEMCALPID *>(EmcalLoader()->PIDTask()) ;
410 }
411 return rv ;
412}
173558f2 413
88cb7938 414//____________________________________________________________________________
415AliEMCALGeometry * AliEMCALGetter::EMCALGeometry() const
ffa6d63b 416{
88cb7938 417 // Returns EMCAL geometry
418
ffa6d63b 419 AliEMCALGeometry * rv = 0 ;
420 if (EMCAL() )
d75bea67 421 rv = EMCAL()->GetGeometry() ;
ffa6d63b 422 return rv ;
423}
424
9bd3caba 425//____________________________________________________________________________
88cb7938 426void AliEMCALGetter::Print()
427{
428 // Print usefull information about the getter
429
430 AliRunLoader * rl = AliRunLoader::GetRunLoader(fgEmcalLoader->GetTitle());
b7de6a56 431 ::Info("Print", "gAlice file is %s -- version name is %s", (rl->GetFileName()).Data(), rl->GetEventFolder()->GetName() ) ;
88cb7938 432}
173558f2 433
88cb7938 434//____________________________________________________________________________
435void AliEMCALGetter::ReadPrimaries()
436{
437 // Read Primaries from Kinematics.root
438
439 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
440
441 // gets kine tree from the root file (Kinematics.root)
442 if ( ! rl->TreeK() ) // load treeK the first time
443 rl->LoadKinematics() ;
444
88cb7938 445 if (fgDebug)
6b10bdac 446 Info("ReadTreeK", "Found %d particles in event # %d", NPrimaries(), EventNumber() ) ;
9bd3caba 447}
448
56088960 449//____________________________________________________________________________
450void AliEMCALGetter::FitRaw(Bool_t lowGainFlag, TGraph * gLowGain, TGraph * gHighGain, TF1* signalF, Int_t & amp, Double_t & time)
451{
452 // Fits the raw signal time distribution
453
454 const Int_t kNoiseThreshold = 0 ;
455 Double_t timezero1 = 0., timezero2 = 0., timemax = 0. ;
456 Double_t signal = 0., signalmax = 0. ;
457 Double_t energy = time = 0. ;
458
459 if (lowGainFlag) {
460 timezero1 = timezero2 = signalmax = timemax = 0. ;
461 signalF->FixParameter(0, EMCAL()->GetRawFormatLowCharge()) ;
462 signalF->FixParameter(1, EMCAL()->GetRawFormatLowGain()) ;
463 Int_t index ;
464 for (index = 0; index < EMCAL()->GetRawFormatTimeBins(); index++) {
465 gLowGain->GetPoint(index, time, signal) ;
466 if (signal > kNoiseThreshold && timezero1 == 0.)
467 timezero1 = time ;
468 if (signal <= kNoiseThreshold && timezero1 > 0. && timezero2 == 0.)
469 timezero2 = time ;
470 if (signal > signalmax) {
471 signalmax = signal ;
472 timemax = time ;
473 }
474 }
475 signalmax /= EMCAL()->RawResponseFunctionMax(EMCAL()->GetRawFormatLowCharge(),
476 EMCAL()->GetRawFormatLowGain()) ;
477 if ( timezero1 + EMCAL()->GetRawFormatTimePeak() < EMCAL()->GetRawFormatTimeMax() * 0.4 ) { // else its noise
478 signalF->SetParameter(2, signalmax) ;
479 signalF->SetParameter(3, timezero1) ;
480 gLowGain->Fit(signalF, "QRON", "", 0., timezero2); //, "QRON") ;
481 energy = signalF->GetParameter(2) ;
482 time = signalF->GetMaximumX() - EMCAL()->GetRawFormatTimePeak() - EMCAL()->GetRawFormatTimeTrigger() ;
483 }
484 } else {
485 timezero1 = timezero2 = signalmax = timemax = 0. ;
486 signalF->FixParameter(0, EMCAL()->GetRawFormatHighCharge()) ;
487 signalF->FixParameter(1, EMCAL()->GetRawFormatHighGain()) ;
488 Int_t index ;
489 for (index = 0; index < EMCAL()->GetRawFormatTimeBins(); index++) {
490 gHighGain->GetPoint(index, time, signal) ;
491 if (signal > kNoiseThreshold && timezero1 == 0.)
492 timezero1 = time ;
493 if (signal <= kNoiseThreshold && timezero1 > 0. && timezero2 == 0.)
494 timezero2 = time ;
495 if (signal > signalmax) {
496 signalmax = signal ;
497 timemax = time ;
498 }
499 }
500 signalmax /= EMCAL()->RawResponseFunctionMax(EMCAL()->GetRawFormatHighCharge(),
501 EMCAL()->GetRawFormatHighGain()) ;;
502 if ( timezero1 + EMCAL()->GetRawFormatTimePeak() < EMCAL()->GetRawFormatTimeMax() * 0.4 ) { // else its noise
503 signalF->SetParameter(2, signalmax) ;
504 signalF->SetParameter(3, timezero1) ;
505 gHighGain->Fit(signalF, "QRON", "", 0., timezero2) ;
506 energy = signalF->GetParameter(2) ;
507 time = signalF->GetMaximumX() - EMCAL()->GetRawFormatTimePeak() - EMCAL()->GetRawFormatTimeTrigger() ;
508 }
509 }
510
511 if (time == 0. && energy == 0.)
512 amp = 0 ;
513 else {
514 AliEMCALDigitizer * digitizer = Digitizer() ;
515 amp = static_cast<Int_t>( (energy - digitizer->GetECApedestal()) / digitizer->GetECAchannel() + 0.5 ) ;
516 }
517 // dessin
518// TCanvas * c1 = new TCanvas("c1","A Simple Graph Example",200,10,700,500);
519// c1->SetFillColor(42);
520// c1->SetGrid();
521// gLowGain->SetLineColor(2);
522// gLowGain->SetLineWidth(4);
523// gLowGain->SetMarkerColor(4);
524// gLowGain->SetMarkerStyle(21);
525// gLowGain->SetTitle("Lowgain");
526// gLowGain->GetXaxis()->SetTitle("X title");
527// gLowGain->GetYaxis()->SetTitle("Y title");
528// gLowGain->Draw("ACP");
529
530// c1->Update();
531// c1->GetFrame()->SetFillColor(21);
532// c1->GetFrame()->SetBorderSize(12);
533// c1->Modified();
534
535// TCanvas * c2 = new TCanvas("c2","A Simple Graph Example",200,10,700,500);
536// c2->SetFillColor(42);
537// c2->SetGrid();
538// gHighGain->SetLineColor(2);
539// gHighGain->SetLineWidth(4);
540// gHighGain->SetMarkerColor(4);
541// gHighGain->SetMarkerStyle(21);
542// gHighGain->SetTitle("Highgain");
543// gHighGain->GetXaxis()->SetTitle("X title");
544// gHighGain->GetYaxis()->SetTitle("Y title");
545// gHighGain->Draw("ACP");
546
547// c2->Update();
548// c2->GetFrame()->SetFillColor(21);
549// c2->GetFrame()->SetBorderSize(12);
550// c2->Modified();
551}
552
ffa6d63b 553//____________________________________________________________________________
a43c51c3 554Int_t AliEMCALGetter::ReadRaw(Int_t event)
555{
556 // reads the raw format data, converts it into digits format and store digits in Digits()
557 // container.
558
559 AliRawReaderFile rawReader(event) ;
560 AliEMCALRawStream in(&rawReader);
561
a43c51c3 562 Bool_t first = kTRUE ;
56088960 563
564 TF1 * signalF = new TF1("signal", AliEMCAL::RawResponseFunction, 0, EMCAL()->GetRawFormatTimeMax(), 4);
565 signalF->SetParNames("Charge", "Gain", "Amplitude", "TimeZero") ;
566
a43c51c3 567
568 Int_t id = -1;
56088960 569 Bool_t lowGainFlag = kFALSE ;
570
a43c51c3 571 TClonesArray * digits = Digits() ;
572 digits->Clear() ;
573 Int_t idigit = 0 ;
56088960 574 Int_t amp = 0 ;
575 Double_t time = 0. ;
576
577 TGraph * gLowGain = new TGraph(EMCAL()->GetRawFormatTimeBins()) ;
578 TGraph * gHighGain= new TGraph(EMCAL()->GetRawFormatTimeBins()) ;
579
a43c51c3 580 while ( in.Next() ) { // EMCAL entries loop
a43c51c3 581 if ( in.IsNewId() ) {
582 if (!first) {
56088960 583 FitRaw(lowGainFlag, gLowGain, gHighGain, signalF, amp, time) ;
584 if (amp > 0) {
585 new((*digits)[idigit]) AliEMCALDigit( -1, -1, id, amp, time) ;
a43c51c3 586 idigit++ ;
587 }
56088960 588 Int_t index ;
589 for (index = 0; index < EMCAL()->GetRawFormatTimeBins(); index++) {
590 gLowGain->SetPoint(index, index * EMCAL()->GetRawFormatTimeMax() / EMCAL()->GetRawFormatTimeBins(), 0) ;
591 gHighGain->SetPoint(index, index * EMCAL()->GetRawFormatTimeMax() / EMCAL()->GetRawFormatTimeBins(), 0) ;
592 }
593 }
a43c51c3 594 first = kFALSE ;
a43c51c3 595 id = in.GetId() ;
56088960 596 if (in.GetModule() == EMCAL()->GetRawFormatLowGainOffset() )
597 lowGainFlag = kTRUE ;
598 else
599 lowGainFlag = kFALSE ;
a43c51c3 600 }
56088960 601 if (lowGainFlag)
602 gLowGain->SetPoint(in.GetTime(),
603 in.GetTime()* EMCAL()->GetRawFormatTimeMax() / EMCAL()->GetRawFormatTimeBins(),
604 in.GetSignal()) ;
a43c51c3 605 else
56088960 606 gHighGain->SetPoint(in.GetTime(),
607 in.GetTime() * EMCAL()->GetRawFormatTimeMax() / EMCAL()->GetRawFormatTimeBins(),
608 in.GetSignal() ) ;
609
a43c51c3 610 } // EMCAL entries loop
56088960 611 digits->Sort() ;
612
613 delete signalF ;
3fcec200 614 delete gLowGain;
615 delete gHighGain ;
56088960 616
a43c51c3 617 return Digits()->GetEntriesFast() ;
618}
619
620 //____________________________________________________________________________
88cb7938 621Int_t AliEMCALGetter::ReadTreeD()
622{
623 // Read the Digits
624
ad616871 625 EmcalLoader()->CleanDigits() ;
7c193632 626 EmcalLoader()->LoadDigits("UPDATE") ;
627 EmcalLoader()->LoadDigitizer("UPDATE") ;
628 return Digits()->GetEntries() ;
88cb7938 629}
ffa6d63b 630
631//____________________________________________________________________________
88cb7938 632Int_t AliEMCALGetter::ReadTreeH()
633{
634 // Read the Hits
ad616871 635 EmcalLoader()->CleanHits() ;
88cb7938 636 // gets TreeH from the root file (EMCAL.Hit.root)
ad616871 637 //if ( !IsLoaded("H") ) {
dd55cb8a 638 EmcalLoader()->LoadHits("UPDATE") ;
639 //SetLoaded("H") ;
ad616871 640 //}
88cb7938 641 return Hits()->GetEntries() ;
642}
173558f2 643
88cb7938 644//____________________________________________________________________________
645Int_t AliEMCALGetter::ReadTreeR()
646{
647 // Read the RecPoints
ad616871 648
649 EmcalLoader()->CleanRecPoints() ;
88cb7938 650 // gets TreeR from the root file (EMCAL.RecPoints.root)
ad616871 651 //if ( !IsLoaded("R") ) {
88cb7938 652 EmcalLoader()->LoadRecPoints("UPDATE") ;
653 EmcalLoader()->LoadClusterizer("UPDATE") ;
ad616871 654 // SetLoaded("R") ;
655 //}
173558f2 656
88cb7938 657 return ECARecPoints()->GetEntries() ;
ffa6d63b 658}
659
660//____________________________________________________________________________
88cb7938 661Int_t AliEMCALGetter::ReadTreeT()
662{
663 // Read the TrackSegments
664
ad616871 665 EmcalLoader()->CleanTracks() ;
88cb7938 666 // gets TreeT from the root file (EMCAL.TrackSegments.root)
ad616871 667 //if ( !IsLoaded("T") ) {
88cb7938 668 EmcalLoader()->LoadTracks("UPDATE") ;
669 EmcalLoader()->LoadTrackSegmentMaker("UPDATE") ;
ad616871 670 // SetLoaded("T") ;
671 //}
173558f2 672
88cb7938 673 return TrackSegments()->GetEntries() ;
674}
ffa6d63b 675//____________________________________________________________________________
88cb7938 676Int_t AliEMCALGetter::ReadTreeP()
677{
ad616871 678 // Read the RecParticles
88cb7938 679
ad616871 680 EmcalLoader()->CleanRecParticles() ;
681 // gets TreeP from the root file (EMCAL.RecParticles.root)
682 // if ( !IsLoaded("P") ) {
88cb7938 683 EmcalLoader()->LoadRecParticles("UPDATE") ;
684 EmcalLoader()->LoadPID("UPDATE") ;
ad616871 685 // SetLoaded("P") ;
686 // }
173558f2 687
88cb7938 688 return RecParticles()->GetEntries() ;
689}
690//____________________________________________________________________________
691Int_t AliEMCALGetter::ReadTreeS()
692{
693 // Read the SDigits
694
ad616871 695 // EmcalLoader()->CleanSDigits() ;
88cb7938 696 // gets TreeS from the root file (EMCAL.SDigits.root)
ad616871 697 // if ( !IsLoaded("S") ) {
bf49006a 698 EmcalLoader()->LoadSDigits("READ") ;
699 EmcalLoader()->LoadSDigitizer("READ") ;
ad616871 700 // SetLoaded("S") ;
701 //}
ffa6d63b 702
88cb7938 703 return SDigits()->GetEntries() ;
704}
173558f2 705
88cb7938 706//____________________________________________________________________________
1ce25ac8 707TClonesArray * AliEMCALGetter::SDigits() const
88cb7938 708{
709 // asks the Loader to return the Digits container
173558f2 710
88cb7938 711 TClonesArray * rv = 0 ;
712
713 rv = EmcalLoader()->SDigits() ;
714 if (!rv) {
715 EmcalLoader()->MakeSDigitsArray() ;
716 rv = EmcalLoader()->SDigits() ;
ffa6d63b 717 }
88cb7938 718 return rv ;
719}
ffa6d63b 720
88cb7938 721//____________________________________________________________________________
722AliEMCALSDigitizer * AliEMCALGetter::SDigitizer()
723{
b7de6a56 724 // Return pointer to SDigitizer task
88cb7938 725 AliEMCALSDigitizer * rv ;
726 rv = dynamic_cast<AliEMCALSDigitizer *>(EmcalLoader()->SDigitizer()) ;
727 if (!rv) {
728 Event(0, "S") ;
729 rv = dynamic_cast<AliEMCALSDigitizer *>(EmcalLoader()->SDigitizer()) ;
ffa6d63b 730 }
88cb7938 731 return rv ;
732}
733
734//____________________________________________________________________________
09884213 735TParticle * AliEMCALGetter::Secondary(const TParticle* p, Int_t index) const
88cb7938 736{
737 // Return first (index=1) or second (index=2) secondary particle of primary particle p
ffa6d63b 738
88cb7938 739 if(index <= 0)
740 return 0 ;
741 if(index > 2)
742 return 0 ;
173558f2 743
88cb7938 744 if(p) {
745 Int_t daughterIndex = p->GetDaughter(index-1) ;
746 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
5d12ce38 747 return rl->GetAliRun()->GetMCApp()->Particle(daughterIndex) ;
05a92d59 748 }
88cb7938 749 else
750 return 0 ;
ffa6d63b 751}
752
753//____________________________________________________________________________
09884213 754void AliEMCALGetter::Track(Int_t itrack)
88cb7938 755{
756 // Read the first entry of EMCAL branch in hit tree gAlice->TreeH()
757
758 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
173558f2 759
88cb7938 760 if( !TreeH() ) // load treeH the first time
761 rl->LoadHits() ;
ffa6d63b 762
88cb7938 763 // first time create the container
764 TClonesArray * hits = Hits() ;
765 if ( hits )
766 hits->Clear() ;
173558f2 767
88cb7938 768 TBranch * emcalbranch = dynamic_cast<TBranch*>(TreeH()->GetBranch("EMCAL")) ;
769 emcalbranch->SetAddress(&hits) ;
770 emcalbranch->GetEntry(itrack) ;
771}
ffa6d63b 772
ffa6d63b 773//____________________________________________________________________________
88cb7938 774TTree * AliEMCALGetter::TreeD() const
ffa6d63b 775{
1ce25ac8 776 // return pointer to Digits Tree
88cb7938 777 TTree * rv = 0 ;
778 rv = EmcalLoader()->TreeD() ;
779 if ( !rv ) {
780 EmcalLoader()->MakeTree("D");
781 rv = EmcalLoader()->TreeD() ;
9859bfc0 782 }
88cb7938 783
784 return rv ;
ffa6d63b 785}
9bd3caba 786
ffa6d63b 787//____________________________________________________________________________
88cb7938 788TTree * AliEMCALGetter::TreeH() const
ffa6d63b 789{
1ce25ac8 790 // return pointer to Hits Tree
88cb7938 791 TTree * rv = 0 ;
792 rv = EmcalLoader()->TreeH() ;
793 if ( !rv ) {
794 EmcalLoader()->MakeTree("H");
795 rv = EmcalLoader()->TreeH() ;
796 }
797
798 return rv ;
9859bfc0 799}
173558f2 800
ffa6d63b 801//____________________________________________________________________________
88cb7938 802TTree * AliEMCALGetter::TreeR() const
ffa6d63b 803{
1ce25ac8 804 // return pointer to RecPoints Tree
805
88cb7938 806 TTree * rv = 0 ;
807 rv = EmcalLoader()->TreeR() ;
808 if ( !rv ) {
809 EmcalLoader()->MakeTree("R");
810 rv = EmcalLoader()->TreeR() ;
811 }
812
813 return rv ;
ffa6d63b 814}
173558f2 815
ffa6d63b 816//____________________________________________________________________________
88cb7938 817TTree * AliEMCALGetter::TreeT() const
1ce25ac8 818{
819 // return pointer to TrackSegments Tree
88cb7938 820 TTree * rv = 0 ;
821 rv = EmcalLoader()->TreeT() ;
822 if ( !rv ) {
823 EmcalLoader()->MakeTree("T");
824 rv = EmcalLoader()->TreeT() ;
825 }
516fff8e 826
88cb7938 827 return rv ;
ffa6d63b 828}
65549808 829//____________________________________________________________________________
88cb7938 830TTree * AliEMCALGetter::TreeP() const
65549808 831{
1ce25ac8 832 // return pointer to RecParticles Tree
88cb7938 833 TTree * rv = 0 ;
834 rv = EmcalLoader()->TreeP() ;
835 if ( !rv ) {
836 EmcalLoader()->MakeTree("P");
837 rv = EmcalLoader()->TreeP() ;
05a92d59 838 }
88cb7938 839
840 return rv ;
65549808 841}
173558f2 842
65549808 843//____________________________________________________________________________
88cb7938 844TTree * AliEMCALGetter::TreeS() const
65549808 845{
1ce25ac8 846 // return pointer to SDigits Tree
88cb7938 847 TTree * rv = 0 ;
848 rv = EmcalLoader()->TreeS() ;
849 if ( !rv ) {
850 EmcalLoader()->MakeTree("S");
851 rv = EmcalLoader()->TreeS() ;
852 }
853
854 return rv ;
65549808 855}
856
857//____________________________________________________________________________
88cb7938 858Bool_t AliEMCALGetter::VersionExists(TString & opt) const
65549808 859{
88cb7938 860 // checks if the version with the present name already exists in the same directory
05a92d59 861
88cb7938 862 Bool_t rv = kFALSE ;
863
864 AliRunLoader * rl = AliRunLoader::GetRunLoader(EmcalLoader()->GetTitle());
865 TString version( rl->GetEventFolder()->GetName() ) ;
173558f2 866
88cb7938 867 opt.ToLower() ;
868
869 if ( opt == "sdigits") {
870 // add the version name to the root file name
871 TString fileName( EmcalLoader()->GetSDigitsFileName() ) ;
e191bb57 872 if (version != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name
88cb7938 873 fileName = fileName.ReplaceAll(".root", "") + "_" + version + ".root" ;
874 if ( !(gSystem->AccessPathName(fileName)) ) {
875 Warning("VersionExists", "The file %s already exists", fileName.Data()) ;
876 rv = kTRUE ;
05a92d59 877 }
88cb7938 878 EmcalLoader()->SetSDigitsFileName(fileName) ;
05a92d59 879 }
173558f2 880
88cb7938 881 if ( opt == "digits") {
882 // add the version name to the root file name
883 TString fileName( EmcalLoader()->GetDigitsFileName() ) ;
e191bb57 884 if (version != AliConfig::GetDefaultEventFolderName()) // only if not the default folder name
88cb7938 885 fileName = fileName.ReplaceAll(".root", "") + "_" + version + ".root" ;
886 if ( !(gSystem->AccessPathName(fileName)) ) {
887 Warning("VersionExists", "The file %s already exists", fileName.Data()) ;
888 rv = kTRUE ;
05a92d59 889 }
890 }
891
88cb7938 892 return rv ;
173558f2 893
05a92d59 894}
173558f2 895
05a92d59 896//____________________________________________________________________________
88cb7938 897UShort_t AliEMCALGetter::EventPattern(void) const
05a92d59 898{
88cb7938 899 // Return the pattern (trigger bit register) of the beam-test event
900// if(fBTE)
901// return fBTE->GetPattern() ;
902// else
903 return 0 ;
05a92d59 904}
905//____________________________________________________________________________
88cb7938 906Float_t AliEMCALGetter::BeamEnergy(void) const
907{
908 // Return the beam energy of the beam-test event
909// if(fBTE)
910// return fBTE->GetBeamEnergy() ;
911// else
912 return 0 ;
9859bfc0 913}