]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALGetter.h
Acceptance and random rejection added.
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGetter.h
1 #ifndef ALIEMCALGETTER_H
2 #define ALIEMCALGETTER_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 ---
20 #include "TClonesArray.h"
21 #include "TFolder.h"  
22 #include "TTree.h"
23 class TString ;
24 class TParticle ;
25 class TTask ;
26
27 // --- Standard library ---
28 #include <stdlib.h>
29 #include <iostream.h>
30
31 // --- AliRoot header files ---
32
33 #include "AliRun.h"
34 #include "AliEMCALv1.h" 
35 #include "AliEMCALHit.h" 
36 #include "AliEMCALDigit.h" 
37 #include "AliEMCALDigitizer.h" 
38 #include "AliEMCALSDigitizer.h"
39 class AliEMCALGeometry ;
40 //class AliEMCALEmcRecPoint ;
41 //class AliEMCALCpvRecPoint ;
42 //class AliEMCALClusterizer ;
43 //class AliEMCALTrackSegment ;
44 //class AliEMCALTrackSegmentMaker ;
45 //class AliEMCALRecParticle ;
46 //class AliEMCALPID ;
47
48 class AliEMCALGetter : public TObject {
49   
50  public:
51   
52   AliEMCALGetter(){ 
53     // ctor: this is a singleton, the ctor should never be called but cint needs it as public
54     cerr << "ERROR: AliPHOGetter is a singleton default ctor not callable" << endl ;
55     abort() ; 
56   } 
57   AliEMCALGetter(const AliEMCALGetter & obj) {
58     // cpy ctor requested by Coding Convention 
59     // but not yet needed
60     abort() ; 
61   } 
62   
63   virtual ~AliEMCALGetter() ; 
64   
65   Bool_t PostHits(void ) const ;  
66   Bool_t PostSDigits(      const char * name,  const char * file = 0) const ;  
67   Bool_t PostDigits(       const char * name ) const ;  
68   //Bool_t PostRecPoints(    const char * name ) const ;  
69   //Bool_t PostTrackSegments(const char * name) const ;  
70   //Bool_t PostRecParticles( const char * name) const ;  
71
72   //Bool_t PostClusterizer( const char * name) const ;  
73   //Bool_t PostClusterizer(AliEMCALClusterizer * clu) const ;  
74  Bool_t PostSDigitizer (AliEMCALSDigitizer * sdigitizer) const ;  
75   Bool_t PostSDigitizer ( const char * name, const char * file ) const ;  
76   Bool_t PostDigitizer (AliEMCALDigitizer * digitizer) const ;  
77   Bool_t PostDigitizer  ( const char * name) const ;  
78   //Bool_t PostTrackSegmentMaker(AliEMCALTrackSegmentMaker * tsm) const ;  
79   //Bool_t PostTrackSegmentMaker(const char * name ) const ;  
80   //Bool_t PostPID  (AliEMCALPID * pid) const ;  
81   //Bool_t PostPID  (const char * name ) const ;  
82   //Bool_t PostQA   (void) const ;
83   
84
85   void   Event(const Int_t event, const char * opt = "HSD") ;    
86   void   Track(Int_t itrack) ;
87
88   //Method to be used when digitizing under AliRunDigitizer, who opens all files etc.
89   void   ReadTreeS(TTree * treeS,Int_t input) ;
90   
91   Int_t  EventNumber()       { return (Int_t) gAlice->GetEvNumber() ; }
92   Int_t  MaxEvent()          { return (Int_t) gAlice->TreeE()->GetEntries() ; }
93   static AliEMCALGetter * GetInstance(const char* headerFile,
94                                      const char* branchTitle = "Default", const Option_t * rw="" ) ; 
95   static AliEMCALGetter *   GetInstance() ; 
96
97   const AliEMCALv1 *         EMCAL()  ;  
98   const  AliEMCALGeometry * EMCALGeometry() ; 
99    // Alarms
100   //TFolder * Alarms() const { return (TFolder*)(ReturnO("Alarms", 0)) ; }
101   //TObjArray *  Alarms(const char * name ) const { return (TObjArray*)(ReturnO("Alarms", name)) ; }
102
103   // QA Tasks
104   //TTask * QATasks(const char * name = 0) const { return (TTask*)(ReturnT("QATasks", name)) ; }
105
106   // Primaries
107   TClonesArray *  Primaries(void) const { return (TClonesArray*)(ReturnO("Primaries")) ; }
108   
109   
110   // Hits
111   const TClonesArray *  Hits(void) { return static_cast<const TClonesArray*>(ReturnO("Hits")) ; }
112   const AliEMCALHit * Hit(Int_t index)  { return static_cast<const AliEMCALHit*>(Hits()->At(index) );}
113   
114   // SDigits
115   TClonesArray *  SDigits(const char * name = 0, const char * file=0) { 
116     return static_cast<TClonesArray*>(ReturnO("SDigits", name, file)) ; 
117   }
118   const AliEMCALDigit *  SDigit(Int_t index) { return static_cast<const AliEMCALDigit*>(SDigits()->At(index)) ;}
119   
120   AliEMCALSDigitizer *  SDigitizer(const char * name =0) const { 
121     return ((AliEMCALSDigitizer*)(ReturnT("SDigitizer", name))) ; 
122   }
123  
124   // Digits
125    TClonesArray *  Digits(const char * name = 0)const  { 
126     return static_cast<TClonesArray*>(ReturnO("Digits", name)) ; 
127   }
128   const AliEMCALDigit *  Digit(Int_t index) { return static_cast<const AliEMCALDigit *>(Digits()->At(index)) ;}
129   AliEMCALDigitizer *  Digitizer(const char * name =0) const { 
130     return (AliEMCALDigitizer*)(ReturnT("Digitizer", name)) ; 
131   }
132
133   // RecPoints
134   //TObjArray * EmcRecPoints(const char * name = 0) const { 
135     //          return (TObjArray*)(ReturnO("EmcRecPoints", name)) ; }
136   //TObjArray * CpvRecPoints(const char * name = 0) const { 
137     //          return (TObjArray*)(ReturnO("CpvRecPoints", name)) ; }
138
139   //AliEMCALClusterizer * Clusterizer (const char * name =0) const 
140     //          { return (AliEMCALClusterizer*)(ReturnT("Clusterizer", name)) ; }
141
142   // TrackSegments
143   //TClonesArray * TrackSegments(const char * name = 0) const 
144    //                { return (TClonesArray*)(ReturnO("TrackSegments", name)) ; }
145   //AliEMCALTrackSegmentMaker * TrackSegmentMaker (const char * name =0) const 
146     //               { return (AliEMCALTrackSegmentMaker*)(ReturnT("TrackSegmentMaker", name)) ; }
147
148   // RecParticles
149   //TClonesArray * RecParticles(const char * name = 0) const  
150     //               { return (TClonesArray*)(ReturnO("RecParticles", name)) ; }
151     //AliEMCALPID * PID(const char * name =0) const 
152       //             { return (AliEMCALPID*)(ReturnT("PID", name)) ; }
153
154   // Primaries
155   const TParticle *           Primary(Int_t index) const ;
156   const Int_t                 NPrimaries()const { return fNPrimaries; }
157
158   void  SetDebug(Int_t level) {fDebug = level;} // Set debug level
159
160   AliEMCALGetter & operator = (const AliEMCALGetter & ) {
161     // assignement operator requested by coding convention, but not needed
162     abort() ;
163     return *this ; 
164   }
165   
166   TFolder * SDigitsFolder() { return dynamic_cast<TFolder*>(fSDigitsFolder->FindObject("EMCAL")) ; }
167
168  private:
169
170   AliEMCALGetter(const char* headerFile, const char* branchTitle ="Default", const Option_t * rw ="") ; 
171   void CreateWhiteBoard() const ; 
172   TObject * ReturnO(TString what, TString name=0, TString file=0) const ; 
173   const TTask * ReturnT(TString what,TString name=0) const ; 
174   void DefineBranchTitles(char* branch, char* branchTitle) ;
175   void ReadTreeD() ;
176   void ReadTreeH() ;
177   //void ReadTreeR() ;
178   void ReadTreeS(Int_t event) ;
179   //void ReadTreeQA() ;
180   void ReadPrimaries() ;
181
182   TObject ** HitsRef(void) const ;
183   TObject ** SDigitsRef(const char * name, const char * file = 0 ) const;
184   TObject ** DigitsRef (const char * name)   const ;
185   //TObject ** EmcRecPointsRef (const char * name) const ;
186   //TObject ** CpvRecPointsRef (const char * name) const ;
187   //TObject ** TrackSegmentsRef(const char * name)   const ;
188   //TObject ** RecParticlesRef (const char * name)   const ;
189   //TObject ** AlarmsRef (void)   const ;
190
191   TObject ** SDigitizerRef (const char * name) const ; 
192   TObject ** DigitizerRef  (const char * name) const ; 
193   //TObject ** ClusterizerRef(const char * name) const ; 
194   //TObject ** TSMakerRef    (const char * name) const ; 
195   //TObject ** PIDRef        (const char * name) const ; 
196
197  private:
198
199   TString        fHeaderFile ;        //! File in which gAlice lives
200   TString        fBranchTitle ;       //!
201   //TString        fTrackSegmentsTitle ;//! 
202   //TString        fRecPointsTitle ;    //!
203   //TString        fRecParticlesTitle ; //!
204   TString        fDigitsTitle ;       //!
205   TString        fSDigitsTitle ;      //!
206
207   Int_t          fDebug ;             // Debug level
208
209   Int_t          fNPrimaries ;        //! # of primaries
210   
211   TObjArray *    fPrimaries ;         //! list of lists of primaries-for the case of mixing
212
213   TFolder *      fModuleFolder ;      //!Folder that contains the modules 
214   TFolder *      fHitsFolder ;        //!Folder that contains the Hits 
215   TFolder *      fSDigitsFolder ;     //!Folder that contains the SDigits 
216   TFolder *      fDigitsFolder ;      //!Folder that contains the Digits 
217   //TFolder *      fRecoFolder ;        //!Folder that contains the reconstructed objects (RecPoints, TrackSegments, RecParticles) 
218   //TFolder *      fQAFolder ;          //!Folder that contains the QA objects  
219   TFolder *      fTasksFolder ;       //!Folder that contains the Tasks (sdigitizer, digitizer, reconstructioner)
220  
221   static AliEMCALGetter * fgObjGetter; // pointer to the unique instance of the singleton 
222
223   ClassDef(AliEMCALGetter,1)  // Algorithm class that provides methods to retrieve objects from a list knowing the index 
224
225 };
226
227 #endif // AliEMCALGETTER_H