]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSGetter.h
Set raw data reader
[u/mrichter/AliRoot.git] / PHOS / AliPHOSGetter.h
CommitLineData
4ae78bb1 1#ifndef ALIPHOSGETTER_H
2#define ALIPHOSGETTER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//_________________________________________________________________________
9// A singleton that returns various objects
10// Should be used on the analysis stage to avoid confusing between different
11// branches of reconstruction tree: e.g. reading RecPoints and TS made from
12// another set of RecPoints.
13//
14// The objects are retrived from folders.
15//*-- Author: Yves Schutz (SUBATECH) & Dmitri Peressounko (RRC KI & SUBATECH)
16//
17
18
19// --- ROOT system ---
88cb7938 20#include "TObject.h"
e957fea8 21class TParticle ;
22class TTree ;
4ae78bb1 23
24// --- Standard library ---
25
26// --- AliRoot header files ---
88cb7938 27#include "AliConfig.h"
e957fea8 28#include "AliPHOSLoader.h"
29#include "AliPHOSHit.h"
30#include "AliPHOSDigit.h"
31#include "AliPHOSEmcRecPoint.h"
32#include "AliPHOSCpvRecPoint.h"
33#include "AliPHOSTrackSegment.h"
34#include "AliPHOSRecParticle.h"
88cb7938 35#include "AliPHOSDigitizer.h"
e957fea8 36#include "AliPHOSSDigitizer.h"
37class AliPHOS ;
38class AliPHOSGeometry ;
39class AliPHOSClusterizer ;
40class AliPHOSTrackSegmentMaker ;
41class AliPHOSPID ;
7bb289a7 42class AliPHOSBeamTestEvent ;
95635748 43class AliESD ;
4ae78bb1 44
45class AliPHOSGetter : public TObject {
46
95635748 47public:
cb34a1fa 48 AliPHOSGetter(){ // ctor: this is a singleton, the ctor should never be called but cint needs it as public
f1611b7c 49 Fatal("ctor", "AliPHOSGetter is a singleton default ctor not callable") ;
4ae78bb1 50 }
66f895c8 51protected :
52 AliPHOSGetter(Int_t /*i*/){ // special constructor for onflight
53
54 }
55private:
56 AliPHOSGetter(const char* headerFile,
57 const char* version = AliConfig::GetDefaultEventFolderName(),
58 Option_t * openingOption = "READ") ;
59
60public:
a8c47ab6 61 AliPHOSGetter(const AliPHOSGetter & obj) : TObject(obj) {
4ae78bb1 62 // cpy ctor requested by Coding Convention
f1611b7c 63 Fatal("cpy ctor", "not implemented") ;
4ae78bb1 64 }
65
fbf811ec 66 AliPHOSGetter & operator = (const AliPHOSGetter & ) {
67 // assignement operator requested by coding convention, but not needed
f1611b7c 68 Fatal("operator =", "not implemented") ;
fbf811ec 69 return *this ;
70 }
d071065d 71 virtual ~AliPHOSGetter() ;
548f0134 72
fbf811ec 73 //=========== Instantiators ================
88cb7938 74 static AliPHOSGetter * Instance(const char* headerFile,
e191bb57 75 const char* version = AliConfig::GetDefaultEventFolderName(),
88cb7938 76 Option_t * openingOption = "READ" ) ;
77 static AliPHOSGetter * Instance() ;
95635748 78
702ab87e 79 void Print(const Option_t *)const{}
88cb7938 80 static void Print() ;
548f0134 81
95635748 82 //=========== General information about run ==============
66f895c8 83 virtual Bool_t IsLoaded(TString tree) const { return fLoadingStatus.Contains(tree) ; }
84 virtual void SetLoaded(TString tree) { fLoadingStatus += tree ; }
95635748 85
66f895c8 86 virtual Int_t MaxEvent() const ;
87 virtual Int_t EventNumber() const ;
88 virtual Bool_t VersionExists(TString & opt) const ;
89 virtual UShort_t EventPattern(void) const ;
90 virtual Float_t BeamEnergy(void) const ;
b0bba0af 91
95635748 92 //========== PHOSGeometry and PHOS =============
66f895c8 93 virtual AliPHOS * PHOS() const ;
94 virtual AliPHOSGeometry * PHOSGeometry() const ;
548f0134 95
95635748 96 //========== Methods to read something from file ==========
66f895c8 97 virtual void Event(Int_t event, const char * opt = "HSDRTP") ;
98 virtual void Track(Int_t itrack) ;
99
548f0134 100
95635748 101 //-----------------now getter's data--------------------------------------
3b844b86 102 AliPHOSCalibrationDB * CalibrationDB(){return fcdb; }
103 void ReadCalibrationDB(const char * /*name*/, const char * /*filename*/){ ;}
104 void SetCalibrationDB(AliPHOSCalibrationDB * cdb) {fcdb = cdb ;}
95635748 105
fbf811ec 106 //=========== Primaries ============
66f895c8 107 virtual TClonesArray * Primaries(void) ;
108 virtual TParticle * Primary(Int_t index) const ;
109 virtual Int_t NPrimaries()const { return fNPrimaries; }
110 virtual TParticle * Secondary(const TParticle * p, Int_t index=1) const ;
88cb7938 111
95635748 112 //=========== Hits =================
66f895c8 113 virtual TClonesArray * Hits(void) ;
114 virtual AliPHOSHit * Hit(Int_t index) { return dynamic_cast<AliPHOSHit*>(Hits()->At(index) );}
115 virtual TTree * TreeH() const ;
cb34a1fa 116
fbf811ec 117 //=========== SDigits ==============
66f895c8 118 virtual TClonesArray * SDigits() ;
119 virtual AliPHOSDigit * SDigit(Int_t index) { return static_cast<AliPHOSDigit *>(SDigits()->At(index)) ;}
120 virtual TTree * TreeS() const ;
121 virtual AliPHOSSDigitizer * SDigitizer() ;
122
123 virtual TString GetSDigitsFileName() const { return PhosLoader()->GetSDigitsFileName() ; }
124 virtual Int_t LoadSDigits(Option_t* opt="") const { return PhosLoader()->LoadSDigits(opt) ; }
125 virtual Int_t LoadSDigitizer(Option_t* opt="") const { return PhosLoader()->LoadSDigitizer(opt) ; }
126 virtual Int_t WriteSDigits(Option_t* opt="") const { return PhosLoader()->WriteSDigits(opt) ; }
127 virtual Int_t WriteSDigitizer(Option_t* opt="") const {
88cb7938 128 return PhosLoader()->WriteSDigitizer(opt) ; }
548f0134 129
fbf811ec 130 //========== Digits ================
66f895c8 131 virtual TClonesArray * Digits() ;
132 virtual AliPHOSDigit * Digit(Int_t index) { return static_cast<AliPHOSDigit *>(Digits()->At(index)) ;}
133 virtual TTree * TreeD() const ;
134 virtual AliPHOSDigitizer * Digitizer() ;
135 virtual TString GetDigitsFileName() const { return PhosLoader()->GetDigitsFileName() ; }
136 virtual Int_t LoadDigits(Option_t* opt="") const { return PhosLoader()->LoadDigits(opt) ; }
137 virtual Int_t LoadDigitizer(Option_t* opt="") const {
88cb7938 138 return PhosLoader()->LoadDigitizer(opt) ; }
66f895c8 139 virtual Int_t WriteDigits(Option_t* opt="") const { return PhosLoader()->WriteDigits(opt) ; }
140 virtual Int_t WriteDigitizer(Option_t* opt="") const {
88cb7938 141 return PhosLoader()->WriteDigitizer(opt) ; }
66f895c8 142
143 //Methods to distinguish raw and simulated digits
144 virtual Bool_t IsRawDigits(void) const {return fRawDigits;}
145 virtual void SetRawDigits(Bool_t isRaw = kTRUE){fRawDigits = isRaw;}
cb34a1fa 146
fbf811ec 147 //========== RecPoints =============
66f895c8 148 virtual TObjArray * EmcRecPoints() ;
149 virtual AliPHOSEmcRecPoint * EmcRecPoint(Int_t index) { return static_cast<AliPHOSEmcRecPoint *>(EmcRecPoints()->At(index)) ;}
150 virtual TObjArray * CpvRecPoints() ;
151 virtual AliPHOSCpvRecPoint * CpvRecPoint(Int_t index) { return static_cast<AliPHOSCpvRecPoint *>(CpvRecPoints()->At(index)) ;}
152 virtual TTree * TreeR() const ;
153 virtual AliPHOSClusterizer * Clusterizer() ;
154 virtual TString GetRecPointsFileName() const { return PhosLoader()->GetRecPointsFileName() ; }
155 virtual Int_t LoadRecPoints(Option_t* opt="") const { return PhosLoader()->LoadRecPoints(opt) ; }
156 virtual Int_t LoadClusterizer(Option_t* opt="") const {
88cb7938 157 return PhosLoader()->LoadClusterizer(opt) ; }
66f895c8 158 virtual Int_t WriteRecPoints(Option_t* opt="") const { return PhosLoader()->WriteRecPoints(opt) ; }
159 virtual Int_t WriteClusterizer(Option_t* opt="") const {
88cb7938 160 return PhosLoader()->WriteClusterizer(opt) ; }
95635748 161
88cb7938 162 //========== TrackSegments TClonesArray * TrackSegments(const char * name = 0) {
66f895c8 163 virtual TClonesArray * TrackSegments() ;
164 virtual AliPHOSTrackSegment * TrackSegment(Int_t index) { return static_cast<AliPHOSTrackSegment *>(TrackSegments()->At(index)) ;}
165 virtual TTree * TreeT() const ;
166 virtual AliPHOSTrackSegmentMaker * TrackSegmentMaker() ;
167 virtual TString GetTracksFileName() const { return PhosLoader()->GetTracksFileName() ; }
168 virtual Int_t LoadTracks(Option_t* opt="") const { return PhosLoader()->LoadTracks(opt) ; }
169 virtual Int_t LoadTrackSegementMaker(Option_t* opt="") const {
88cb7938 170 return PhosLoader()->LoadTrackSegmentMaker(opt) ; }
66f895c8 171 virtual Int_t WriteTracks(Option_t* opt="") const { return PhosLoader()->WriteTracks(opt) ; }
172 virtual Int_t WriteTrackSegmentMaker(Option_t* opt="") const {
88cb7938 173 return PhosLoader()->WriteTracker(opt) ; }
95635748 174
fbf811ec 175 //========== RecParticles ===========
66f895c8 176 virtual TClonesArray * RecParticles() ;
177 virtual AliPHOSRecParticle * RecParticle(Int_t index) { return static_cast<AliPHOSRecParticle *>(RecParticles()->At(index)) ;}
178 virtual TTree * TreeP() const ;
179 virtual AliPHOSPID * PID() ;
180 virtual TString GetRecParticlesFileName() const { return PhosLoader()->GetRecParticlesFileName() ; }
181 virtual Int_t LoadRecParticles(Option_t* opt="") const { return PhosLoader()->LoadRecParticles(opt) ; }
182 virtual Int_t LoadPID(Option_t* opt="") const {
88cb7938 183 return PhosLoader()->LoadPID(opt) ; }
66f895c8 184 virtual Int_t WriteRecParticles(Option_t* opt="") const { return PhosLoader()->WriteRecParticles(opt) ; }
185 virtual Int_t WritePID(Option_t* opt="") const {
88cb7938 186 return PhosLoader()->WritePID(opt) ; }
a43c51c3 187
188 //========== Raw ===========
66f895c8 189 virtual Int_t ReadRaw(Int_t event) ;
a43c51c3 190
3b844b86 191 void SetDebug(Int_t level) {fgDebug = level;} // Set debug level
66f895c8 192 virtual void PostClusterizer(AliPHOSClusterizer * clu)
88cb7938 193 const{PhosLoader()->PostClusterizer(clu) ; }
66f895c8 194 virtual void PostPID(AliPHOSPID * pid)
88cb7938 195 const{PhosLoader()->PostPID(pid) ; }
66f895c8 196 virtual void PostTrackSegmentMaker(AliPHOSTrackSegmentMaker * tr)
88cb7938 197 const{PhosLoader()->PostTrackSegmentMaker(tr) ; }
66f895c8 198 virtual void PostSDigitizer (AliPHOSSDigitizer * sdigitizer)
88cb7938 199 const {PhosLoader()->PostSDigitizer(sdigitizer);}
66f895c8 200 virtual void PostDigitizer (AliPHOSDigitizer * digitizer)
bf6adc12 201 const {PhosLoader()->PostDigitizer(digitizer);}
95635748 202
66f895c8 203 virtual TString Version() const { return PhosLoader()->GetTitle() ; }
204 virtual AliPHOSLoader * PhosLoader() const { return fgPhosLoader ; }
205 virtual void Reset() ;
88cb7938 206
66f895c8 207 virtual AliESD * ESD() const { return fESD ; }
95635748 208
cb34a1fa 209private:
210
88cb7938 211 Int_t ReadTreeD(void) ;
fbf811ec 212 Int_t ReadTreeH(void) ;
88cb7938 213 Int_t ReadTreeR(void) ;
214 Int_t ReadTreeT(void) ;
215 Int_t ReadTreeS(void) ;
216 Int_t ReadTreeP(void) ;
677c8a30 217
218 Int_t ReadTreeE(Int_t event) ;
219 Bool_t OpenESDFile() ;
fbf811ec 220 void ReadPrimaries(void) ;
e4d04cf1 221
e4d04cf1 222
88cb7938 223private:
95635748 224
7bb289a7 225 AliPHOSBeamTestEvent * fBTE ; //! Header if BeamTest Event
88cb7938 226 static Int_t fgDebug ; //! Debug level
95635748 227
88cb7938 228 TString fLoadingStatus ; //! tells which trees are loaded
229 Int_t fNPrimaries ; //! # of primaries
230 TClonesArray * fPrimaries ; //! list of lists of primaries
95635748 231 TFile * fESDFile ; //! ESD file
232 TString fESDFileName ; //! ESD File Name
677c8a30 233 AliESD * fESD ; //! ESD object
234 TTree * fESDTree ; //! ESD Tree
66f895c8 235
236 Bool_t fRawDigits ; //!
677c8a30 237
66f895c8 238 AliPHOSCalibrationDB * fcdb ; //!
95635748 239
e957fea8 240 static AliPHOSLoader * fgPhosLoader ; // the loader for the NewIO
88cb7938 241
242 enum EDataTypes{kHits,kSDigits,kDigits,kRecPoints,kTracks,kNDataTypes};
66f895c8 243
244 protected:
245 static AliPHOSGetter * fgObjGetter; // pointer to the unique instance of the singleton
95635748 246
247
4ae78bb1 248 ClassDef(AliPHOSGetter,1) // Algorithm class that provides methods to retrieve objects from a list knowing the index
95635748 249
250 };
4ae78bb1 251
252#endif // AliPHOSGETTER_H