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; |
e583c30d |
32 | class TFile; |
46698ae4 |
33 | class TTree; |
444753c6 |
34 | class TList; |
2e42b4d4 |
35 | class AliQADataMaker; |
596a855f |
36 | |
37 | class AliReconstruction: public TNamed { |
38 | public: |
e583c30d |
39 | AliReconstruction(const char* gAliceFilename = "galice.root", |
024cf675 |
40 | const char* cdbUri = "local://$ALICE_ROOT", |
e583c30d |
41 | const char* name = "AliReconstruction", |
596a855f |
42 | const char* title = "reconstruction"); |
43 | AliReconstruction(const AliReconstruction& rec); |
44 | AliReconstruction& operator = (const AliReconstruction& rec); |
45 | virtual ~AliReconstruction(); |
46 | |
47 | void SetGAliceFile(const char* fileName); |
b649205a |
48 | void SetInput(const char* input) {fInput = input;}; |
35042093 |
49 | void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;}; |
b26c3770 |
50 | void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) |
51 | {fFirstEvent = firstEvent; fLastEvent = lastEvent;}; |
973388c2 |
52 | void SetNumberOfEventsPerFile(UInt_t nEvents) |
53 | {fNumberOfEventsPerFile = nEvents;}; |
efd2085e |
54 | void SetOption(const char* detector, const char* option); |
596a855f |
55 | |
59697224 |
56 | void SetRunLocalReconstruction(const char* detectors) { |
57 | fRunLocalReconstruction = detectors;}; |
b8cd5251 |
58 | void SetRunTracking(const char* detectors) { |
59 | fRunTracking = detectors;}; |
596a855f |
60 | void SetFillESD(const char* detectors) {fFillESD = detectors;}; |
b8cd5251 |
61 | void SetRunReconstruction(const char* detectors) { |
62 | SetRunLocalReconstruction(detectors); |
63 | SetRunTracking(detectors); |
64 | SetFillESD(detectors);}; |
48ce48d1 |
65 | void SetUseTrackingErrorsForAlignment(const char* detectors) |
66 | {fUseTrackingErrorsForAlignment = detectors;}; |
6bae477a |
67 | void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;}; |
68 | void SetLoadAlignData(const char* detectors) |
69 | {fLoadAlignData = detectors;}; |
46698ae4 |
70 | void SetESDParLocation(const char *c){fESDPar = c;} |
71 | TNamed *CopyFileToTNamed(TString fPath,TString fName); |
72 | void TNamedToFile(TTree* fTree, TString fName); |
c84a5e9e |
73 | |
1d99986f |
74 | //*** Global reconstruction flag setters |
75 | void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;} |
76 | void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;}; |
77 | void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;}; |
d1683eef |
78 | void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;}; |
79 | void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;}; |
1d99986f |
80 | void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;} |
81 | void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;} |
82 | void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;} |
a7807689 |
83 | void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;} |
b647652d |
84 | void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;} |
9178838a |
85 | void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;} |
1d99986f |
86 | |
7f68891d |
87 | void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;} |
88 | void SetDmax(Float_t d) {fDmax=d;} |
89 | void SetZmax(Float_t z) {fZmax=z;} |
90 | Float_t GetDmax() const {return fDmax;} |
91 | Float_t GetZmax() const {return fZmax;} |
92 | |
24f7a148 |
93 | void SetCheckPointLevel(Int_t checkPointLevel) |
94 | {fCheckPointLevel = checkPointLevel;} |
024cf675 |
95 | // CDB storage activation |
96 | void InitCDBStorage(); |
97 | void SetDefaultStorage(const char* uri); |
00aa02d5 |
98 | void SetRemoteStorage(const char* uri); |
c3a7b59a |
99 | void SetSpecificStorage(const char* calibType, const char* uri); |
24f7a148 |
100 | |
6bae477a |
101 | Bool_t SetRunNumber(); |
102 | |
6bae477a |
103 | Bool_t MisalignGeometry(const TString& detectors); |
104 | |
105 | void SetAlignObjArray(TObjArray *array) |
106 | {fAlignObjArray = array; |
107 | fLoadAlignFromCDB = kFALSE;} |
6bae477a |
108 | |
4a33489c |
109 | virtual Bool_t Run(const char* input = NULL); |
596a855f |
110 | |
48c83a1c |
111 | // AOD creation |
112 | void ESDFile2AODFile(TFile* esdFile, TFile* aodFile); |
113 | |
a5fa6165 |
114 | // Quality Assurance |
c65c502a |
115 | // virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd); |
116 | // void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; } |
98937d93 |
117 | |
596a855f |
118 | private: |
59697224 |
119 | Bool_t RunLocalReconstruction(const TString& detectors); |
b26c3770 |
120 | Bool_t RunLocalEventReconstruction(const TString& detectors); |
af885e0f |
121 | Bool_t RunVertexFinder(AliESDEvent*& esd); |
122 | Bool_t RunHLTTracking(AliESDEvent*& esd); |
123 | Bool_t RunMuonTracking(AliESDEvent*& esd); |
124 | Bool_t RunTracking(AliESDEvent*& esd); |
d64bd07d |
125 | Bool_t CleanESD(AliESDEvent *esd); |
af885e0f |
126 | Bool_t FillESD(AliESDEvent*& esd, const TString& detectors); |
127 | Bool_t FillTriggerESD(AliESDEvent*& esd); |
128 | Bool_t FillRawEventHeaderESD(AliESDEvent*& esd); |
596a855f |
129 | |
e583c30d |
130 | Bool_t IsSelected(TString detName, TString& detectors) const; |
f08fc9f5 |
131 | Bool_t InitRunLoader(); |
b8cd5251 |
132 | AliReconstructor* GetReconstructor(Int_t iDet); |
2257f27e |
133 | Bool_t CreateVertexer(); |
b8cd5251 |
134 | Bool_t CreateTrackers(const TString& detectors); |
b26c3770 |
135 | void CleanUp(TFile* file = NULL, TFile* fileOld = NULL); |
e583c30d |
136 | |
af885e0f |
137 | Bool_t ReadESD(AliESDEvent*& esd, const char* recStep) const; |
138 | void WriteESD(AliESDEvent* esd, const char* recStep) const; |
24f7a148 |
139 | |
48c83a1c |
140 | //==========================================// |
af885e0f |
141 | void WriteAlignmentData(AliESDEvent* esd); |
f3a97c86 |
142 | |
af885e0f |
143 | void FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd); |
f3a97c86 |
144 | |
a5fa6165 |
145 | //Quality Assurance |
5b188f2f |
146 | Int_t GetDetIndex(const char * detector); |
c65c502a |
147 | // AliQADataMaker* GetQADataMaker(Int_t iDet); |
148 | // const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; } |
8661738e |
149 | void CheckQA() ; |
759c1df1 |
150 | void SetQA(const Bool_t val) { fRunQA = val ; } |
a5fa6165 |
151 | |
1d99986f |
152 | //*** Global reconstruction flags ******************* |
c84a5e9e |
153 | Bool_t fUniformField; // uniform field tracking flag |
2257f27e |
154 | Bool_t fRunVertexFinder; // run the vertex finder |
1f46a9ae |
155 | Bool_t fRunHLTTracking; // run the HLT tracking |
d1683eef |
156 | Bool_t fRunMuonTracking; // run the HLT tracking |
157 | Bool_t fRunV0Finder; // run the ESD V0 finder |
158 | Bool_t fRunCascadeFinder; // run the ESD cascade finder |
1d99986f |
159 | Bool_t fStopOnError; // stop or continue on errors |
160 | Bool_t fWriteAlignmentData; // write track space-points flag |
161 | Bool_t fWriteESDfriend; // write ESD friend flag |
a7807689 |
162 | Bool_t fWriteAOD; // write AOD flag |
b647652d |
163 | Bool_t fFillTriggerESD; // fill trigger info into ESD |
1d99986f |
164 | |
7f68891d |
165 | //*** Clean ESD flag and parameters ******************* |
166 | Bool_t fCleanESD; // clean ESD flag |
167 | Float_t fDmax; // max. allowed transverse impact parameter |
168 | Float_t fZmax; // max. allowed longitudinal impact parameter |
169 | |
1d99986f |
170 | TString fRunLocalReconstruction; // run the local reconstruction for these detectors |
b8cd5251 |
171 | TString fRunTracking; // run the tracking for these detectors |
596a855f |
172 | TString fFillESD; // fill ESD for these detectors |
48ce48d1 |
173 | TString fUseTrackingErrorsForAlignment; // for these detectors |
596a855f |
174 | TString fGAliceFileName; // name of the galice file |
b649205a |
175 | TString fInput; // name of input file or directory |
35042093 |
176 | TString fEquipIdMap; // name of file with equipment id map |
b26c3770 |
177 | Int_t fFirstEvent; // index of first event to be reconstr. |
178 | Int_t fLastEvent; // index of last event to be reconstr. |
973388c2 |
179 | UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction |
24f7a148 |
180 | Int_t fCheckPointLevel; // level of ESD check points |
b8cd5251 |
181 | TObjArray fOptions; // options for reconstructor objects |
6bae477a |
182 | Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not |
183 | TString fLoadAlignData; // Load alignment data from CDB for these detectors |
46698ae4 |
184 | TString fESDPar; // String where the esd.par is stored, will be attached to the tree |
185 | |
596a855f |
186 | |
187 | AliRunLoader* fRunLoader; //! current run loader object |
b649205a |
188 | AliRawReader* fRawReader; //! current raw data reader |
596a855f |
189 | |
482070f2 |
190 | static const Int_t fgkNDetectors = 15; //! number of detectors |
c757bafd |
191 | static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors |
b8cd5251 |
192 | AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects |
193 | AliLoader* fLoader[fgkNDetectors]; //! detector loaders |
194 | AliVertexer* fVertexer; //! vertexer for ITS |
195 | AliTracker* fTracker[fgkNDetectors]; //! trackers |
9178838a |
196 | AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks |
59697224 |
197 | |
444753c6 |
198 | TList* fGRPList; // TList from the GRP/GRP/Data CDB folder |
199 | |
6bae477a |
200 | TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry |
98937d93 |
201 | |
024cf675 |
202 | TString fCDBUri; // Uri of the default CDB storage |
00aa02d5 |
203 | TString fRemoteCDBUri; // Uri of the remote CDB storage |
ec92bee0 |
204 | TObjArray fSpecCDBUri; // Array with detector specific CDB storages |
024cf675 |
205 | |
a5fa6165 |
206 | //Quality Assurance |
c65c502a |
207 | // AliQADataMaker * fQADataMaker[fgkNDetectors]; //! array of QA data maker objects |
208 | // Int_t fQACycles[fgkNDetectors] ; // cycle length (# events) over which QA data are accumulated |
759c1df1 |
209 | Bool_t fRunQA ; // Runs the QA at the end of simulation |
a5fa6165 |
210 | |
759c1df1 |
211 | ClassDef(AliReconstruction, 16) // class for running the reconstruction |
596a855f |
212 | }; |
213 | |
214 | #endif |