596a855f |
1 | #ifndef ALIRECONSTRUCTION_H |
2 | #define ALIRECONSTRUCTION_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 | |
af7ba10c |
8 | /////////////////////////////////////////////////////////////////////////////// |
9 | // // |
10 | // class for running the reconstruction // |
11 | // Clusters and tracks are created for all detectors and all events by // |
12 | // typing: // |
13 | // // |
14 | // AliReconstruction rec; // |
15 | // rec.Run(); // |
16 | // // |
17 | /////////////////////////////////////////////////////////////////////////////// |
18 | |
19 | |
596a855f |
20 | #include <TNamed.h> |
21 | #include <TString.h> |
59697224 |
22 | #include <TObjArray.h> |
596a855f |
23 | |
b8cd5251 |
24 | class AliReconstructor; |
596a855f |
25 | class AliRunLoader; |
b649205a |
26 | class AliRawReader; |
596a855f |
27 | class AliLoader; |
28 | class AliTracker; |
c84a5e9e |
29 | class AliVertexer; |
9178838a |
30 | class AliESDVertex; |
af885e0f |
31 | class AliESDEvent; |
21a3aa09 |
32 | class AliESDfriend; |
33 | class AliVertexerTracks; |
e583c30d |
34 | class TFile; |
46698ae4 |
35 | class TTree; |
444753c6 |
36 | class TList; |
04236e67 |
37 | class AliQADataMakerRec; |
6b6e4472 |
38 | class TMap; |
596a855f |
39 | |
40 | class AliReconstruction: public TNamed { |
41 | public: |
e583c30d |
42 | AliReconstruction(const char* gAliceFilename = "galice.root", |
43 | const char* name = "AliReconstruction", |
596a855f |
44 | const char* title = "reconstruction"); |
45 | AliReconstruction(const AliReconstruction& rec); |
46 | AliReconstruction& operator = (const AliReconstruction& rec); |
47 | virtual ~AliReconstruction(); |
48 | |
49 | void SetGAliceFile(const char* fileName); |
b58710ef |
50 | void SetInput(const char* input); |
21a3aa09 |
51 | |
35042093 |
52 | void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;}; |
b26c3770 |
53 | void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) |
54 | {fFirstEvent = firstEvent; fLastEvent = lastEvent;}; |
973388c2 |
55 | void SetNumberOfEventsPerFile(UInt_t nEvents) |
56 | {fNumberOfEventsPerFile = nEvents;}; |
efd2085e |
57 | void SetOption(const char* detector, const char* option); |
596a855f |
58 | |
59697224 |
59 | void SetRunLocalReconstruction(const char* detectors) { |
60 | fRunLocalReconstruction = detectors;}; |
b8cd5251 |
61 | void SetRunTracking(const char* detectors) { |
62 | fRunTracking = detectors;}; |
596a855f |
63 | void SetFillESD(const char* detectors) {fFillESD = detectors;}; |
b8cd5251 |
64 | void SetRunReconstruction(const char* detectors) { |
65 | SetRunLocalReconstruction(detectors); |
66 | SetRunTracking(detectors); |
67 | SetFillESD(detectors);}; |
48ce48d1 |
68 | void SetUseTrackingErrorsForAlignment(const char* detectors) |
69 | {fUseTrackingErrorsForAlignment = detectors;}; |
6bae477a |
70 | void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;}; |
71 | void SetLoadAlignData(const char* detectors) |
72 | {fLoadAlignData = detectors;}; |
46698ae4 |
73 | void SetESDParLocation(const char *c){fESDPar = c;} |
74 | TNamed *CopyFileToTNamed(TString fPath,TString fName); |
75 | void TNamedToFile(TTree* fTree, TString fName); |
c84a5e9e |
76 | |
1d99986f |
77 | //*** Global reconstruction flag setters |
78 | void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;} |
79 | void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;}; |
a84e2607 |
80 | void SetRunVertexFinderTracks(Bool_t flag=kTRUE) {fRunVertexFinderTracks=flag;}; |
1d99986f |
81 | void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;}; |
d1683eef |
82 | void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;}; |
83 | void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;}; |
1d99986f |
84 | void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;} |
85 | void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;} |
86 | void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;} |
a7807689 |
87 | void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;} |
b647652d |
88 | void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;} |
9178838a |
89 | void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;} |
43c9dae1 |
90 | void SetDiamondProfileTPC(AliESDVertex *dp) {fDiamondProfileTPC=dp;} |
87317a47 |
91 | void SetMeanVertexConstraint(Bool_t flag=kTRUE){fMeanVertexConstraint=flag;} |
1d99986f |
92 | |
7f68891d |
93 | void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;} |
cc9e123e |
94 | void SetUseHLTData(const char* detectors){fUseHLTData=detectors;} |
a023d8d8 |
95 | void SetV0DCAmax(Float_t d) {fV0DCAmax=d;} |
96 | void SetV0CsPmin(Float_t d) {fV0CsPmin=d;} |
7f68891d |
97 | void SetDmax(Float_t d) {fDmax=d;} |
98 | void SetZmax(Float_t z) {fZmax=z;} |
a023d8d8 |
99 | Float_t GetV0DCAmax() const {return fV0DCAmax;} |
100 | Float_t GetV0CsPmin() const {return fV0CsPmin;} |
7f68891d |
101 | Float_t GetDmax() const {return fDmax;} |
102 | Float_t GetZmax() const {return fZmax;} |
103 | |
24f7a148 |
104 | void SetCheckPointLevel(Int_t checkPointLevel) |
105 | {fCheckPointLevel = checkPointLevel;} |
795e4a22 |
106 | |
024cf675 |
107 | // CDB storage activation |
024cf675 |
108 | void SetDefaultStorage(const char* uri); |
c3a7b59a |
109 | void SetSpecificStorage(const char* calibType, const char* uri); |
24f7a148 |
110 | |
6bae477a |
111 | Bool_t MisalignGeometry(const TString& detectors); |
112 | |
113 | void SetAlignObjArray(TObjArray *array) |
114 | {fAlignObjArray = array; |
115 | fLoadAlignFromCDB = kFALSE;} |
6bae477a |
116 | |
b58710ef |
117 | virtual Bool_t InitRun(const char* input); |
21a3aa09 |
118 | virtual Bool_t RunEvent(Int_t iEvent); |
21a3aa09 |
119 | virtual Bool_t FinishRun(); |
120 | virtual Bool_t Run(const char* input = NULL); |
596a855f |
121 | |
a5fa6165 |
122 | // Quality Assurance |
7e963665 |
123 | virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd); |
124 | void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; } |
aa3c69a9 |
125 | void SetRunQA(Bool_t flag=kTRUE) {fRunQA = flag ;} |
126 | void SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;} |
127 | void SetInLoopQA(Bool_t flag=kTRUE) {fInLoopQA = flag;} |
98937d93 |
128 | |
7167ae53 |
129 | // Plane Efficiency Evaluation |
130 | void SetRunPlaneEff(Bool_t flag=kFALSE) {fRunPlaneEff = flag;} |
131 | |
596a855f |
132 | private: |
795e4a22 |
133 | void InitCDB(); |
134 | void SetCDBLock(); |
135 | Bool_t SetRunNumberFromData(); |
59697224 |
136 | Bool_t RunLocalReconstruction(const TString& detectors); |
b26c3770 |
137 | Bool_t RunLocalEventReconstruction(const TString& detectors); |
af885e0f |
138 | Bool_t RunVertexFinder(AliESDEvent*& esd); |
139 | Bool_t RunHLTTracking(AliESDEvent*& esd); |
140 | Bool_t RunMuonTracking(AliESDEvent*& esd); |
141 | Bool_t RunTracking(AliESDEvent*& esd); |
d64bd07d |
142 | Bool_t CleanESD(AliESDEvent *esd); |
af885e0f |
143 | Bool_t FillESD(AliESDEvent*& esd, const TString& detectors); |
144 | Bool_t FillTriggerESD(AliESDEvent*& esd); |
145 | Bool_t FillRawEventHeaderESD(AliESDEvent*& esd); |
596a855f |
146 | |
e583c30d |
147 | Bool_t IsSelected(TString detName, TString& detectors) const; |
f08fc9f5 |
148 | Bool_t InitRunLoader(); |
b8cd5251 |
149 | AliReconstructor* GetReconstructor(Int_t iDet); |
2257f27e |
150 | Bool_t CreateVertexer(); |
b8cd5251 |
151 | Bool_t CreateTrackers(const TString& detectors); |
b26c3770 |
152 | void CleanUp(TFile* file = NULL, TFile* fileOld = NULL); |
e583c30d |
153 | |
af885e0f |
154 | Bool_t ReadESD(AliESDEvent*& esd, const char* recStep) const; |
155 | void WriteESD(AliESDEvent* esd, const char* recStep) const; |
24f7a148 |
156 | |
48c83a1c |
157 | //==========================================// |
af885e0f |
158 | void WriteAlignmentData(AliESDEvent* esd); |
f3a97c86 |
159 | |
af885e0f |
160 | void FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd); |
f3a97c86 |
161 | |
a5fa6165 |
162 | //Quality Assurance |
5b188f2f |
163 | Int_t GetDetIndex(const char * detector); |
04236e67 |
164 | AliQADataMakerRec* GetQADataMaker(Int_t iDet); |
7e963665 |
165 | const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; } |
8661738e |
166 | void CheckQA() ; |
a5fa6165 |
167 | |
7167ae53 |
168 | // Plane Efficiency evaluation |
169 | Bool_t FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation |
170 | Bool_t InitPlaneEff(); // initialize what is needed for Plane Eff. evaluation |
171 | |
14dd053c |
172 | Bool_t InitAliEVE(); |
173 | void RunAliEVE(); |
174 | |
1d99986f |
175 | //*** Global reconstruction flags ******************* |
c84a5e9e |
176 | Bool_t fUniformField; // uniform field tracking flag |
2257f27e |
177 | Bool_t fRunVertexFinder; // run the vertex finder |
a84e2607 |
178 | Bool_t fRunVertexFinderTracks; // run the vertex finder with tracks |
1f46a9ae |
179 | Bool_t fRunHLTTracking; // run the HLT tracking |
d1683eef |
180 | Bool_t fRunMuonTracking; // run the HLT tracking |
181 | Bool_t fRunV0Finder; // run the ESD V0 finder |
182 | Bool_t fRunCascadeFinder; // run the ESD cascade finder |
1d99986f |
183 | Bool_t fStopOnError; // stop or continue on errors |
184 | Bool_t fWriteAlignmentData; // write track space-points flag |
185 | Bool_t fWriteESDfriend; // write ESD friend flag |
a7807689 |
186 | Bool_t fWriteAOD; // write AOD flag |
b647652d |
187 | Bool_t fFillTriggerESD; // fill trigger info into ESD |
1d99986f |
188 | |
7f68891d |
189 | //*** Clean ESD flag and parameters ******************* |
190 | Bool_t fCleanESD; // clean ESD flag |
a023d8d8 |
191 | Float_t fV0DCAmax; // max. allowed DCA between V0 daugthers |
192 | Float_t fV0CsPmin; // min. allowed cosine of V0 pointing angle |
7f68891d |
193 | Float_t fDmax; // max. allowed transverse impact parameter |
194 | Float_t fZmax; // max. allowed longitudinal impact parameter |
195 | |
1d99986f |
196 | TString fRunLocalReconstruction; // run the local reconstruction for these detectors |
b8cd5251 |
197 | TString fRunTracking; // run the tracking for these detectors |
596a855f |
198 | TString fFillESD; // fill ESD for these detectors |
48ce48d1 |
199 | TString fUseTrackingErrorsForAlignment; // for these detectors |
596a855f |
200 | TString fGAliceFileName; // name of the galice file |
b649205a |
201 | TString fInput; // name of input file or directory |
35042093 |
202 | TString fEquipIdMap; // name of file with equipment id map |
b26c3770 |
203 | Int_t fFirstEvent; // index of first event to be reconstr. |
204 | Int_t fLastEvent; // index of last event to be reconstr. |
973388c2 |
205 | UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction |
24f7a148 |
206 | Int_t fCheckPointLevel; // level of ESD check points |
b8cd5251 |
207 | TObjArray fOptions; // options for reconstructor objects |
6bae477a |
208 | Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not |
209 | TString fLoadAlignData; // Load alignment data from CDB for these detectors |
46698ae4 |
210 | TString fESDPar; // String where the esd.par is stored, will be attached to the tree |
cc9e123e |
211 | TString fUseHLTData; // Detectors for which the HLT data is used as input |
596a855f |
212 | |
213 | AliRunLoader* fRunLoader; //! current run loader object |
b649205a |
214 | AliRawReader* fRawReader; //! current raw data reader |
cc9e123e |
215 | AliRawReader* fParentRawReader; //! parent raw data reader in case of AliRawReaderHLT |
596a855f |
216 | |
482070f2 |
217 | static const Int_t fgkNDetectors = 15; //! number of detectors |
c757bafd |
218 | static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors |
b8cd5251 |
219 | AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects |
220 | AliLoader* fLoader[fgkNDetectors]; //! detector loaders |
221 | AliVertexer* fVertexer; //! vertexer for ITS |
222 | AliTracker* fTracker[fgkNDetectors]; //! trackers |
9178838a |
223 | AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks |
43c9dae1 |
224 | AliESDVertex* fDiamondProfileTPC; // (x,y) diamond profile from TPC for AliVertexerTracks |
87317a47 |
225 | Bool_t fMeanVertexConstraint; // use fDiamondProfile in AliVertexerTracks |
59697224 |
226 | |
6b6e4472 |
227 | TMap* fGRPData; // Data from the GRP/GRP/Data CDB folder |
444753c6 |
228 | |
6bae477a |
229 | TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry |
98937d93 |
230 | |
024cf675 |
231 | TString fCDBUri; // Uri of the default CDB storage |
ec92bee0 |
232 | TObjArray fSpecCDBUri; // Array with detector specific CDB storages |
795e4a22 |
233 | Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized |
234 | Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader |
024cf675 |
235 | |
a5fa6165 |
236 | //Quality Assurance |
04236e67 |
237 | AliQADataMakerRec *fQADataMaker[fgkNDetectors+1]; //! array of QA data makers |
238 | Int_t fQACycles[ fgkNDetectors];// # events over which QA data are accumulated |
239 | Bool_t fRunQA ; // Run QA flag |
240 | Bool_t fRunGlobalQA; // Run global QA flag |
241 | Bool_t fInLoopQA; // In-loop QA flag |
e4a998ed |
242 | Bool_t fSameQACycle; //! open a vew QA data file or not |
7167ae53 |
243 | // Plane Efficiency Evaluation |
244 | Bool_t fRunPlaneEff ; // Evaluate Plane Efficiency |
a5fa6165 |
245 | |
21a3aa09 |
246 | // New members needed in order to split Run method |
247 | // into InitRun,RunEvent,FinishRun methods |
248 | AliESDEvent* fesd; //! Pointer to the ESD event object |
249 | AliESDEvent* fhltesd; //! Pointer to the HLT ESD event object |
250 | AliESDfriend* fesdf; //! Pointer to the ESD friend object |
251 | TFile* ffile; //! Pointer to the ESD file |
252 | TTree* ftree; //! Pointer to the ESD tree |
253 | TTree* fhlttree; //! Pointer to the HLT ESD tree |
254 | TFile* ffileOld; //! Pointer to the previous ESD file |
255 | TTree* ftreeOld; //! Pointer to the previous ESD tree |
256 | TTree* fhlttreeOld; //! Pointer to the previous HLT ESD tree |
257 | AliVertexerTracks* ftVertexer; //! Pointer to the vertexer based on ESD tracks |
258 | Bool_t fIsNewRunLoader; // galice.root created from scratch (real raw data case) |
14dd053c |
259 | Bool_t fRunAliEVE; // Run AliEVE or not |
21a3aa09 |
260 | |
6b6e4472 |
261 | ClassDef(AliReconstruction, 23) // class for running the reconstruction |
596a855f |
262 | }; |
263 | |
264 | #endif |