596a855f |
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 | |
16 | /* $Id$ */ |
17 | |
18 | /////////////////////////////////////////////////////////////////////////////// |
19 | // // |
20 | // class for running the reconstruction // |
21 | // // |
22 | // Clusters and tracks are created for all detectors and all events by // |
23 | // typing: // |
24 | // // |
25 | // AliReconstruction rec; // |
26 | // rec.Run(); // |
27 | // // |
28 | // The Run method returns kTRUE in case of successful execution. // |
c71de921 |
29 | // // |
30 | // If the input to the reconstruction are not simulated digits but raw data, // |
31 | // this can be specified by an argument of the Run method or by the method // |
32 | // // |
33 | // rec.SetInput("..."); // |
34 | // // |
35 | // The input formats and the corresponding argument are: // |
36 | // - DDL raw data files: directory name, ends with "/" // |
37 | // - raw data root file: root file name, extension ".root" // |
38 | // - raw data DATE file: DATE file name, any other non-empty string // |
39 | // - MC root files : empty string, default // |
40 | // // |
b26c3770 |
41 | // By default all events are reconstructed. The reconstruction can be // |
42 | // limited to a range of events by giving the index of the first and the // |
43 | // last event as an argument to the Run method or by calling // |
44 | // // |
45 | // rec.SetEventRange(..., ...); // |
46 | // // |
47 | // The index -1 (default) can be used for the last event to indicate no // |
48 | // upper limit of the event range. // |
49 | // // |
973388c2 |
50 | // In case of raw-data reconstruction the user can modify the default // |
51 | // number of events per digits/clusters/tracks file. In case the option // |
52 | // is not used the number is set 1. In case the user provides 0, than // |
53 | // the number of events is equal to the number of events inside the // |
54 | // raw-data file (i.e. one digits/clusters/tracks file): // |
55 | // // |
56 | // rec.SetNumberOfEventsPerFile(...); // |
57 | // // |
58 | // // |
596a855f |
59 | // The name of the galice file can be changed from the default // |
e583c30d |
60 | // "galice.root" by passing it as argument to the AliReconstruction // |
61 | // constructor or by // |
596a855f |
62 | // // |
63 | // rec.SetGAliceFile("..."); // |
64 | // // |
59697224 |
65 | // The local reconstruction can be switched on or off for individual // |
66 | // detectors by // |
596a855f |
67 | // // |
59697224 |
68 | // rec.SetRunLocalReconstruction("..."); // |
596a855f |
69 | // // |
70 | // The argument is a (case sensitive) string with the names of the // |
71 | // detectors separated by a space. The special string "ALL" selects all // |
72 | // available detectors. This is the default. // |
73 | // // |
c71de921 |
74 | // The reconstruction of the primary vertex position can be switched off by // |
75 | // // |
76 | // rec.SetRunVertexFinder(kFALSE); // |
77 | // // |
b8cd5251 |
78 | // The tracking and the creation of ESD tracks can be switched on for // |
79 | // selected detectors by // |
596a855f |
80 | // // |
b8cd5251 |
81 | // rec.SetRunTracking("..."); // |
596a855f |
82 | // // |
c84a5e9e |
83 | // Uniform/nonuniform field tracking switches (default: uniform field) // |
84 | // // |
1d99986f |
85 | // rec.SetUniformFieldTracking(); ( rec.SetUniformFieldTracking(kFALSE); ) // |
c84a5e9e |
86 | // // |
596a855f |
87 | // The filling of additional ESD information can be steered by // |
88 | // // |
89 | // rec.SetFillESD("..."); // |
90 | // // |
b8cd5251 |
91 | // Again, for both methods the string specifies the list of detectors. // |
92 | // The default is "ALL". // |
93 | // // |
94 | // The call of the shortcut method // |
95 | // // |
96 | // rec.SetRunReconstruction("..."); // |
97 | // // |
98 | // is equivalent to calling SetRunLocalReconstruction, SetRunTracking and // |
99 | // SetFillESD with the same detector selecting string as argument. // |
596a855f |
100 | // // |
c71de921 |
101 | // The reconstruction requires digits or raw data as input. For the creation // |
102 | // of digits and raw data have a look at the class AliSimulation. // |
596a855f |
103 | // // |
cd0b062e |
104 | // The input data of a detector can be replaced by the corresponding HLT // |
105 | // data by calling (usual detector string) // |
106 | // SetUseHLTData("..."); // |
107 | // // |
24f7a148 |
108 | // For debug purposes the method SetCheckPointLevel can be used. If the // |
109 | // argument is greater than 0, files with ESD events will be written after // |
110 | // selected steps of the reconstruction for each event: // |
111 | // level 1: after tracking and after filling of ESD (final) // |
112 | // level 2: in addition after each tracking step // |
113 | // level 3: in addition after the filling of ESD for each detector // |
114 | // If a final check point file exists for an event, this event will be // |
115 | // skipped in the reconstruction. The tracking and the filling of ESD for // |
116 | // a detector will be skipped as well, if the corresponding check point // |
117 | // file exists. The ESD event will then be loaded from the file instead. // |
118 | // // |
596a855f |
119 | /////////////////////////////////////////////////////////////////////////////// |
120 | |
024a7e64 |
121 | #include <TArrayF.h> |
122 | #include <TFile.h> |
444753c6 |
123 | #include <TList.h> |
024a7e64 |
124 | #include <TSystem.h> |
125 | #include <TROOT.h> |
126 | #include <TPluginManager.h> |
3103d196 |
127 | #include <TGeoManager.h> |
2bdb9d38 |
128 | #include <TLorentzVector.h> |
3dd9f9e3 |
129 | #include <TArrayS.h> |
130 | #include <TArrayD.h> |
3c3709c4 |
131 | #include <TObjArray.h> |
325aa76f |
132 | #include <TMap.h> |
596a855f |
133 | |
134 | #include "AliReconstruction.h" |
87932dab |
135 | #include "AliCodeTimer.h" |
b8cd5251 |
136 | #include "AliReconstructor.h" |
815c2b38 |
137 | #include "AliLog.h" |
596a855f |
138 | #include "AliRunLoader.h" |
139 | #include "AliRun.h" |
b649205a |
140 | #include "AliRawReaderFile.h" |
141 | #include "AliRawReaderDate.h" |
142 | #include "AliRawReaderRoot.h" |
001397cd |
143 | #include "AliRawEventHeaderBase.h" |
af885e0f |
144 | #include "AliESDEvent.h" |
faffd83e |
145 | #include "AliESDMuonTrack.h" |
1d99986f |
146 | #include "AliESDfriend.h" |
2257f27e |
147 | #include "AliESDVertex.h" |
faffd83e |
148 | #include "AliESDcascade.h" |
149 | #include "AliESDkink.h" |
150 | #include "AliESDtrack.h" |
151 | #include "AliESDCaloCluster.h" |
e649177a |
152 | #include "AliESDCaloCells.h" |
32e449be |
153 | #include "AliMultiplicity.h" |
c84a5e9e |
154 | #include "AliTracker.h" |
2257f27e |
155 | #include "AliVertexer.h" |
c5e3e5d1 |
156 | #include "AliVertexerTracks.h" |
5e4ff34d |
157 | #include "AliV0vertexer.h" |
158 | #include "AliCascadeVertexer.h" |
596a855f |
159 | #include "AliHeader.h" |
160 | #include "AliGenEventHeader.h" |
b26c3770 |
161 | #include "AliPID.h" |
596a855f |
162 | #include "AliESDpid.h" |
ff8bb5ae |
163 | #include "AliESDtrack.h" |
3dd9f9e3 |
164 | #include "AliESDPmdTrack.h" |
f3a97c86 |
165 | |
08e1a23e |
166 | #include "AliESDTagCreator.h" |
a1069ee1 |
167 | #include "AliAODTagCreator.h" |
f3a97c86 |
168 | |
25be1e5c |
169 | #include "AliGeomManager.h" |
98937d93 |
170 | #include "AliTrackPointArray.h" |
b0314964 |
171 | #include "AliCDBManager.h" |
795e4a22 |
172 | #include "AliCDBStorage.h" |
6bae477a |
173 | #include "AliCDBEntry.h" |
174 | #include "AliAlignObj.h" |
f3a97c86 |
175 | |
b647652d |
176 | #include "AliCentralTrigger.h" |
b024fd7f |
177 | #include "AliTriggerConfiguration.h" |
178 | #include "AliTriggerClass.h" |
b647652d |
179 | #include "AliCTPRawStream.h" |
180 | |
04236e67 |
181 | #include "AliQADataMakerRec.h" |
aa3c69a9 |
182 | #include "AliGlobalQADataMaker.h" |
c65c502a |
183 | #include "AliQA.h" |
184 | #include "AliQADataMakerSteer.h" |
f29f1726 |
185 | |
7167ae53 |
186 | #include "AliPlaneEff.h" |
187 | |
0f88822a |
188 | #include "AliSysInfo.h" // memory snapshots |
cd0b062e |
189 | #include "AliRawHLTManager.h" |
0f88822a |
190 | |
325aa76f |
191 | #include "AliMagWrapCheb.h" |
6efecea1 |
192 | |
596a855f |
193 | ClassImp(AliReconstruction) |
194 | |
195 | |
c757bafd |
196 | //_____________________________________________________________________________ |
b384f8a4 |
197 | const char* AliReconstruction::fgkDetectorName[AliReconstruction::fgkNDetectors] = {"ITS", "TPC", "TRD", "TOF", "PHOS", "HMPID", "EMCAL", "MUON", "FMD", "ZDC", "PMD", "T0", "VZERO", "ACORDE", "HLT"}; |
c757bafd |
198 | |
596a855f |
199 | //_____________________________________________________________________________ |
795e4a22 |
200 | AliReconstruction::AliReconstruction(const char* gAliceFilename, |
e583c30d |
201 | const char* name, const char* title) : |
202 | TNamed(name, title), |
203 | |
f8b507e0 |
204 | fUniformField(kFALSE), |
61807e09 |
205 | fForcedFieldMap(0x0), |
2257f27e |
206 | fRunVertexFinder(kTRUE), |
a84e2607 |
207 | fRunVertexFinderTracks(kTRUE), |
1f46a9ae |
208 | fRunHLTTracking(kFALSE), |
e66fbafb |
209 | fRunMuonTracking(kFALSE), |
d1683eef |
210 | fRunV0Finder(kTRUE), |
211 | fRunCascadeFinder(kTRUE), |
1d99986f |
212 | fStopOnError(kFALSE), |
213 | fWriteAlignmentData(kFALSE), |
214 | fWriteESDfriend(kFALSE), |
a7807689 |
215 | fWriteAOD(kFALSE), |
b647652d |
216 | fFillTriggerESD(kTRUE), |
1d99986f |
217 | |
7f68891d |
218 | fCleanESD(kTRUE), |
a023d8d8 |
219 | fV0DCAmax(3.), |
220 | fV0CsPmin(0.), |
7f68891d |
221 | fDmax(50.), |
222 | fZmax(50.), |
223 | |
1d99986f |
224 | fRunLocalReconstruction("ALL"), |
b8cd5251 |
225 | fRunTracking("ALL"), |
e583c30d |
226 | fFillESD("ALL"), |
48ce48d1 |
227 | fUseTrackingErrorsForAlignment(""), |
e583c30d |
228 | fGAliceFileName(gAliceFilename), |
b649205a |
229 | fInput(""), |
35042093 |
230 | fEquipIdMap(""), |
b26c3770 |
231 | fFirstEvent(0), |
232 | fLastEvent(-1), |
973388c2 |
233 | fNumberOfEventsPerFile(1), |
24f7a148 |
234 | fCheckPointLevel(0), |
b8cd5251 |
235 | fOptions(), |
6bae477a |
236 | fLoadAlignFromCDB(kTRUE), |
237 | fLoadAlignData("ALL"), |
46698ae4 |
238 | fESDPar(""), |
cd0b062e |
239 | fUseHLTData(), |
e583c30d |
240 | |
241 | fRunLoader(NULL), |
b649205a |
242 | fRawReader(NULL), |
cd0b062e |
243 | fParentRawReader(NULL), |
b8cd5251 |
244 | |
98937d93 |
245 | fVertexer(NULL), |
9178838a |
246 | fDiamondProfile(NULL), |
43c9dae1 |
247 | fDiamondProfileTPC(NULL), |
87317a47 |
248 | fMeanVertexConstraint(kTRUE), |
98937d93 |
249 | |
6b6e4472 |
250 | fGRPData(NULL), |
444753c6 |
251 | |
6bae477a |
252 | fAlignObjArray(NULL), |
795e4a22 |
253 | fCDBUri(), |
759c1df1 |
254 | fSpecCDBUri(), |
795e4a22 |
255 | fInitCDBCalled(kFALSE), |
256 | fSetRunNumberFromDataCalled(kFALSE), |
ce43afbe |
257 | fQADetectors("ALL"), |
258 | fQATasks("ALL"), |
7e963665 |
259 | fRunQA(kTRUE), |
6b150027 |
260 | fRunGlobalQA(kTRUE), |
7167ae53 |
261 | fInLoopQA(kFALSE), |
e4a998ed |
262 | fSameQACycle(kFALSE), |
7167ae53 |
263 | |
21a3aa09 |
264 | fRunPlaneEff(kFALSE), |
265 | |
266 | fesd(NULL), |
267 | fhltesd(NULL), |
268 | fesdf(NULL), |
269 | ffile(NULL), |
270 | ftree(NULL), |
271 | fhlttree(NULL), |
272 | ffileOld(NULL), |
273 | ftreeOld(NULL), |
274 | fhlttreeOld(NULL), |
275 | ftVertexer(NULL), |
14dd053c |
276 | fIsNewRunLoader(kFALSE), |
277 | fRunAliEVE(kFALSE) |
596a855f |
278 | { |
279 | // create reconstruction object with default parameters |
b8cd5251 |
280 | |
281 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
282 | fReconstructor[iDet] = NULL; |
283 | fLoader[iDet] = NULL; |
284 | fTracker[iDet] = NULL; |
7e963665 |
285 | fQADataMaker[iDet] = NULL; |
286 | fQACycles[iDet] = 999999; |
b8cd5251 |
287 | } |
aa3c69a9 |
288 | fQADataMaker[fgkNDetectors]=NULL; //Global QA |
e47c4c2e |
289 | AliPID pid; |
596a855f |
290 | } |
291 | |
292 | //_____________________________________________________________________________ |
293 | AliReconstruction::AliReconstruction(const AliReconstruction& rec) : |
e583c30d |
294 | TNamed(rec), |
295 | |
c84a5e9e |
296 | fUniformField(rec.fUniformField), |
61807e09 |
297 | fForcedFieldMap(0x0), |
2257f27e |
298 | fRunVertexFinder(rec.fRunVertexFinder), |
a84e2607 |
299 | fRunVertexFinderTracks(rec.fRunVertexFinderTracks), |
1f46a9ae |
300 | fRunHLTTracking(rec.fRunHLTTracking), |
e66fbafb |
301 | fRunMuonTracking(rec.fRunMuonTracking), |
d1683eef |
302 | fRunV0Finder(rec.fRunV0Finder), |
303 | fRunCascadeFinder(rec.fRunCascadeFinder), |
1d99986f |
304 | fStopOnError(rec.fStopOnError), |
305 | fWriteAlignmentData(rec.fWriteAlignmentData), |
306 | fWriteESDfriend(rec.fWriteESDfriend), |
a7807689 |
307 | fWriteAOD(rec.fWriteAOD), |
b647652d |
308 | fFillTriggerESD(rec.fFillTriggerESD), |
1d99986f |
309 | |
7f68891d |
310 | fCleanESD(rec.fCleanESD), |
a023d8d8 |
311 | fV0DCAmax(rec.fV0DCAmax), |
5e5c1aa9 |
312 | fV0CsPmin(rec.fV0CsPmin), |
7f68891d |
313 | fDmax(rec.fDmax), |
314 | fZmax(rec.fZmax), |
315 | |
1d99986f |
316 | fRunLocalReconstruction(rec.fRunLocalReconstruction), |
e583c30d |
317 | fRunTracking(rec.fRunTracking), |
318 | fFillESD(rec.fFillESD), |
48ce48d1 |
319 | fUseTrackingErrorsForAlignment(rec.fUseTrackingErrorsForAlignment), |
e583c30d |
320 | fGAliceFileName(rec.fGAliceFileName), |
b649205a |
321 | fInput(rec.fInput), |
35042093 |
322 | fEquipIdMap(rec.fEquipIdMap), |
b26c3770 |
323 | fFirstEvent(rec.fFirstEvent), |
324 | fLastEvent(rec.fLastEvent), |
973388c2 |
325 | fNumberOfEventsPerFile(rec.fNumberOfEventsPerFile), |
24f7a148 |
326 | fCheckPointLevel(0), |
b8cd5251 |
327 | fOptions(), |
6bae477a |
328 | fLoadAlignFromCDB(rec.fLoadAlignFromCDB), |
329 | fLoadAlignData(rec.fLoadAlignData), |
46698ae4 |
330 | fESDPar(rec.fESDPar), |
2972d4eb |
331 | fUseHLTData(rec.fUseHLTData), |
e583c30d |
332 | |
333 | fRunLoader(NULL), |
b649205a |
334 | fRawReader(NULL), |
2972d4eb |
335 | fParentRawReader(NULL), |
b8cd5251 |
336 | |
98937d93 |
337 | fVertexer(NULL), |
9178838a |
338 | fDiamondProfile(NULL), |
43c9dae1 |
339 | fDiamondProfileTPC(NULL), |
87317a47 |
340 | fMeanVertexConstraint(rec.fMeanVertexConstraint), |
98937d93 |
341 | |
6b6e4472 |
342 | fGRPData(NULL), |
444753c6 |
343 | |
6bae477a |
344 | fAlignObjArray(rec.fAlignObjArray), |
ec92bee0 |
345 | fCDBUri(rec.fCDBUri), |
7e963665 |
346 | fSpecCDBUri(), |
795e4a22 |
347 | fInitCDBCalled(rec.fInitCDBCalled), |
348 | fSetRunNumberFromDataCalled(rec.fSetRunNumberFromDataCalled), |
ce43afbe |
349 | fQADetectors(rec.fQADetectors), |
350 | fQATasks(rec.fQATasks), |
aa3c69a9 |
351 | fRunQA(rec.fRunQA), |
352 | fRunGlobalQA(rec.fRunGlobalQA), |
7167ae53 |
353 | fInLoopQA(rec.fInLoopQA), |
e4a998ed |
354 | fSameQACycle(rec.fSameQACycle), |
21a3aa09 |
355 | fRunPlaneEff(rec.fRunPlaneEff), |
356 | |
357 | fesd(NULL), |
358 | fhltesd(NULL), |
359 | fesdf(NULL), |
360 | ffile(NULL), |
361 | ftree(NULL), |
362 | fhlttree(NULL), |
363 | ffileOld(NULL), |
364 | ftreeOld(NULL), |
365 | fhlttreeOld(NULL), |
366 | ftVertexer(NULL), |
14dd053c |
367 | fIsNewRunLoader(rec.fIsNewRunLoader), |
368 | fRunAliEVE(kFALSE) |
596a855f |
369 | { |
370 | // copy constructor |
371 | |
ec92bee0 |
372 | for (Int_t i = 0; i < rec.fOptions.GetEntriesFast(); i++) { |
efd2085e |
373 | if (rec.fOptions[i]) fOptions.Add(rec.fOptions[i]->Clone()); |
374 | } |
b8cd5251 |
375 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
376 | fReconstructor[iDet] = NULL; |
377 | fLoader[iDet] = NULL; |
378 | fTracker[iDet] = NULL; |
7e963665 |
379 | fQADataMaker[iDet] = NULL; |
380 | fQACycles[iDet] = rec.fQACycles[iDet]; |
b8cd5251 |
381 | } |
aa3c69a9 |
382 | fQADataMaker[fgkNDetectors]=NULL; //Global QA |
ec92bee0 |
383 | for (Int_t i = 0; i < rec.fSpecCDBUri.GetEntriesFast(); i++) { |
384 | if (rec.fSpecCDBUri[i]) fSpecCDBUri.Add(rec.fSpecCDBUri[i]->Clone()); |
385 | } |
61807e09 |
386 | |
387 | fForcedFieldMap=new AliMagWrapCheb(*((AliMagWrapCheb*)rec.fForcedFieldMap)); |
596a855f |
388 | } |
389 | |
390 | //_____________________________________________________________________________ |
391 | AliReconstruction& AliReconstruction::operator = (const AliReconstruction& rec) |
392 | { |
393 | // assignment operator |
394 | |
395 | this->~AliReconstruction(); |
396 | new(this) AliReconstruction(rec); |
397 | return *this; |
398 | } |
399 | |
400 | //_____________________________________________________________________________ |
401 | AliReconstruction::~AliReconstruction() |
402 | { |
403 | // clean up |
404 | |
e583c30d |
405 | CleanUp(); |
efd2085e |
406 | fOptions.Delete(); |
ec92bee0 |
407 | fSpecCDBUri.Delete(); |
61807e09 |
408 | delete fForcedFieldMap; |
87932dab |
409 | |
410 | AliCodeTimer::Instance()->Print(); |
596a855f |
411 | } |
412 | |
024cf675 |
413 | //_____________________________________________________________________________ |
795e4a22 |
414 | void AliReconstruction::InitCDB() |
024cf675 |
415 | { |
416 | // activate a default CDB storage |
417 | // First check if we have any CDB storage set, because it is used |
418 | // to retrieve the calibration and alignment constants |
419 | |
795e4a22 |
420 | if (fInitCDBCalled) return; |
421 | fInitCDBCalled = kTRUE; |
422 | |
024cf675 |
423 | AliCDBManager* man = AliCDBManager::Instance(); |
ec92bee0 |
424 | if (man->IsDefaultStorageSet()) |
024cf675 |
425 | { |
426 | AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
ec92bee0 |
427 | AliWarning("Default CDB storage has been already set !"); |
428 | AliWarning(Form("Ignoring the default storage declared in AliReconstruction: %s",fCDBUri.Data())); |
024cf675 |
429 | AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
795e4a22 |
430 | fCDBUri = man->GetDefaultStorage()->GetURI(); |
ec92bee0 |
431 | } |
432 | else { |
795e4a22 |
433 | if (fCDBUri.Length() > 0) |
434 | { |
435 | AliDebug(2,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
436 | AliDebug(2, Form("Default CDB storage is set to: %s", fCDBUri.Data())); |
437 | AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
438 | } else { |
439 | fCDBUri="local://$ALICE_ROOT"; |
440 | AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
441 | AliWarning("Default CDB storage not yet set !!!!"); |
442 | AliWarning(Form("Setting it now to: %s", fCDBUri.Data())); |
443 | AliWarning("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
444 | |
445 | } |
ec92bee0 |
446 | man->SetDefaultStorage(fCDBUri); |
447 | } |
448 | |
449 | // Now activate the detector specific CDB storage locations |
c3a7b59a |
450 | for (Int_t i = 0; i < fSpecCDBUri.GetEntriesFast(); i++) { |
451 | TObject* obj = fSpecCDBUri[i]; |
452 | if (!obj) continue; |
b8ec52f6 |
453 | AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
454 | AliDebug(2, Form("Specific CDB storage for %s is set to: %s",obj->GetName(),obj->GetTitle())); |
455 | AliDebug(2, "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); |
c3a7b59a |
456 | man->SetSpecificStorage(obj->GetName(), obj->GetTitle()); |
ec92bee0 |
457 | } |
795e4a22 |
458 | |
024cf675 |
459 | } |
460 | |
461 | //_____________________________________________________________________________ |
462 | void AliReconstruction::SetDefaultStorage(const char* uri) { |
ec92bee0 |
463 | // Store the desired default CDB storage location |
464 | // Activate it later within the Run() method |
024cf675 |
465 | |
ec92bee0 |
466 | fCDBUri = uri; |
024cf675 |
467 | |
468 | } |
469 | |
00aa02d5 |
470 | //_____________________________________________________________________________ |
c3a7b59a |
471 | void AliReconstruction::SetSpecificStorage(const char* calibType, const char* uri) { |
ec92bee0 |
472 | // Store a detector-specific CDB storage location |
473 | // Activate it later within the Run() method |
024cf675 |
474 | |
c3a7b59a |
475 | AliCDBPath aPath(calibType); |
476 | if(!aPath.IsValid()){ |
477 | // if calibType is not wildcard but it is a valid detector, add "/*" to make it a valid path |
478 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
479 | if(!strcmp(calibType, fgkDetectorName[iDet])) { |
480 | aPath.SetPath(Form("%s/*", calibType)); |
481 | AliInfo(Form("Path for specific storage set to %s", aPath.GetPath().Data())); |
482 | break; |
483 | } |
484 | } |
485 | if(!aPath.IsValid()){ |
486 | AliError(Form("Not a valid path or detector: %s", calibType)); |
487 | return; |
488 | } |
489 | } |
490 | |
53dd3c3d |
491 | // // check that calibType refers to a "valid" detector name |
492 | // Bool_t isDetector = kFALSE; |
493 | // for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
494 | // TString detName = fgkDetectorName[iDet]; |
495 | // if(aPath.GetLevel0() == detName) { |
496 | // isDetector = kTRUE; |
497 | // break; |
498 | // } |
499 | // } |
500 | // |
501 | // if(!isDetector) { |
502 | // AliError(Form("Not a valid detector: %s", aPath.GetLevel0().Data())); |
503 | // return; |
504 | // } |
c3a7b59a |
505 | |
506 | TObject* obj = fSpecCDBUri.FindObject(aPath.GetPath().Data()); |
ec92bee0 |
507 | if (obj) fSpecCDBUri.Remove(obj); |
c3a7b59a |
508 | fSpecCDBUri.Add(new TNamed(aPath.GetPath().Data(), uri)); |
024cf675 |
509 | |
510 | } |
511 | |
6bae477a |
512 | //_____________________________________________________________________________ |
795e4a22 |
513 | Bool_t AliReconstruction::SetRunNumberFromData() |
6bae477a |
514 | { |
515 | // The method is called in Run() in order |
516 | // to set a correct run number. |
517 | // In case of raw data reconstruction the |
518 | // run number is taken from the raw data header |
519 | |
795e4a22 |
520 | if (fSetRunNumberFromDataCalled) return kTRUE; |
521 | fSetRunNumberFromDataCalled = kTRUE; |
522 | |
523 | AliCDBManager* man = AliCDBManager::Instance(); |
524 | |
525 | if(man->GetRun() > 0) { |
21a3aa09 |
526 | AliWarning("Run number is taken from raw-event header! Ignoring settings in AliCDBManager!"); |
795e4a22 |
527 | } |
528 | |
529 | if (!fRunLoader) { |
6bae477a |
530 | AliError("No run loader is found !"); |
531 | return kFALSE; |
532 | } |
533 | // read run number from gAlice |
ec92bee0 |
534 | if(fRunLoader->GetAliRun()) |
f2ee4290 |
535 | AliCDBManager::Instance()->SetRun(fRunLoader->GetHeader()->GetRun()); |
ec92bee0 |
536 | else { |
537 | if(fRawReader) { |
538 | if(fRawReader->NextEvent()) { |
539 | AliCDBManager::Instance()->SetRun(fRawReader->GetRunNumber()); |
540 | fRawReader->RewindEvents(); |
541 | } |
542 | else { |
21a3aa09 |
543 | if(man->GetRun() > 0) { |
544 | AliWarning("No raw events is found ! Using settings in AliCDBManager !"); |
545 | man->Print(); |
546 | return kTRUE; |
547 | } |
548 | else { |
549 | AliWarning("Neither raw events nor settings in AliCDBManager are found !"); |
550 | return kFALSE; |
551 | } |
ec92bee0 |
552 | } |
553 | } |
554 | else { |
555 | AliError("Neither gAlice nor RawReader objects are found !"); |
556 | return kFALSE; |
557 | } |
6bae477a |
558 | } |
795e4a22 |
559 | |
560 | man->Print(); |
561 | |
6bae477a |
562 | return kTRUE; |
563 | } |
564 | |
795e4a22 |
565 | //_____________________________________________________________________________ |
566 | void AliReconstruction::SetCDBLock() { |
567 | // Set CDB lock: from now on it is forbidden to reset the run number |
568 | // or the default storage or to activate any further storage! |
569 | |
570 | AliCDBManager::Instance()->SetLock(1); |
571 | } |
572 | |
6bae477a |
573 | //_____________________________________________________________________________ |
574 | Bool_t AliReconstruction::MisalignGeometry(const TString& detectors) |
575 | { |
576 | // Read the alignment objects from CDB. |
577 | // Each detector is supposed to have the |
578 | // alignment objects in DET/Align/Data CDB path. |
579 | // All the detector objects are then collected, |
580 | // sorted by geometry level (starting from ALIC) and |
581 | // then applied to the TGeo geometry. |
582 | // Finally an overlaps check is performed. |
583 | |
584 | // Load alignment data from CDB and fill fAlignObjArray |
585 | if(fLoadAlignFromCDB){ |
6bae477a |
586 | |
25be1e5c |
587 | TString detStr = detectors; |
588 | TString loadAlObjsListOfDets = ""; |
589 | |
590 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
591 | if (!IsSelected(fgkDetectorName[iDet], detStr)) continue; |
592 | loadAlObjsListOfDets += fgkDetectorName[iDet]; |
593 | loadAlObjsListOfDets += " "; |
594 | } // end loop over detectors |
53dd3c3d |
595 | loadAlObjsListOfDets.Prepend("GRP "); //add alignment objects for non-sensitive modules |
98e303d9 |
596 | AliGeomManager::ApplyAlignObjsFromCDB(loadAlObjsListOfDets.Data()); |
25be1e5c |
597 | }else{ |
598 | // Check if the array with alignment objects was |
599 | // provided by the user. If yes, apply the objects |
600 | // to the present TGeo geometry |
601 | if (fAlignObjArray) { |
602 | if (gGeoManager && gGeoManager->IsClosed()) { |
98e303d9 |
603 | if (AliGeomManager::ApplyAlignObjsToGeom(*fAlignObjArray) == kFALSE) { |
25be1e5c |
604 | AliError("The misalignment of one or more volumes failed!" |
605 | "Compare the list of simulated detectors and the list of detector alignment data!"); |
606 | return kFALSE; |
607 | } |
608 | } |
609 | else { |
610 | AliError("Can't apply the misalignment! gGeoManager doesn't exist or it is still opened!"); |
6bae477a |
611 | return kFALSE; |
612 | } |
613 | } |
6bae477a |
614 | } |
25be1e5c |
615 | |
8e245d15 |
616 | delete fAlignObjArray; fAlignObjArray=0; |
a03b0371 |
617 | |
6bae477a |
618 | return kTRUE; |
619 | } |
596a855f |
620 | |
621 | //_____________________________________________________________________________ |
622 | void AliReconstruction::SetGAliceFile(const char* fileName) |
623 | { |
624 | // set the name of the galice file |
625 | |
626 | fGAliceFileName = fileName; |
627 | } |
628 | |
21a3aa09 |
629 | //_____________________________________________________________________________ |
b58710ef |
630 | void AliReconstruction::SetInput(const char* input) |
21a3aa09 |
631 | { |
b58710ef |
632 | // In case the input string starts with 'mem://', we run in an online mode |
633 | // and AliRawReaderDateOnline object is created. In all other cases a raw-data |
634 | // file is assumed. One can give as an input: |
635 | // mem://: - events taken from DAQ monitoring libs online |
636 | // or |
637 | // mem://<filename> - emulation of the above mode (via DATE monitoring libs) |
638 | fInput = input; |
21a3aa09 |
639 | } |
640 | |
efd2085e |
641 | //_____________________________________________________________________________ |
642 | void AliReconstruction::SetOption(const char* detector, const char* option) |
643 | { |
644 | // set options for the reconstruction of a detector |
645 | |
646 | TObject* obj = fOptions.FindObject(detector); |
647 | if (obj) fOptions.Remove(obj); |
648 | fOptions.Add(new TNamed(detector, option)); |
649 | } |
650 | |
61807e09 |
651 | //_____________________________________________________________________________ |
856024f0 |
652 | Bool_t AliReconstruction::SetFieldMap(Float_t l3Current, Float_t diCurrent, Float_t factor, const char *path) { |
61807e09 |
653 | //------------------------------------------------ |
654 | // The magnetic field map, defined externally... |
655 | // L3 current 30000 A -> 0.5 T |
656 | // L3 current 12000 A -> 0.2 T |
657 | // dipole current 6000 A |
658 | // The polarities must be the same |
659 | //------------------------------------------------ |
660 | const Float_t l3NominalCurrent1=30000.; // (A) |
661 | const Float_t l3NominalCurrent2=12000.; // (A) |
662 | const Float_t diNominalCurrent =6000. ; // (A) |
663 | |
664 | const Float_t tolerance=0.03; // relative current tolerance |
665 | const Float_t zero=77.; // "zero" current (A) |
666 | |
667 | Int_t map=0; |
668 | Bool_t dipoleON=kFALSE; |
669 | |
856024f0 |
670 | TString s=(factor < 0) ? "L3: -" : "L3: +"; |
61807e09 |
671 | |
bb91052d |
672 | l3Current = TMath::Abs(l3Current); |
61807e09 |
673 | if (TMath::Abs(l3Current-l3NominalCurrent1)/l3NominalCurrent1 < tolerance) { |
674 | map=AliMagWrapCheb::k5kG; |
675 | s+="0.5 T; "; |
676 | } else |
677 | if (TMath::Abs(l3Current-l3NominalCurrent2)/l3NominalCurrent2 < tolerance) { |
678 | map=AliMagWrapCheb::k2kG; |
679 | s+="0.2 T; "; |
680 | } else |
bb91052d |
681 | if (l3Current < zero) { |
61807e09 |
682 | map=AliMagWrapCheb::k2kG; |
683 | s+="0.0 T; "; |
684 | factor=0.; // in fact, this is a global factor... |
4d338614 |
685 | fUniformField=kTRUE; // track with the uniform (zero) B field |
61807e09 |
686 | } else { |
bb91052d |
687 | AliError(Form("Wrong L3 current (%f A)!",l3Current)); |
61807e09 |
688 | return kFALSE; |
689 | } |
690 | |
bb91052d |
691 | diCurrent = TMath::Abs(diCurrent); |
61807e09 |
692 | if (TMath::Abs(diCurrent-diNominalCurrent)/diNominalCurrent < tolerance) { |
693 | // 3% current tolerance... |
694 | dipoleON=kTRUE; |
695 | s+="Dipole ON"; |
696 | } else |
bb91052d |
697 | if (diCurrent < zero) { // some small current.. |
61807e09 |
698 | dipoleON=kFALSE; |
699 | s+="Dipole OFF"; |
700 | } else { |
bb91052d |
701 | AliError(Form("Wrong dipole current (%f A)!",diCurrent)); |
61807e09 |
702 | return kFALSE; |
703 | } |
704 | |
705 | delete fForcedFieldMap; |
706 | fForcedFieldMap= |
707 | new AliMagWrapCheb("B field map ",s,2,factor,10.,map,dipoleON,path); |
708 | |
709 | fForcedFieldMap->Print(); |
710 | |
711 | AliTracker::SetFieldMap(fForcedFieldMap,fUniformField); |
712 | |
713 | return kTRUE; |
714 | } |
715 | |
716 | |
717 | Bool_t AliReconstruction::InitGRP() { |
718 | //------------------------------------ |
719 | // Initialization of the GRP entry |
720 | //------------------------------------ |
721 | AliCDBEntry* entry = AliCDBManager::Instance()->Get("GRP/GRP/Data"); |
722 | |
723 | if (entry) fGRPData = dynamic_cast<TMap*>(entry->GetObject()); |
724 | |
725 | if (!fGRPData) { |
726 | AliError("No GRP entry found in OCDB!"); |
727 | return kFALSE; |
728 | } |
729 | |
730 | |
731 | //*** Dealing with the magnetic field map |
732 | if (AliTracker::GetFieldMap()) { |
733 | AliInfo("Running with the externally set B field !"); |
734 | } else { |
735 | // Construct the field map out of the information retrieved from GRP. |
736 | |
856024f0 |
737 | Bool_t ok = kTRUE; |
738 | |
61807e09 |
739 | // L3 |
740 | TObjString *l3Current= |
741 | dynamic_cast<TObjString*>(fGRPData->GetValue("fL3Current")); |
742 | if (!l3Current) { |
743 | AliError("GRP/GRP/Data entry: missing value for the L3 current !"); |
856024f0 |
744 | ok = kFALSE; |
61807e09 |
745 | } |
746 | TObjString *l3Polarity= |
747 | dynamic_cast<TObjString*>(fGRPData->GetValue("fL3Polarity")); |
748 | if (!l3Polarity) { |
749 | AliError("GRP/GRP/Data entry: missing value for the L3 polarity !"); |
856024f0 |
750 | ok = kFALSE; |
61807e09 |
751 | } |
752 | |
753 | // Dipole |
754 | TObjString *diCurrent= |
755 | dynamic_cast<TObjString*>(fGRPData->GetValue("fDipoleCurrent")); |
756 | if (!diCurrent) { |
757 | AliError("GRP/GRP/Data entry: missing value for the dipole current !"); |
856024f0 |
758 | ok = kFALSE; |
61807e09 |
759 | } |
760 | TObjString *diPolarity= |
761 | dynamic_cast<TObjString*>(fGRPData->GetValue("fDipolePolarity")); |
762 | if (!diPolarity) { |
763 | AliError("GRP/GRP/Data entry: missing value for the dipole polarity !"); |
856024f0 |
764 | ok = kFALSE; |
61807e09 |
765 | } |
766 | |
856024f0 |
767 | if (ok) { |
768 | Float_t l3Cur=TMath::Abs(atof(l3Current->GetName())); |
769 | Float_t diCur=TMath::Abs(atof(diCurrent->GetName())); |
770 | Float_t l3Pol=atof(l3Polarity->GetName()); |
771 | Float_t factor=1.; |
772 | if (l3Pol != 0.) factor=-1.; |
773 | |
61807e09 |
774 | |
856024f0 |
775 | if (!SetFieldMap(l3Cur, diCur, factor)) { |
776 | AliFatal("Failed to creat a B field map ! Exiting..."); |
777 | } |
778 | AliInfo("Running with the B field constructed out of GRP !"); |
779 | } |
780 | else { |
781 | AliFatal("B field is neither set nor constructed from GRP ! Exitig..."); |
61807e09 |
782 | } |
783 | |
61807e09 |
784 | } |
785 | |
786 | |
787 | //*** Get the diamond profile from OCDB |
788 | entry = AliCDBManager::Instance()->Get("GRP/Calib/MeanVertex"); |
789 | if (entry) { |
790 | fDiamondProfile = dynamic_cast<AliESDVertex*> (entry->GetObject()); |
791 | } else { |
792 | AliError("No diamond profile found in OCDB!"); |
793 | } |
794 | |
795 | entry = AliCDBManager::Instance()->Get("GRP/Calib/MeanVertexTPC"); |
796 | if (entry) { |
797 | fDiamondProfileTPC = dynamic_cast<AliESDVertex*> (entry->GetObject()); |
798 | } else { |
799 | AliError("No diamond profile found in OCDB!"); |
800 | } |
801 | |
802 | return kTRUE; |
803 | } |
804 | |
596a855f |
805 | //_____________________________________________________________________________ |
21a3aa09 |
806 | Bool_t AliReconstruction::Run(const char* input) |
596a855f |
807 | { |
21a3aa09 |
808 | // Run Run Run |
809 | AliCodeTimerAuto(""); |
596a855f |
810 | |
21a3aa09 |
811 | if (!InitRun(input)) return kFALSE; |
21a3aa09 |
812 | //******* The loop over events |
813 | Int_t iEvent = 0; |
814 | while ((iEvent < fRunLoader->GetNumberOfEvents()) || |
815 | (fRawReader && fRawReader->NextEvent())) { |
816 | if (!RunEvent(iEvent)) return kFALSE; |
817 | iEvent++; |
818 | } |
819 | |
820 | if (!FinishRun()) return kFALSE; |
821 | |
822 | return kTRUE; |
823 | } |
824 | |
825 | //_____________________________________________________________________________ |
b58710ef |
826 | Bool_t AliReconstruction::InitRun(const char* input) |
21a3aa09 |
827 | { |
828 | // Initialize all the stuff before |
829 | // going into the event loop |
830 | // If the second argument is given, the first one is ignored and |
831 | // the reconstruction works in an online mode |
832 | AliCodeTimerAuto(""); |
833 | |
b58710ef |
834 | // Overwrite the previous setting |
21a3aa09 |
835 | if (input) fInput = input; |
836 | |
837 | // set the input in case of raw data |
b58710ef |
838 | fRawReader = AliRawReader::Create(fInput.Data()); |
839 | if (!fRawReader) |
21a3aa09 |
840 | AliInfo("Reconstruction will run over digits"); |
e0027792 |
841 | |
35042093 |
842 | if (!fEquipIdMap.IsNull() && fRawReader) |
843 | fRawReader->LoadEquipmentIdsMap(fEquipIdMap); |
844 | |
cd0b062e |
845 | if (!fUseHLTData.IsNull()) { |
846 | // create the RawReaderHLT which performs redirection of HLT input data for |
847 | // the specified detectors |
848 | AliRawReader* pRawReader=AliRawHLTManager::CreateRawReaderHLT(fRawReader, fUseHLTData.Data()); |
849 | if (pRawReader) { |
850 | fParentRawReader=fRawReader; |
851 | fRawReader=pRawReader; |
852 | } else { |
853 | AliError(Form("can not create Raw Reader for HLT input %s", fUseHLTData.Data())); |
854 | } |
855 | } |
856 | |
0f88822a |
857 | AliSysInfo::AddStamp("Start"); |
f08fc9f5 |
858 | // get the run loader |
859 | if (!InitRunLoader()) return kFALSE; |
0f88822a |
860 | AliSysInfo::AddStamp("LoadLoader"); |
596a855f |
861 | |
ec92bee0 |
862 | // Initialize the CDB storage |
795e4a22 |
863 | InitCDB(); |
864 | |
865 | AliSysInfo::AddStamp("LoadCDB"); |
ec92bee0 |
866 | |
6bae477a |
867 | // Set run number in CDBManager (if it is not already set by the user) |
795e4a22 |
868 | if (!SetRunNumberFromData()) if (fStopOnError) return kFALSE; |
869 | |
870 | // Set CDB lock: from now on it is forbidden to reset the run number |
871 | // or the default storage or to activate any further storage! |
872 | SetCDBLock(); |
873 | |
6bae477a |
874 | // Import ideal TGeo geometry and apply misalignment |
875 | if (!gGeoManager) { |
876 | TString geom(gSystem->DirName(fGAliceFileName)); |
877 | geom += "/geometry.root"; |
98e303d9 |
878 | AliGeomManager::LoadGeometry(geom.Data()); |
ff5970a3 |
879 | |
880 | TString detsToCheck=fRunLocalReconstruction; |
881 | if(!AliGeomManager::CheckSymNamesLUT(detsToCheck.Data())) |
0bf7aade |
882 | AliFatalClass("Current loaded geometry differs in the definition of symbolic names!"); |
6bae477a |
883 | if (!gGeoManager) if (fStopOnError) return kFALSE; |
884 | } |
8e245d15 |
885 | |
6bae477a |
886 | if (!MisalignGeometry(fLoadAlignData)) if (fStopOnError) return kFALSE; |
0f88822a |
887 | AliSysInfo::AddStamp("LoadGeom"); |
6bae477a |
888 | |
325aa76f |
889 | |
61807e09 |
890 | if (!InitGRP()) return kFALSE; |
325aa76f |
891 | |
325aa76f |
892 | |
893 | ftVertexer = new AliVertexerTracks(AliTracker::GetBz()); |
894 | if(fDiamondProfile && fMeanVertexConstraint) ftVertexer->SetVtxStart(fDiamondProfile); |
2257f27e |
895 | |
896 | // get vertexer |
897 | if (fRunVertexFinder && !CreateVertexer()) { |
898 | if (fStopOnError) { |
899 | CleanUp(); |
900 | return kFALSE; |
901 | } |
902 | } |
0f88822a |
903 | AliSysInfo::AddStamp("Vertexer"); |
596a855f |
904 | |
f08fc9f5 |
905 | // get trackers |
b8cd5251 |
906 | if (!fRunTracking.IsNull() && !CreateTrackers(fRunTracking)) { |
24f7a148 |
907 | if (fStopOnError) { |
908 | CleanUp(); |
909 | return kFALSE; |
910 | } |
596a855f |
911 | } |
0f88822a |
912 | AliSysInfo::AddStamp("LoadTrackers"); |
24f7a148 |
913 | |
b26c3770 |
914 | // get the possibly already existing ESD file and tree |
21a3aa09 |
915 | fesd = new AliESDEvent(); fhltesd = new AliESDEvent(); |
b26c3770 |
916 | if (!gSystem->AccessPathName("AliESDs.root")){ |
917 | gSystem->CopyFile("AliESDs.root", "AliESDs.old.root", kTRUE); |
21a3aa09 |
918 | ffileOld = TFile::Open("AliESDs.old.root"); |
919 | if (ffileOld && ffileOld->IsOpen()) { |
920 | ftreeOld = (TTree*) ffileOld->Get("esdTree"); |
921 | if (ftreeOld)fesd->ReadFromTree(ftreeOld); |
922 | fhlttreeOld = (TTree*) ffileOld->Get("HLTesdTree"); |
923 | if (fhlttreeOld) fhltesd->ReadFromTree(fhlttreeOld); |
b26c3770 |
924 | } |
925 | } |
926 | |
36711aa4 |
927 | // create the ESD output file and tree |
21a3aa09 |
928 | ffile = TFile::Open("AliESDs.root", "RECREATE"); |
929 | ffile->SetCompressionLevel(2); |
930 | if (!ffile->IsOpen()) { |
815c2b38 |
931 | AliError("opening AliESDs.root failed"); |
21a3aa09 |
932 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
596a855f |
933 | } |
46698ae4 |
934 | |
21a3aa09 |
935 | ftree = new TTree("esdTree", "Tree with ESD objects"); |
936 | fesd = new AliESDEvent(); |
937 | fesd->CreateStdContent(); |
938 | fesd->WriteToTree(ftree); |
46698ae4 |
939 | |
21a3aa09 |
940 | fhlttree = new TTree("HLTesdTree", "Tree with HLT ESD objects"); |
941 | fhltesd = new AliESDEvent(); |
942 | fhltesd->CreateStdContent(); |
943 | fhltesd->WriteToTree(fhlttree); |
46698ae4 |
944 | |
5728d3d5 |
945 | |
1d99986f |
946 | if (fWriteESDfriend) { |
21a3aa09 |
947 | fesdf = new AliESDfriend(); |
948 | TBranch *br=ftree->Branch("ESDfriend.","AliESDfriend", &fesdf); |
46698ae4 |
949 | br->SetFile("AliESDfriends.root"); |
21a3aa09 |
950 | fesd->AddObject(fesdf); |
1d99986f |
951 | } |
5728d3d5 |
952 | |
444753c6 |
953 | |
c5e3e5d1 |
954 | |
b649205a |
955 | if (fRawReader) fRawReader->RewindEvents(); |
a5fa6165 |
956 | |
95cee32f |
957 | ProcInfo_t ProcInfo; |
958 | gSystem->GetProcInfo(&ProcInfo); |
959 | AliInfo(Form("Current memory usage %d %d", ProcInfo.fMemResident, ProcInfo.fMemVirtual)); |
8661738e |
960 | |
325aa76f |
961 | //QA |
ce43afbe |
962 | if (fRunQA && fRawReader && fQATasks.Contains(Form("%d", AliQA::kRAWS))) { |
963 | AliQADataMakerSteer qas ; |
106918d8 |
964 | qas.Run(fQADetectors, fRawReader) ; |
ce43afbe |
965 | fSameQACycle = kTRUE ; |
325aa76f |
966 | } |
aa3c69a9 |
967 | //Initialize the QA and start of cycle for out-of-cycle QA |
f6806ad3 |
968 | if (fRunQA) { |
106918d8 |
969 | TString detStr(fQADetectors) ; |
ce43afbe |
970 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
971 | if (!IsSelected(fgkDetectorName[iDet], detStr)) |
972 | continue; |
973 | AliQADataMakerRec *qadm = GetQADataMaker(iDet); |
974 | if (!qadm) |
975 | continue; |
976 | AliInfo(Form("Initializing the QA data maker for %s", |
977 | fgkDetectorName[iDet])); |
978 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) |
979 | qadm->Init(AliQA::kRECPOINTS, AliCDBManager::Instance()->GetRun()); |
980 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) |
981 | qadm->Init(AliQA::kESDS, AliCDBManager::Instance()->GetRun()); |
982 | if (!fInLoopQA) { |
983 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) { |
984 | qadm->StartOfCycle(AliQA::kRECPOINTS, fSameQACycle); |
985 | fSameQACycle = kTRUE; |
986 | } |
987 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) { |
988 | qadm->StartOfCycle(AliQA::kESDS, fSameQACycle); |
989 | fSameQACycle = kTRUE; |
990 | } |
991 | } |
992 | } |
e4a998ed |
993 | if (fRunGlobalQA) { |
994 | AliQADataMakerRec *qadm = GetQADataMaker(AliQA::kGLOBAL); |
995 | AliInfo(Form("Initializing the global QA data maker")); |
ce43afbe |
996 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) { |
997 | TObjArray *arr= |
998 | qadm->Init(AliQA::kRECPOINTS, AliCDBManager::Instance()->GetRun()); |
999 | AliTracker::SetResidualsArray(arr); |
1000 | } |
1001 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) { |
1002 | qadm->Init(AliQA::kESDS, AliCDBManager::Instance()->GetRun()); |
1003 | } |
e4a998ed |
1004 | if (!fInLoopQA) { |
ce43afbe |
1005 | fSameQACycle = kFALSE; |
1006 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) { |
1007 | qadm->StartOfCycle(AliQA::kRECPOINTS, fSameQACycle); |
1008 | fSameQACycle = kTRUE; |
1009 | } |
1010 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) { |
1011 | qadm->StartOfCycle(AliQA::kESDS, fSameQACycle); |
1012 | fSameQACycle = kTRUE; |
1013 | } |
e4a998ed |
1014 | } |
1015 | } |
aa3c69a9 |
1016 | } |
1017 | |
7167ae53 |
1018 | //Initialize the Plane Efficiency framework |
1019 | if (fRunPlaneEff && !InitPlaneEff()) { |
21a3aa09 |
1020 | if(fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
7167ae53 |
1021 | } |
aa3c69a9 |
1022 | |
14dd053c |
1023 | if (strcmp(gProgName,"alieve") == 0) |
1024 | fRunAliEVE = InitAliEVE(); |
1025 | |
21a3aa09 |
1026 | return kTRUE; |
1027 | } |
1028 | |
1029 | //_____________________________________________________________________________ |
1030 | Bool_t AliReconstruction::RunEvent(Int_t iEvent) |
1031 | { |
1032 | // run the reconstruction over a single event |
1033 | // The event loop is steered in Run method |
1034 | |
1035 | AliCodeTimerAuto(""); |
1036 | |
1037 | if (iEvent >= fRunLoader->GetNumberOfEvents()) { |
1038 | fRunLoader->SetEventNumber(iEvent); |
1039 | fRunLoader->GetHeader()->Reset(fRawReader->GetRunNumber(), |
1040 | iEvent, iEvent); |
1041 | //?? fRunLoader->MakeTree("H"); |
1042 | fRunLoader->TreeE()->Fill(); |
1043 | } |
1044 | |
1045 | if ((iEvent < fFirstEvent) || ((fLastEvent >= 0) && (iEvent > fLastEvent))) { |
1046 | // copy old ESD to the new one |
1047 | if (ftreeOld) { |
1048 | fesd->ReadFromTree(ftreeOld); |
1049 | ftreeOld->GetEntry(iEvent); |
1050 | ftree->Fill(); |
b26c3770 |
1051 | } |
21a3aa09 |
1052 | if (fhlttreeOld) { |
f6806ad3 |
1053 | fhltesd->ReadFromTree(fhlttreeOld); |
21a3aa09 |
1054 | fhlttreeOld->GetEntry(iEvent); |
1055 | fhlttree->Fill(); |
1056 | } |
1057 | return kTRUE; |
1058 | } |
1059 | |
1060 | AliInfo(Form("processing event %d", iEvent)); |
aa3c69a9 |
1061 | |
1062 | //Start of cycle for the in-loop QA |
3b378a42 |
1063 | if (fInLoopQA) { |
1064 | if (fRunQA) { |
ce43afbe |
1065 | fSameQACycle = kFALSE ; |
1066 | TString detStr(fQADetectors); |
3b378a42 |
1067 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
e4a998ed |
1068 | if (!IsSelected(fgkDetectorName[iDet], detStr)) |
1069 | continue; |
3b378a42 |
1070 | AliQADataMakerRec *qadm = GetQADataMaker(iDet); |
e4a998ed |
1071 | if (!qadm) |
1072 | continue; |
ce43afbe |
1073 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) { |
1074 | qadm->StartOfCycle(AliQA::kRECPOINTS, fSameQACycle); |
1075 | fSameQACycle = kTRUE; |
1076 | } |
1077 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) { |
1078 | qadm->StartOfCycle(AliQA::kESDS, fSameQACycle) ; |
1079 | fSameQACycle = kTRUE; |
1080 | } |
3b378a42 |
1081 | } |
e4a998ed |
1082 | if (fRunGlobalQA) { |
ce43afbe |
1083 | fSameQACycle = kFALSE; |
e4a998ed |
1084 | AliQADataMakerRec *qadm = GetQADataMaker(AliQA::kGLOBAL); |
ce43afbe |
1085 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) { |
1086 | qadm->StartOfCycle(AliQA::kRECPOINTS, fSameQACycle); |
1087 | fSameQACycle = kTRUE; |
1088 | } |
1089 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) { |
1090 | qadm->StartOfCycle(AliQA::kESDS, fSameQACycle); |
1091 | fSameQACycle = kTRUE; |
1092 | } |
e4a998ed |
1093 | } |
1094 | } |
aa3c69a9 |
1095 | } |
1096 | |
596a855f |
1097 | fRunLoader->GetEvent(iEvent); |
24f7a148 |
1098 | |
bb0901a4 |
1099 | char aFileName[256]; |
1100 | sprintf(aFileName, "ESD_%d.%d_final.root", |
f08fc9f5 |
1101 | fRunLoader->GetHeader()->GetRun(), |
1102 | fRunLoader->GetHeader()->GetEventNrInRun()); |
21a3aa09 |
1103 | if (!gSystem->AccessPathName(aFileName)) return kTRUE; |
24f7a148 |
1104 | |
d506c543 |
1105 | // local single event reconstruction |
b26c3770 |
1106 | if (!fRunLocalReconstruction.IsNull()) { |
d506c543 |
1107 | TString detectors=fRunLocalReconstruction; |
a441bf51 |
1108 | // run HLT event reconstruction first |
d506c543 |
1109 | // ;-( IsSelected changes the string |
1110 | if (IsSelected("HLT", detectors) && |
1111 | !RunLocalEventReconstruction("HLT")) { |
a441bf51 |
1112 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
1113 | } |
1114 | detectors=fRunLocalReconstruction; |
1115 | detectors.ReplaceAll("HLT", ""); |
1116 | if (!RunLocalEventReconstruction(detectors)) { |
21a3aa09 |
1117 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
b26c3770 |
1118 | } |
1119 | } |
1120 | |
21a3aa09 |
1121 | fesd->SetRunNumber(fRunLoader->GetHeader()->GetRun()); |
1122 | fhltesd->SetRunNumber(fRunLoader->GetHeader()->GetRun()); |
1123 | fesd->SetEventNumberInFile(fRunLoader->GetHeader()->GetEventNrInRun()); |
1124 | fhltesd->SetEventNumberInFile(fRunLoader->GetHeader()->GetEventNrInRun()); |
46698ae4 |
1125 | |
d6ee376f |
1126 | // Set magnetic field from the tracker |
21a3aa09 |
1127 | fesd->SetMagneticField(AliTracker::GetBz()); |
1128 | fhltesd->SetMagneticField(AliTracker::GetBz()); |
596a855f |
1129 | |
46698ae4 |
1130 | |
1131 | |
2e3550da |
1132 | // Fill raw-data error log into the ESD |
21a3aa09 |
1133 | if (fRawReader) FillRawDataErrorLog(iEvent,fesd); |
2e3550da |
1134 | |
2257f27e |
1135 | // vertex finder |
1136 | if (fRunVertexFinder) { |
21a3aa09 |
1137 | if (!ReadESD(fesd, "vertex")) { |
1138 | if (!RunVertexFinder(fesd)) { |
1139 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
2257f27e |
1140 | } |
21a3aa09 |
1141 | if (fCheckPointLevel > 0) WriteESD(fesd, "vertex"); |
2257f27e |
1142 | } |
1143 | } |
1144 | |
e66fbafb |
1145 | // Muon tracking |
b8cd5251 |
1146 | if (!fRunTracking.IsNull()) { |
e66fbafb |
1147 | if (fRunMuonTracking) { |
21a3aa09 |
1148 | if (!RunMuonTracking(fesd)) { |
1149 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
24f7a148 |
1150 | } |
596a855f |
1151 | } |
1152 | } |
1153 | |
e66fbafb |
1154 | // barrel tracking |
1155 | if (!fRunTracking.IsNull()) { |
21a3aa09 |
1156 | if (!ReadESD(fesd, "tracking")) { |
1157 | if (!RunTracking(fesd)) { |
1158 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
e66fbafb |
1159 | } |
21a3aa09 |
1160 | if (fCheckPointLevel > 0) WriteESD(fesd, "tracking"); |
e66fbafb |
1161 | } |
1162 | } |
21c573b7 |
1163 | |
596a855f |
1164 | // fill ESD |
1165 | if (!fFillESD.IsNull()) { |
d506c543 |
1166 | TString detectors=fFillESD; |
f6806ad3 |
1167 | // run HLT first and on hltesd |
d506c543 |
1168 | // ;-( IsSelected changes the string |
1169 | if (IsSelected("HLT", detectors) && |
1170 | !FillESD(fhltesd, "HLT")) { |
f6806ad3 |
1171 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
1172 | } |
1173 | detectors=fFillESD; |
d5105682 |
1174 | // Temporary fix to avoid problems with HLT that overwrites the offline ESDs |
1175 | if (detectors.Contains("ALL")) { |
1176 | detectors=""; |
1177 | for (Int_t idet=0; idet<fgkNDetectors; ++idet){ |
1178 | detectors += fgkDetectorName[idet]; |
1179 | detectors += " "; |
1180 | } |
1181 | } |
f6806ad3 |
1182 | detectors.ReplaceAll("HLT", ""); |
1183 | if (!FillESD(fesd, detectors)) { |
21a3aa09 |
1184 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
596a855f |
1185 | } |
1186 | } |
a5fa6165 |
1187 | |
001397cd |
1188 | // fill Event header information from the RawEventHeader |
21a3aa09 |
1189 | if (fRawReader){FillRawEventHeaderESD(fesd);} |
596a855f |
1190 | |
1191 | // combined PID |
21a3aa09 |
1192 | AliESDpid::MakePID(fesd); |
1193 | if (fCheckPointLevel > 1) WriteESD(fesd, "PID"); |
596a855f |
1194 | |
b647652d |
1195 | if (fFillTriggerESD) { |
21a3aa09 |
1196 | if (!ReadESD(fesd, "trigger")) { |
1197 | if (!FillTriggerESD(fesd)) { |
1198 | if (fStopOnError) {CleanUp(ffile, ffileOld); return kFALSE;} |
b647652d |
1199 | } |
21a3aa09 |
1200 | if (fCheckPointLevel > 1) WriteESD(fesd, "trigger"); |
b647652d |
1201 | } |
1202 | } |
1203 | |
21a3aa09 |
1204 | ffile->cd(); |
a6ee503a |
1205 | |
3c3709c4 |
1206 | // |
67be5c77 |
1207 | // Propagate track to the beam pipe (if not already done by ITS) |
3c3709c4 |
1208 | // |
21a3aa09 |
1209 | const Int_t ntracks = fesd->GetNumberOfTracks(); |
1210 | const Double_t kBz = fesd->GetMagneticField(); |
3c3709c4 |
1211 | const Double_t kRadius = 2.8; //something less than the beam pipe radius |
1212 | |
1213 | TObjArray trkArray; |
1214 | UShort_t *selectedIdx=new UShort_t[ntracks]; |
1215 | |
1216 | for (Int_t itrack=0; itrack<ntracks; itrack++){ |
1217 | const Double_t kMaxStep = 5; //max step over the material |
1218 | Bool_t ok; |
1219 | |
21a3aa09 |
1220 | AliESDtrack *track = fesd->GetTrack(itrack); |
3c3709c4 |
1221 | if (!track) continue; |
1222 | |
1223 | AliExternalTrackParam *tpcTrack = |
1224 | (AliExternalTrackParam *)track->GetTPCInnerParam(); |
bcabd6af |
1225 | ok = kFALSE; |
1226 | if (tpcTrack) |
1227 | ok = AliTracker:: |
1228 | PropagateTrackTo(tpcTrack,kRadius,track->GetMass(),kMaxStep,kTRUE); |
43c9dae1 |
1229 | |
3c3709c4 |
1230 | if (ok) { |
1231 | Int_t n=trkArray.GetEntriesFast(); |
1232 | selectedIdx[n]=track->GetID(); |
1233 | trkArray.AddLast(tpcTrack); |
1234 | } |
1235 | |
3d65e645 |
1236 | //Tracks refitted by ITS should already be at the SPD vertex |
1237 | if (track->IsOn(AliESDtrack::kITSrefit)) continue; |
1238 | |
1239 | AliTracker:: |
1240 | PropagateTrackTo(track,kRadius,track->GetMass(),kMaxStep,kTRUE); |
1241 | track->RelateToVertex(fesd->GetPrimaryVertexSPD(), kBz, kVeryBig); |
3c3709c4 |
1242 | |
3c3709c4 |
1243 | } |
1244 | |
1245 | // |
1246 | // Improve the reconstructed primary vertex position using the tracks |
1247 | // |
1248 | TObject *obj = fOptions.FindObject("ITS"); |
c060d7fe |
1249 | if (obj) { |
1250 | TString optITS = obj->GetTitle(); |
1251 | if (optITS.Contains("cosmics") || optITS.Contains("COSMICS")) |
a84e2607 |
1252 | fRunVertexFinderTracks=kFALSE; |
c060d7fe |
1253 | } |
3c3709c4 |
1254 | if (fRunVertexFinderTracks) { |
1255 | // TPC + ITS primary vertex |
21a3aa09 |
1256 | ftVertexer->SetITSrefitRequired(); |
43c9dae1 |
1257 | if(fDiamondProfile && fMeanVertexConstraint) { |
21a3aa09 |
1258 | ftVertexer->SetVtxStart(fDiamondProfile); |
43c9dae1 |
1259 | } else { |
21a3aa09 |
1260 | ftVertexer->SetConstraintOff(); |
43c9dae1 |
1261 | } |
21a3aa09 |
1262 | AliESDVertex *pvtx=ftVertexer->FindPrimaryVertex(fesd); |
3c3709c4 |
1263 | if (pvtx) { |
1264 | if (pvtx->GetStatus()) { |
21a3aa09 |
1265 | fesd->SetPrimaryVertex(pvtx); |
3c3709c4 |
1266 | for (Int_t i=0; i<ntracks; i++) { |
21a3aa09 |
1267 | AliESDtrack *t = fesd->GetTrack(i); |
3d65e645 |
1268 | t->RelateToVertex(pvtx, kBz, kVeryBig); |
3c3709c4 |
1269 | } |
1270 | } |
1271 | } |
1272 | |
1273 | // TPC-only primary vertex |
21a3aa09 |
1274 | ftVertexer->SetITSrefitNotRequired(); |
43c9dae1 |
1275 | if(fDiamondProfileTPC && fMeanVertexConstraint) { |
21a3aa09 |
1276 | ftVertexer->SetVtxStart(fDiamondProfileTPC); |
43c9dae1 |
1277 | } else { |
21a3aa09 |
1278 | ftVertexer->SetConstraintOff(); |
43c9dae1 |
1279 | } |
21a3aa09 |
1280 | pvtx=ftVertexer->FindPrimaryVertex(&trkArray,selectedIdx); |
3c3709c4 |
1281 | if (pvtx) { |
1282 | if (pvtx->GetStatus()) { |
21a3aa09 |
1283 | fesd->SetPrimaryVertexTPC(pvtx); |
3d65e645 |
1284 | for (Int_t i=0; i<ntracks; i++) { |
1285 | AliESDtrack *t = fesd->GetTrack(i); |
1286 | t->RelateToVertexTPC(pvtx, kBz, kVeryBig); |
3c3709c4 |
1287 | } |
1288 | } |
1289 | } |
1290 | |
1291 | } |
1292 | delete[] selectedIdx; |
1293 | |
21a3aa09 |
1294 | if(fDiamondProfile) fesd->SetDiamond(fDiamondProfile); |
17c86e90 |
1295 | |
c5e3e5d1 |
1296 | |
d1683eef |
1297 | if (fRunV0Finder) { |
1298 | // V0 finding |
1299 | AliV0vertexer vtxer; |
21a3aa09 |
1300 | vtxer.Tracks2V0vertices(fesd); |
5e4ff34d |
1301 | |
d1683eef |
1302 | if (fRunCascadeFinder) { |
1303 | // Cascade finding |
1304 | AliCascadeVertexer cvtxer; |
21a3aa09 |
1305 | cvtxer.V0sTracks2CascadeVertices(fesd); |
d1683eef |
1306 | } |
5e4ff34d |
1307 | } |
1308 | |
596a855f |
1309 | // write ESD |
21a3aa09 |
1310 | if (fCleanESD) CleanESD(fesd); |
854c6476 |
1311 | |
79740dfc |
1312 | if (fRunQA) { |
1313 | if (fRunGlobalQA) { |
1314 | AliQADataMakerRec *qadm = GetQADataMaker(AliQA::kGLOBAL); |
ce43afbe |
1315 | if (qadm && fQATasks.Contains(Form("%d", AliQA::kESDS))) |
1316 | qadm->Exec(AliQA::kESDS, fesd); |
79740dfc |
1317 | } |
1318 | } |
854c6476 |
1319 | |
1d99986f |
1320 | if (fWriteESDfriend) { |
21a3aa09 |
1321 | fesdf->~AliESDfriend(); |
1322 | new (fesdf) AliESDfriend(); // Reset... |
1323 | fesd->GetESDfriend(fesdf); |
1d99986f |
1324 | } |
21a3aa09 |
1325 | ftree->Fill(); |
500d54ab |
1326 | |
1327 | // write HLT ESD |
21a3aa09 |
1328 | fhlttree->Fill(); |
1d99986f |
1329 | |
14dd053c |
1330 | // call AliEVE |
1331 | if (fRunAliEVE) RunAliEVE(); |
1332 | |
21a3aa09 |
1333 | if (fCheckPointLevel > 0) WriteESD(fesd, "final"); |
1334 | fesd->Reset(); |
1335 | fhltesd->Reset(); |
5728d3d5 |
1336 | if (fWriteESDfriend) { |
21a3aa09 |
1337 | fesdf->~AliESDfriend(); |
1338 | new (fesdf) AliESDfriend(); // Reset... |
5728d3d5 |
1339 | } |
a5fa6165 |
1340 | |
21a3aa09 |
1341 | ProcInfo_t ProcInfo; |
95cee32f |
1342 | gSystem->GetProcInfo(&ProcInfo); |
1343 | AliInfo(Form("Event %d -> Current memory usage %d %d",iEvent, ProcInfo.fMemResident, ProcInfo.fMemVirtual)); |
a5fa6165 |
1344 | |
7e963665 |
1345 | |
ce43afbe |
1346 | // End of cycle for the in-loop |
3b378a42 |
1347 | if (fInLoopQA) { |
1348 | if (fRunQA) { |
ce43afbe |
1349 | RunQA(fesd); |
3b378a42 |
1350 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
ce43afbe |
1351 | if (!IsSelected(fgkDetectorName[iDet], fQADetectors)) |
7c002d48 |
1352 | continue; |
1353 | AliQADataMakerRec * qadm = GetQADataMaker(iDet); |
ce43afbe |
1354 | if (!qadm) |
7c002d48 |
1355 | continue; |
ce43afbe |
1356 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) |
1357 | qadm->EndOfCycle(AliQA::kRECPOINTS); |
1358 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) |
1359 | qadm->EndOfCycle(AliQA::kESDS); |
7c002d48 |
1360 | qadm->Finish(); |
1361 | } |
aa3c69a9 |
1362 | } |
1363 | if (fRunGlobalQA) { |
7c002d48 |
1364 | AliQADataMakerRec *qadm = GetQADataMaker(AliQA::kGLOBAL); |
aa3c69a9 |
1365 | if (qadm) { |
ce43afbe |
1366 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) |
1367 | qadm->EndOfCycle(AliQA::kRECPOINTS); |
1368 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) |
1369 | qadm->EndOfCycle(AliQA::kESDS); |
1370 | qadm->Finish(); |
1371 | } |
aa3c69a9 |
1372 | } |
1373 | } |
aa3c69a9 |
1374 | |
21a3aa09 |
1375 | return kTRUE; |
1376 | } |
1377 | |
21a3aa09 |
1378 | //_____________________________________________________________________________ |
1379 | Bool_t AliReconstruction::FinishRun() |
1380 | { |
1381 | // Finalize the run |
1382 | // Called after the exit |
1383 | // from the event loop |
1384 | AliCodeTimerAuto(""); |
1385 | |
1386 | if (fIsNewRunLoader) { // galice.root didn't exist |
1387 | fRunLoader->WriteHeader("OVERWRITE"); |
1388 | fRunLoader->CdGAFile(); |
1389 | fRunLoader->Write(0, TObject::kOverwrite); |
1390 | } |
1391 | |
1392 | ftree->GetUserInfo()->Add(fesd); |
1393 | fhlttree->GetUserInfo()->Add(fhltesd); |
f747912b |
1394 | |
1395 | const TMap *cdbMap = AliCDBManager::Instance()->GetStorageMap(); |
1396 | const TList *cdbList = AliCDBManager::Instance()->GetRetrievedIds(); |
1397 | |
1398 | TMap *cdbMapCopy = new TMap(cdbMap->GetEntries()); |
1399 | cdbMapCopy->SetOwner(1); |
1400 | cdbMapCopy->SetName("cdbMap"); |
1401 | TIter iter(cdbMap->GetTable()); |
1402 | |
1403 | TPair* pair = 0; |
1404 | while((pair = dynamic_cast<TPair*> (iter.Next()))){ |
1405 | TObjString* keyStr = dynamic_cast<TObjString*> (pair->Key()); |
1406 | TObjString* valStr = dynamic_cast<TObjString*> (pair->Value()); |
1407 | cdbMapCopy->Add(new TObjString(keyStr->GetName()), new TObjString(valStr->GetName())); |
1408 | } |
1409 | |
1410 | TList *cdbListCopy = new TList(); |
1411 | cdbListCopy->SetOwner(1); |
1412 | cdbListCopy->SetName("cdbList"); |
1413 | |
1414 | TIter iter2(cdbList); |
1415 | |
1416 | AliCDBId* id=0; |
1417 | while((id = dynamic_cast<AliCDBId*> (iter2.Next()))){ |
a4970db9 |
1418 | cdbListCopy->Add(new TObjString(id->ToString().Data())); |
f747912b |
1419 | } |
1420 | |
21a3aa09 |
1421 | ftree->GetUserInfo()->Add(cdbMapCopy); |
1422 | ftree->GetUserInfo()->Add(cdbListCopy); |
abe0c04e |
1423 | |
46698ae4 |
1424 | |
1425 | if(fESDPar.Contains("ESD.par")){ |
1426 | AliInfo("Attaching ESD.par to Tree"); |
1427 | TNamed *fn = CopyFileToTNamed(fESDPar.Data(),"ESD.par"); |
21a3aa09 |
1428 | ftree->GetUserInfo()->Add(fn); |
596a855f |
1429 | } |
1430 | |
46698ae4 |
1431 | |
21a3aa09 |
1432 | ffile->cd(); |
aa3c69a9 |
1433 | |
a9c0e6db |
1434 | if (fWriteESDfriend) |
21a3aa09 |
1435 | ftree->SetBranchStatus("ESDfriend*",0); |
562dd0b4 |
1436 | // we want to have only one tree version number |
21a3aa09 |
1437 | ftree->Write(ftree->GetName(),TObject::kOverwrite); |
1438 | fhlttree->Write(); |
f3a97c86 |
1439 | |
a7a1e1c7 |
1440 | // Finish with Plane Efficiency evaluation: before of CleanUp !!! |
1441 | if (fRunPlaneEff && !FinishPlaneEff()) { |
1442 | AliWarning("Finish PlaneEff evaluation failed"); |
1443 | } |
1444 | |
eae191bc |
1445 | gROOT->cd(); |
21a3aa09 |
1446 | CleanUp(ffile, ffileOld); |
eae191bc |
1447 | |
a7807689 |
1448 | if (fWriteAOD) { |
7a3b2050 |
1449 | AliWarning("AOD creation not supported anymore during reconstruction. See ANALYSIS/AliAnalysisTaskESDfilter.cxx instead."); |
a7807689 |
1450 | } |
1451 | |
f3a97c86 |
1452 | // Create tags for the events in the ESD tree (the ESD tree is always present) |
1453 | // In case of empty events the tags will contain dummy values |
08e1a23e |
1454 | AliESDTagCreator *esdtagCreator = new AliESDTagCreator(); |
6b6e4472 |
1455 | esdtagCreator->CreateESDTags(fFirstEvent,fLastEvent,fGRPData); |
a1069ee1 |
1456 | if (fWriteAOD) { |
7a3b2050 |
1457 | AliWarning("AOD tag creation not supported anymore during reconstruction."); |
a1069ee1 |
1458 | } |
596a855f |
1459 | |
aa3c69a9 |
1460 | //Finish QA and end of cycle for out-of-loop QA |
3b378a42 |
1461 | if (!fInLoopQA) { |
79740dfc |
1462 | if (fRunQA) { |
1463 | AliQADataMakerSteer qas; |
ce43afbe |
1464 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) |
1465 | qas.Run(fRunLocalReconstruction.Data(), AliQA::kRECPOINTS, fSameQACycle); |
79740dfc |
1466 | //qas.Reset() ; |
ce43afbe |
1467 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) |
1468 | qas.Run(fRunLocalReconstruction.Data(), AliQA::kESDS, fSameQACycle); |
79740dfc |
1469 | if (fRunGlobalQA) { |
1470 | AliQADataMakerRec *qadm = GetQADataMaker(AliQA::kGLOBAL); |
1471 | if (qadm) { |
ce43afbe |
1472 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) |
1473 | qadm->EndOfCycle(AliQA::kRECPOINTS); |
1474 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) |
1475 | qadm->EndOfCycle(AliQA::kESDS); |
79740dfc |
1476 | qadm->Finish(); |
1477 | } |
1478 | } |
1479 | } |
759c1df1 |
1480 | } |
795e4a22 |
1481 | |
1482 | // Cleanup of CDB manager: cache and active storages! |
1483 | AliCDBManager::Instance()->ClearCache(); |
1484 | |
596a855f |
1485 | return kTRUE; |
1486 | } |
1487 | |
1488 | |
1489 | //_____________________________________________________________________________ |
c4aa7a4c |
1490 | Bool_t AliReconstruction::RunLocalReconstruction(const TString& /*detectors*/) |
596a855f |
1491 | { |
59697224 |
1492 | // run the local reconstruction |
0f88822a |
1493 | static Int_t eventNr=0; |
87932dab |
1494 | AliCodeTimerAuto("") |
030b532d |
1495 | |
d76c31f4 |
1496 | // AliCDBManager* man = AliCDBManager::Instance(); |
1497 | // Bool_t origCache = man->GetCacheFlag(); |
8e245d15 |
1498 | |
d76c31f4 |
1499 | // TString detStr = detectors; |
1500 | // for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
1501 | // if (!IsSelected(fgkDetectorName[iDet], detStr)) continue; |
1502 | // AliReconstructor* reconstructor = GetReconstructor(iDet); |
1503 | // if (!reconstructor) continue; |
1504 | // if (reconstructor->HasLocalReconstruction()) continue; |
b8cd5251 |
1505 | |
d76c31f4 |
1506 | // AliCodeTimerStart(Form("running reconstruction for %s", fgkDetectorName[iDet])); |
1507 | // AliInfo(Form("running reconstruction for %s", fgkDetectorName[iDet])); |
87932dab |
1508 | |
d76c31f4 |
1509 | // AliCodeTimerStart(Form("Loading calibration data from OCDB for %s", fgkDetectorName[iDet])); |
1510 | // AliInfo(Form("Loading calibration data from OCDB for %s", fgkDetectorName[iDet])); |
8e245d15 |
1511 | |
d76c31f4 |
1512 | // man->SetCacheFlag(kTRUE); |
1513 | // TString calibPath = Form("%s/Calib/*", fgkDetectorName[iDet]); |
1514 | // man->GetAll(calibPath); // entries are cached! |
8e245d15 |
1515 | |
d76c31f4 |
1516 | // AliCodeTimerStop(Form("Loading calibration data from OCDB for %s", fgkDetectorName[iDet])); |
87932dab |
1517 | |
d76c31f4 |
1518 | // if (fRawReader) { |
1519 | // fRawReader->RewindEvents(); |
1520 | // reconstructor->Reconstruct(fRunLoader, fRawReader); |
1521 | // } else { |
1522 | // reconstructor->Reconstruct(fRunLoader); |
1523 | // } |
87932dab |
1524 | |
d76c31f4 |
1525 | // AliCodeTimerStop(Form("running reconstruction for %s", fgkDetectorName[iDet])); |
0f88822a |
1526 | // AliSysInfo::AddStamp(Form("LRec%s_%d",fgkDetectorName[iDet],eventNr)); |
8e245d15 |
1527 | |
d76c31f4 |
1528 | // // unload calibration data |
1529 | // man->UnloadFromCache(calibPath); |
1530 | // //man->ClearCache(); |
1531 | // } |
596a855f |
1532 | |
d76c31f4 |
1533 | // man->SetCacheFlag(origCache); |
8e245d15 |
1534 | |
d76c31f4 |
1535 | // if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) { |
1536 | // AliError(Form("the following detectors were not found: %s", |
1537 | // detStr.Data())); |
1538 | // if (fStopOnError) return kFALSE; |
1539 | // } |
596a855f |
1540 | |
0f88822a |
1541 | eventNr++; |
596a855f |
1542 | return kTRUE; |
1543 | } |
1544 | |
b26c3770 |
1545 | //_____________________________________________________________________________ |
1546 | Bool_t AliReconstruction::RunLocalEventReconstruction(const TString& detectors) |
1547 | { |
1548 | // run the local reconstruction |
aa3c69a9 |
1549 | |
0f88822a |
1550 | static Int_t eventNr=0; |
87932dab |
1551 | AliCodeTimerAuto("") |
b26c3770 |
1552 | |
1553 | TString detStr = detectors; |
1554 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
1555 | if (!IsSelected(fgkDetectorName[iDet], detStr)) continue; |
1556 | AliReconstructor* reconstructor = GetReconstructor(iDet); |
1557 | if (!reconstructor) continue; |
1558 | AliLoader* loader = fLoader[iDet]; |
f6806ad3 |
1559 | // Matthias April 2008: temporary fix to run HLT reconstruction |
1560 | // although the HLT loader is missing |
1561 | if (strcmp(fgkDetectorName[iDet], "HLT")==0) { |
1562 | if (fRawReader) { |
1563 | reconstructor->Reconstruct(fRawReader, NULL); |
1564 | } else { |
1565 | TTree* dummy=NULL; |
1566 | reconstructor->Reconstruct(dummy, NULL); |
1567 | } |
1568 | continue; |
1569 | } |
d76c31f4 |
1570 | if (!loader) { |
1571 | AliWarning(Form("No loader is defined for %s!",fgkDetectorName[iDet])); |
1572 | continue; |
1573 | } |
b26c3770 |
1574 | // conversion of digits |
1575 | if (fRawReader && reconstructor->HasDigitConversion()) { |
1576 | AliInfo(Form("converting raw data digits into root objects for %s", |
1577 | fgkDetectorName[iDet])); |
87932dab |
1578 | AliCodeTimerAuto(Form("converting raw data digits into root objects for %s", |
1579 | fgkDetectorName[iDet])); |
b26c3770 |
1580 | loader->LoadDigits("update"); |
1581 | loader->CleanDigits(); |
1582 | loader->MakeDigitsContainer(); |
1583 | TTree* digitsTree = loader->TreeD(); |
1584 | reconstructor->ConvertDigits(fRawReader, digitsTree); |
1585 | loader->WriteDigits("OVERWRITE"); |
1586 | loader->UnloadDigits(); |
b26c3770 |
1587 | } |
b26c3770 |
1588 | // local reconstruction |
b26c3770 |
1589 | AliInfo(Form("running reconstruction for %s", fgkDetectorName[iDet])); |
87932dab |
1590 | AliCodeTimerAuto(Form("running reconstruction for %s", fgkDetectorName[iDet])); |
b26c3770 |
1591 | loader->LoadRecPoints("update"); |
1592 | loader->CleanRecPoints(); |
1593 | loader->MakeRecPointsContainer(); |
1594 | TTree* clustersTree = loader->TreeR(); |
1595 | if (fRawReader && !reconstructor->HasDigitConversion()) { |
1596 | reconstructor->Reconstruct(fRawReader, clustersTree); |
1597 | } else { |
1598 | loader->LoadDigits("read"); |
1599 | TTree* digitsTree = loader->TreeD(); |
1600 | if (!digitsTree) { |
1601 | AliError(Form("Can't get the %s digits tree", fgkDetectorName[iDet])); |
1602 | if (fStopOnError) return kFALSE; |
1603 | } else { |
1604 | reconstructor->Reconstruct(digitsTree, clustersTree); |
1605 | } |
1606 | loader->UnloadDigits(); |
1607 | } |
d76c31f4 |
1608 | |
aa3c69a9 |
1609 | // In-loop QA for local reconstrucion |
ae7222f3 |
1610 | TString detQAStr(fQADetectors) ; |
1611 | if (fRunQA && fInLoopQA && IsSelected(fgkDetectorName[iDet], detQAStr) ) { |
04236e67 |
1612 | AliQADataMakerRec * qadm = GetQADataMaker(iDet); |
aa3c69a9 |
1613 | if (qadm) { |
1614 | //AliCodeTimerStart |
1615 | //(Form("Running QA data maker for %s", fgkDetectorName[iDet])); |
1616 | //AliInfo |
1617 | //(Form("Running QA data maker for %s", fgkDetectorName[iDet])); |
1618 | |
ce43afbe |
1619 | if (fQATasks.Contains(Form("%d", AliQA::kRECPOINTS))) |
1620 | qadm->Exec(AliQA::kRECPOINTS, clustersTree) ; |
aa3c69a9 |
1621 | //AliCodeTimerStop |
1622 | //(Form("Running QA data maker for %s", fgkDetectorName[iDet])); |
1623 | } |
1624 | } |
d76c31f4 |
1625 | |
aa3c69a9 |
1626 | loader->WriteRecPoints("OVERWRITE"); |
b26c3770 |
1627 | loader->UnloadRecPoints(); |
6efecea1 |
1628 | AliSysInfo::AddStamp(Form("LRec%s_%d",fgkDetectorName[iDet],eventNr), iDet,1,eventNr); |
b26c3770 |
1629 | } |
1630 | |
1631 | if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) { |
1632 | AliError(Form("the following detectors were not found: %s", |
1633 | detStr.Data())); |
1634 | if (fStopOnError) return kFALSE; |
1635 | } |
0f88822a |
1636 | eventNr++; |
b26c3770 |
1637 | return kTRUE; |
1638 | } |
1639 | |
596a855f |
1640 | //_____________________________________________________________________________ |
af885e0f |
1641 | Bool_t AliReconstruction::RunVertexFinder(AliESDEvent*& esd) |
596a855f |
1642 | { |
1643 | // run the barrel tracking |
1644 | |
87932dab |
1645 | AliCodeTimerAuto("") |
030b532d |
1646 | |
2257f27e |
1647 | AliESDVertex* vertex = NULL; |
1648 | Double_t vtxPos[3] = {0, 0, 0}; |
1649 | Double_t vtxErr[3] = {0.07, 0.07, 0.1}; |
1650 | TArrayF mcVertex(3); |
a6b0b91b |
1651 | if (fRunLoader->GetHeader() && fRunLoader->GetHeader()->GenEventHeader()) { |
1652 | fRunLoader->GetHeader()->GenEventHeader()->PrimaryVertex(mcVertex); |
1653 | for (Int_t i = 0; i < 3; i++) vtxPos[i] = mcVertex[i]; |
1654 | } |
2257f27e |
1655 | |
b8cd5251 |
1656 | if (fVertexer) { |
815c2b38 |
1657 | AliInfo("running the ITS vertex finder"); |
308c2f7c |
1658 | if (fLoader[0]) { |
1659 | fLoader[0]->LoadRecPoints(); |
1660 | TTree* cltree = fLoader[0]->TreeR(); |
1661 | if (cltree) { |
1662 | if(fDiamondProfile) fVertexer->SetVtxStart(fDiamondProfile); |
1663 | vertex = fVertexer->FindVertexForCurrentEvent(cltree); |
1664 | } |
1665 | else { |
1666 | AliError("Can't get the ITS cluster tree"); |
1667 | } |
1668 | fLoader[0]->UnloadRecPoints(); |
1669 | } |
1670 | else { |
1671 | AliError("Can't get the ITS loader"); |
1672 | } |
2257f27e |
1673 | if(!vertex){ |
815c2b38 |
1674 | AliWarning("Vertex not found"); |
c710f220 |
1675 | vertex = new AliESDVertex(); |
d1a50cb5 |
1676 | vertex->SetName("default"); |
2257f27e |
1677 | } |
1678 | else { |
d1a50cb5 |
1679 | vertex->SetName("reconstructed"); |
2257f27e |
1680 | } |
1681 | |
1682 | } else { |
815c2b38 |
1683 | AliInfo("getting the primary vertex from MC"); |
2257f27e |
1684 | vertex = new AliESDVertex(vtxPos, vtxErr); |
1685 | } |
1686 | |
1687 | if (vertex) { |
1688 | vertex->GetXYZ(vtxPos); |
1689 | vertex->GetSigmaXYZ(vtxErr); |
1690 | } else { |
815c2b38 |
1691 | AliWarning("no vertex reconstructed"); |
2257f27e |
1692 | vertex = new AliESDVertex(vtxPos, vtxErr); |
1693 | } |
06cc9d95 |
1694 | esd->SetPrimaryVertexSPD(vertex); |
32e449be |
1695 | // if SPD multiplicity has been determined, it is stored in the ESD |
25be1e5c |
1696 | AliMultiplicity *mult = fVertexer->GetMultiplicity(); |
32e449be |
1697 | if(mult)esd->SetMultiplicity(mult); |
1698 | |
b8cd5251 |
1699 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
1700 | if (fTracker[iDet]) fTracker[iDet]->SetVertex(vtxPos, vtxErr); |
1701 | } |
2257f27e |
1702 | delete vertex; |
1703 | |
2257f27e |
1704 | return kTRUE; |
1705 | } |
1706 | |
1f46a9ae |
1707 | //_____________________________________________________________________________ |
af885e0f |
1708 | Bool_t AliReconstruction::RunHLTTracking(AliESDEvent*& esd) |
1f46a9ae |
1709 | { |
1710 | // run the HLT barrel tracking |
1711 | |
87932dab |
1712 | AliCodeTimerAuto("") |
1f46a9ae |
1713 | |
1714 | if (!fRunLoader) { |
1715 | AliError("Missing runLoader!"); |
1716 | return kFALSE; |
1717 | } |
1718 | |
1719 | AliInfo("running HLT tracking"); |
1720 | |
1721 | // Get a pointer to the HLT reconstructor |
1722 | AliReconstructor *reconstructor = GetReconstructor(fgkNDetectors-1); |
1723 | if (!reconstructor) return kFALSE; |
1724 | |
1725 | // TPC + ITS |
1726 | for (Int_t iDet = 1; iDet >= 0; iDet--) { |
1727 | TString detName = fgkDetectorName[iDet]; |
1728 | AliDebug(1, Form("%s HLT tracking", detName.Data())); |
1729 | reconstructor->SetOption(detName.Data()); |
d76c31f4 |
1730 | AliTracker *tracker = reconstructor->CreateTracker(); |
1f46a9ae |
1731 | if (!tracker) { |
1732 | AliWarning(Form("couldn't create a HLT tracker for %s", detName.Data())); |
1733 | if (fStopOnError) return kFALSE; |
9dcc06e1 |
1734 | continue; |
1f46a9ae |
1735 | } |
1736 | Double_t vtxPos[3]; |
1737 | Double_t vtxErr[3]={0.005,0.005,0.010}; |
1738 | const AliESDVertex *vertex = esd->GetVertex(); |
1739 | vertex->GetXYZ(vtxPos); |
1740 | tracker->SetVertex(vtxPos,vtxErr); |
1741 | if(iDet != 1) { |
1742 | fLoader[iDet]->LoadRecPoints("read"); |
1743 | TTree* tree = fLoader[iDet]->TreeR(); |
1744 | if (!tree) { |
1745 | AliError(Form("Can't get the %s cluster tree", detName.Data())); |
1746 | return kFALSE; |
1747 | } |
1748 | tracker->LoadClusters(tree); |
1749 | } |
1750 | if (tracker->Clusters2Tracks(esd) != 0) { |
1751 | AliError(Form("HLT %s Clusters2Tracks failed", fgkDetectorName[iDet])); |
1752 | return kFALSE; |
1753 | } |
1754 | if(iDet != 1) { |
1755 | tracker->UnloadClusters(); |
1756 | } |
1757 | delete tracker; |
1758 | } |
1759 | |
1f46a9ae |
1760 | return kTRUE; |
1761 | } |
1762 | |
e66fbafb |
1763 | //_____________________________________________________________________________ |
af885e0f |
1764 | Bool_t AliReconstruction::RunMuonTracking(AliESDEvent*& esd) |
e66fbafb |
1765 | { |
1766 | // run the muon spectrometer tracking |
1767 | |
87932dab |
1768 | AliCodeTimerAuto("") |
e66fbafb |
1769 | |
1770 | if (!fRunLoader) { |
1771 | AliError("Missing runLoader!"); |
1772 | return kFALSE; |
1773 | } |
1774 | Int_t iDet = 7; // for MUON |
1775 | |
1776 | AliInfo("is running..."); |
1777 | |
1778 | // Get a pointer to the MUON reconstructor |
1779 | AliReconstructor *reconstructor = GetReconstructor(iDet); |
1780 | if (!reconstructor) return kFALSE; |
1781 | |
1782 | |
1783 | TString detName = fgkDetectorName[iDet]; |
1784 | AliDebug(1, Form("%s tracking", detName.Data())); |
d76c31f4 |
1785 | AliTracker *tracker = reconstructor->CreateTracker(); |
e66fbafb |
1786 | if (!tracker) { |
1787 | AliWarning(Form("couldn't create a tracker for %s", detName.Data())); |
1788 | return kFALSE; |
1789 | } |
1790 | |
e66fbafb |
1791 | // read RecPoints |
761350a6 |
1792 | fLoader[iDet]->LoadRecPoints("read"); |
c1954ee5 |
1793 | |
761350a6 |
1794 | tracker->LoadClusters(fLoader[iDet]->TreeR()); |
1795 | |
1796 | Int_t rv = tracker->Clusters2Tracks(esd); |
1797 | |
761350a6 |
1798 | if ( rv ) |
1799 | { |
e66fbafb |
1800 | AliError(Form("%s Clusters2Tracks failed", fgkDetectorName[iDet])); |
1801 | return kFALSE; |
1802 | } |
761350a6 |
1803 | |
e66fbafb |
1804 | fLoader[iDet]->UnloadRecPoints(); |
1805 | |
c1954ee5 |
1806 | tracker->UnloadClusters(); |
1807 | |
e66fbafb |
1808 | delete tracker; |
1809 | |
e66fbafb |
1810 | return kTRUE; |
1811 | } |
1812 | |
1813 | |
2257f27e |
1814 | //_____________________________________________________________________________ |
af885e0f |
1815 | Bool_t AliReconstruction::RunTracking(AliESDEvent*& esd) |
2257f27e |
1816 | { |
1817 | // run the barrel tracking |
0f88822a |
1818 | static Int_t eventNr=0; |
87932dab |
1819 | AliCodeTimerAuto("") |
24f7a148 |
1820 | |
815c2b38 |
1821 | AliInfo("running tracking"); |
596a855f |
1822 | |
91b876d1 |
1823 | //Fill the ESD with the T0 info (will be used by the TOF) |
d76c31f4 |
1824 | if (fReconstructor[11] && fLoader[11]) { |
1825 | fLoader[11]->LoadRecPoints("READ"); |
1826 | TTree *treeR = fLoader[11]->TreeR(); |
1827 | GetReconstructor(11)->FillESD((TTree *)NULL,treeR,esd); |
1828 | } |
91b876d1 |
1829 | |
b8cd5251 |
1830 | // pass 1: TPC + ITS inwards |
1831 | for (Int_t iDet = 1; iDet >= 0; iDet--) { |
1832 | if (!fTracker[iDet]) continue; |
1833 | AliDebug(1, Form("%s tracking", fgkDetectorName[iDet])); |
24f7a148 |
1834 | |
b8cd5251 |
1835 | // load clusters |
1836 | fLoader[iDet]->LoadRecPoints("read"); |
6efecea1 |
1837 | AliSysInfo::AddStamp(Form("RLoadCluster%s_%d",fgkDetectorName[iDet],eventNr),iDet,1, eventNr); |
b8cd5251 |
1838 | TTree* tree = fLoader[iDet]->TreeR(); |
1839 | if (!tree) { |
1840 | AliError(Form("Can't get the %s cluster tree", fgkDetectorName[iDet])); |
24f7a148 |
1841 | return kFALSE; |
1842 | } |
b8cd5251 |
1843 | fTracker[iDet]->LoadClusters(tree); |
6efecea1 |
1844 | AliSysInfo::AddStamp(Form("TLoadCluster%s_%d",fgkDetectorName[iDet],eventNr), iDet,2, eventNr); |
b8cd5251 |
1845 | // run tracking |
1846 | if (fTracker[iDet]->Clusters2Tracks(esd) != 0) { |
1847 | AliError(Form("%s Clusters2Tracks failed", fgkDetectorName[iDet])); |
24f7a148 |
1848 | return kFALSE; |
1849 | } |
b8cd5251 |
1850 | if (fCheckPointLevel > 1) { |
1851 | WriteESD(esd, Form("%s.tracking", fgkDetectorName[iDet])); |
1852 | } |
878e1fe1 |
1853 | // preliminary PID in TPC needed by the ITS tracker |
1854 | if (iDet == 1) { |
b26c3770 |
1855 | GetReconstructor(1)->FillESD((TTree*)NULL, (TTree*)NULL, esd); |
878e1fe1 |
1856 | AliESDpid::MakePID(esd); |
0f88822a |
1857 | } |
6efecea1 |
1858 | AliSysInfo::AddStamp(Form("Tracking0%s_%d",fgkDetectorName[iDet],eventNr), iDet,3,eventNr); |
b8cd5251 |
1859 | } |
596a855f |
1860 | |
b8cd5251 |
1861 | // pass 2: ALL backwards |
aa3c69a9 |
1862 | |
b8cd5251 |
1863 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
1864 | if (!fTracker[iDet]) continue; |
1865 | AliDebug(1, Form("%s back propagation", fgkDetectorName[iDet])); |
1866 | |
1867 | // load clusters |
1868 | if (iDet > 1) { // all except ITS, TPC |
1869 | TTree* tree = NULL; |
7b61cd9c |
1870 | fLoader[iDet]->LoadRecPoints("read"); |
6efecea1 |
1871 | AliSysInfo::AddStamp(Form("RLoadCluster0%s_%d",fgkDetectorName[iDet],eventNr), iDet,1, eventNr); |
7b61cd9c |
1872 | tree = fLoader[iDet]->TreeR(); |
b8cd5251 |
1873 | if (!tree) { |
1874 | AliError(Form("Can't get the %s cluster tree", fgkDetectorName[iDet])); |
24f7a148 |
1875 | return kFALSE; |
1876 | } |
0f88822a |
1877 | fTracker[iDet]->LoadClusters(tree); |
6efecea1 |
1878 | AliSysInfo::AddStamp(Form("TLoadCluster0%s_%d",fgkDetectorName[iDet],eventNr), iDet,2, eventNr); |
b8cd5251 |
1879 | } |
24f7a148 |
1880 | |
b8cd5251 |
1881 | // run tracking |
283f39c6 |
1882 | if (iDet>1) // start filling residuals for the "outer" detectors |
1883 | if (fRunGlobalQA) AliTracker::SetFillResiduals(kTRUE); |
1884 | |
b8cd5251 |
1885 | if (fTracker[iDet]->PropagateBack(esd) != 0) { |
1886 | AliError(Form("%s backward propagation failed", fgkDetectorName[iDet])); |
49dfd67a |
1887 | // return kFALSE; |
b8cd5251 |
1888 | } |
1889 | if (fCheckPointLevel > 1) { |
1890 | WriteESD(esd, Form("%s.back", fgkDetectorName[iDet])); |
1891 | } |
24f7a148 |
1892 | |
b8cd5251 |
1893 | // unload clusters |
1894 | if (iDet > 2) { // all except ITS, TPC, TRD |
1895 | fTracker[iDet]->UnloadClusters(); |
7b61cd9c |
1896 | fLoader[iDet]->UnloadRecPoints(); |
b8cd5251 |
1897 | } |
8f37df88 |
1898 | // updated PID in TPC needed by the ITS tracker -MI |
1899 | if (iDet == 1) { |
8f37df88 |
1900 | GetReconstructor(1)->FillESD((TTree*)NULL, (TTree*)NULL, esd); |
1901 | AliESDpid::MakePID(esd); |
1902 | } |
6efecea1 |
1903 | AliSysInfo::AddStamp(Form("Tracking1%s_%d",fgkDetectorName[iDet],eventNr), iDet,3, eventNr); |
b8cd5251 |
1904 | } |
283f39c6 |
1905 | //stop filling residuals for the "outer" detectors |
1906 | if (fRunGlobalQA) AliTracker::SetFillResiduals(kFALSE); |
596a855f |
1907 | |
98937d93 |
1908 | // write space-points to the ESD in case alignment data output |
1909 | // is switched on |
1910 | if (fWriteAlignmentData) |
1911 | WriteAlignmentData(esd); |
1912 | |
b8cd5251 |
1913 | // pass 3: TRD + TPC + ITS refit inwards |
aa3c69a9 |
1914 | |
b8cd5251 |
1915 | for (Int_t iDet = 2; iDet >= 0; iDet--) { |
1916 | if (!fTracker[iDet]) continue; |
1917 | AliDebug(1, Form("%s inward refit", fgkDetectorName[iDet])); |
596a855f |
1918 | |
b8cd5251 |
1919 | // run tracking |
283f39c6 |
1920 | if (iDet<2) // start filling residuals for TPC and ITS |
1921 | if (fRunGlobalQA) AliTracker::SetFillResiduals(kTRUE); |
1922 | |
b8cd5251 |
1923 | if (fTracker[iDet]->RefitInward(esd) != 0) { |
1924 | AliError(Form("%s inward refit failed", fgkDetectorName[iDet])); |
49dfd67a |
1925 | // return kFALSE; |
b8cd5251 |
1926 | } |
db2368d0 |
1927 | // run postprocessing |
1928 | if (fTracker[iDet]->PostProcess(esd) != 0) { |
1929 | AliError(Form("%s postprocessing failed", fgkDetectorName[iDet])); |
1930 | // return kFALSE; |
1931 | } |
b8cd5251 |
1932 | if (fCheckPointLevel > 1) { |
1933 | WriteESD(esd, Form("%s.refit", fgkDetectorName[iDet])); |
1934 | } |
6efecea1 |
1935 | AliSysInfo::AddStamp(Form("Tracking2%s_%d",fgkDetectorName[iDet],eventNr), iDet,3, eventNr); |
b8cd5251 |
1936 | // unload clusters |
1937 | fTracker[iDet]->UnloadClusters(); |
6efecea1 |
1938 | AliSysInfo::AddStamp(Form("TUnloadCluster%s_%d",fgkDetectorName[iDet],eventNr), iDet,4, eventNr); |
b8cd5251 |
1939 | fLoader[iDet]->UnloadRecPoints(); |
6efecea1 |
1940 | AliSysInfo::AddStamp(Form("RUnloadCluster%s_%d",fgkDetectorName[iDet],eventNr), iDet,5, eventNr); |
b8cd5251 |
1941 | } |
283f39c6 |
1942 | // stop filling residuals for TPC and ITS |
3b378a42 |
1943 | if (fRunGlobalQA) AliTracker::SetFillResiduals(kFALSE); |
854c6476 |
1944 | |
0f88822a |
1945 | eventNr++; |
596a855f |
1946 | return kTRUE; |
1947 | } |
1948 | |
d64bd07d |
1949 | //_____________________________________________________________________________ |
1950 | Bool_t AliReconstruction::CleanESD(AliESDEvent *esd){ |
1951 | // |
1952 | // Remove the data which are not needed for the physics analysis. |
1953 | // |
1954 | |
d64bd07d |
1955 | Int_t nTracks=esd->GetNumberOfTracks(); |
18571674 |
1956 | Int_t nV0s=esd->GetNumberOfV0s(); |
cf37fd88 |
1957 | AliInfo |
1958 | (Form("Number of ESD tracks and V0s before cleaning: %d %d",nTracks,nV0s)); |
d64bd07d |
1959 | |
18571674 |
1960 | Float_t cleanPars[]={fV0DCAmax,fV0CsPmin,fDmax,fZmax}; |
7f68891d |
1961 | Bool_t rc=esd->Clean(cleanPars); |
d64bd07d |
1962 | |
7f68891d |
1963 | nTracks=esd->GetNumberOfTracks(); |
18571674 |
1964 | nV0s=esd->GetNumberOfV0s(); |
cf37fd88 |
1965 | AliInfo |
ae5d5566 |
1966 | (Form("Number of ESD tracks and V0s after cleaning %d %d",nTracks,nV0s)); |
d64bd07d |
1967 | |
7f68891d |
1968 | return rc; |
d64bd07d |
1969 | } |
1970 | |
596a855f |
1971 | //_____________________________________________________________________________ |
af885e0f |
1972 | Bool_t AliReconstruction::FillESD(AliESDEvent*& esd, const TString& detectors) |
596a855f |
1973 | { |
1974 | // fill the event summary data |
1975 | |
87932dab |
1976 | AliCodeTimerAuto("") |
0f88822a |
1977 | static Int_t eventNr=0; |
596a855f |
1978 | TString detStr = detectors; |
abe0c04e |
1979 | |
b8cd5251 |
1980 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
abe0c04e |
1981 | if (!IsSelected(fgkDetectorName[iDet], detStr)) continue; |
b8cd5251 |
1982 | AliReconstructor* reconstructor = GetReconstructor(iDet); |
1983 | if (!reconstructor) continue; |
b8cd5251 |
1984 | if (!ReadESD(esd, fgkDetectorName[iDet])) { |
1985 | AliDebug(1, Form("filling ESD for %s", fgkDetectorName[iDet])); |
b26c3770 |
1986 | TTree* clustersTree = NULL; |
d76c31f4 |
1987 | if (fLoader[iDet]) { |
b26c3770 |
1988 | fLoader[iDet]->LoadRecPoints("read"); |
1989 | clustersTree = fLoader[iDet]->TreeR(); |
1990 | if (!clustersTree) { |
1991 | AliError(Form("Can't get the %s clusters tree", |
1992 | fgkDetectorName[iDet])); |
1993 | if (fStopOnError) return kFALSE; |
1994 | } |
1995 | } |
1996 | if (fRawReader && !reconstructor->HasDigitConversion()) { |
1997 | reconstructor->FillESD(fRawReader, clustersTree, esd); |
1998 | } else { |
1999 | TTree* digitsTree = NULL; |
2000 | if (fLoader[iDet]) { |
2001 | fLoader[iDet]->LoadDigits("read"); |
2002 | digitsTree = fLoader[iDet]->TreeD(); |
2003 | if (!digitsTree) { |
2004 | AliError(Form("Can't get the %s digits tree", |
2005 | fgkDetectorName[iDet])); |
2006 | if (fStopOnError) return kFALSE; |
2007 | } |
2008 | } |
2009 | reconstructor->FillESD(digitsTree, clustersTree, esd); |
2010 | if (fLoader[iDet]) fLoader[iDet]->UnloadDigits(); |
2011 | } |
d76c31f4 |
2012 | if (fLoader[iDet]) { |
b26c3770 |
2013 | fLoader[iDet]->UnloadRecPoints(); |
2014 | } |
2015 | |
b8cd5251 |
2016 | if (fCheckPointLevel > 2) WriteESD(esd, fgkDetectorName[iDet]); |
596a855f |
2017 | } |
2018 | } |
2019 | |
2020 | if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) { |
815c2b38 |
2021 | AliError(Form("the following detectors were not found: %s", |
2022 | detStr.Data())); |
596a855f |
2023 | if (fStopOnError) return kFALSE; |
2024 | } |
6efecea1 |
2025 | AliSysInfo::AddStamp(Form("FillESD%d",eventNr), 0,1, eventNr); |
0f88822a |
2026 | eventNr++; |
596a855f |
2027 | return kTRUE; |
2028 | } |
2029 | |
b647652d |
2030 | //_____________________________________________________________________________ |
af885e0f |
2031 | Bool_t AliReconstruction::FillTriggerESD(AliESDEvent*& esd) |
b647652d |
2032 | { |
2033 | // Reads the trigger decision which is |
2034 | // stored in Trigger.root file and fills |
2035 | // the corresponding esd entries |
2036 | |
87932dab |
2037 | AliCodeTimerAuto("") |
2038 | |
b647652d |
2039 | AliInfo("Filling trigger information into the ESD"); |
2040 | |
b024fd7f |
2041 | AliCentralTrigger *aCTP = NULL; |
2042 | |
b647652d |
2043 | if (fRawReader) { |
2044 | AliCTPRawStream input(fRawReader); |
2045 | if (!input.Next()) { |
61679cb5 |
2046 | AliWarning("No valid CTP (trigger) DDL raw data is found ! The trigger mask will be taken from the event header, trigger cluster mask will be empty !"); |
61cdddd5 |
2047 | ULong64_t mask = (((ULong64_t)fRawReader->GetTriggerPattern()[1]) << 32) + |
61679cb5 |
2048 | fRawReader->GetTriggerPattern()[0]; |
2049 | esd->SetTriggerMask(mask); |
2050 | esd->SetTriggerCluster(0); |
2051 | } |
2052 | else { |
2053 | esd->SetTriggerMask(input.GetClassMask()); |
2054 | esd->SetTriggerCluster(input.GetClusterMask()); |
b647652d |
2055 | } |
b024fd7f |
2056 | |
2057 | aCTP = new AliCentralTrigger(); |
2058 | TString configstr(""); |
2059 | if (!aCTP->LoadConfiguration(configstr)) { // Load CTP config from OCDB |
2060 | AliError("No trigger configuration found in OCDB! The trigger classes information will no be stored in ESD!"); |
259e35c9 |
2061 | delete aCTP; |
b024fd7f |
2062 | return kFALSE; |
2063 | } |
b647652d |
2064 | } |
2065 | else { |
2066 | AliRunLoader *runloader = AliRunLoader::GetRunLoader(); |
2067 | if (runloader) { |
2068 | if (!runloader->LoadTrigger()) { |
1ea86aa2 |
2069 | aCTP = runloader->GetTrigger(); |
b647652d |
2070 | esd->SetTriggerMask(aCTP->GetClassMask()); |
2071 | esd->SetTriggerCluster(aCTP->GetClusterMask()); |
2072 | } |
2073 | else { |
2074 | AliWarning("No trigger can be loaded! The trigger information is not stored in the ESD !"); |
2075 | return kFALSE; |
2076 | } |
2077 | } |
2078 | else { |
2079 | AliError("No run loader is available! The trigger information is not stored in the ESD !"); |
2080 | return kFALSE; |
2081 | } |
2082 | } |
2083 | |
b024fd7f |
2084 | // Now fill the trigger class names into AliESDRun object |
2085 | AliTriggerConfiguration *config = aCTP->GetConfiguration(); |
2086 | if (!config) { |
61679cb5 |
2087 | AliError("No trigger configuration has been found! The trigger classes information will not be stored in ESD!"); |
d74294be |
2088 | if (fRawReader) delete aCTP; |
b024fd7f |
2089 | return kFALSE; |
2090 | } |
2091 | |
2092 | const TObjArray& classesArray = config->GetClasses(); |
2093 | Int_t nclasses = classesArray.GetEntriesFast(); |
2094 | for( Int_t j=0; j<nclasses; j++ ) { |
2095 | AliTriggerClass* trclass = (AliTriggerClass*)classesArray.At( j ); |
2096 | Int_t trindex = (Int_t)TMath::Log2(trclass->GetMask()); |
2097 | esd->SetTriggerClass(trclass->GetName(),trindex); |
2098 | } |
2099 | |
d74294be |
2100 | if (fRawReader) delete aCTP; |
b647652d |
2101 | return kTRUE; |
2102 | } |
596a855f |
2103 | |
001397cd |
2104 | |
2105 | |
2106 | |
2107 | |
2108 | //_____________________________________________________________________________ |
af885e0f |
2109 | Bool_t AliReconstruction::FillRawEventHeaderESD(AliESDEvent*& esd) |
001397cd |
2110 | { |
2111 | // |
2112 | // Filling information from RawReader Header |
2113 | // |
2114 | |
2115 | AliInfo("Filling information from RawReader Header"); |
31fd97b2 |
2116 | esd->SetBunchCrossNumber(0); |
2117 | esd->SetOrbitNumber(0); |
9bcc1e45 |
2118 | esd->SetPeriodNumber(0); |
001397cd |
2119 | esd->SetTimeStamp(0); |
2120 | esd->SetEventType(0); |
2121 | const AliRawEventHeaderBase * eventHeader = fRawReader->GetEventHeader(); |
2122 | if (eventHeader){ |
9bcc1e45 |
2123 | |
2124 | const UInt_t *id = eventHeader->GetP("Id"); |
2125 | esd->SetBunchCrossNumber((id)[1]&0x00000fff); |
2126 | esd->SetOrbitNumber((((id)[0]<<20)&0xf00000)|(((id)[1]>>12)&0xfffff)); |
2127 | esd->SetPeriodNumber(((id)[0]>>4)&0x0fffffff); |
2128 | |
001397cd |
2129 | esd->SetTimeStamp((eventHeader->Get("Timestamp"))); |
31fd97b2 |
2130 | esd->SetEventType((eventHeader->Get("Type"))); |
001397cd |
2131 | } |
2132 | |
2133 | return kTRUE; |
2134 | } |
2135 | |
2136 | |
596a855f |
2137 | //_____________________________________________________________________________ |
2138 | Bool_t AliReconstruction::IsSelected(TString detName, TString& detectors) const |
2139 | { |
2140 | // check whether detName is contained in detectors |
2141 | // if yes, it is removed from detectors |
2142 | |
2143 | // check if all detectors are selected |
2144 | if ((detectors.CompareTo("ALL") == 0) || |
2145 | detectors.BeginsWith("ALL ") || |
2146 | detectors.EndsWith(" ALL") || |
2147 | detectors.Contains(" ALL ")) { |
2148 | detectors = "ALL"; |
2149 | return kTRUE; |
2150 | } |
2151 | |
2152 | // search for the given detector |
2153 | Bool_t result = kFALSE; |
2154 | if ((detectors.CompareTo(detName) == 0) || |
2155 | detectors.BeginsWith(detName+" ") || |
2156 | detectors.EndsWith(" "+detName) || |
2157 | detectors.Contains(" "+detName+" ")) { |
2158 | detectors.ReplaceAll(detName, ""); |
2159 | result = kTRUE; |
2160 | } |
2161 | |
2162 | // clean up the detectors string |
2163 | while (detectors.Contains(" ")) detectors.ReplaceAll(" ", " "); |
2164 | while (detectors.BeginsWith(" ")) detectors.Remove(0, 1); |
2165 | while (detectors.EndsWith(" ")) detectors.Remove(detectors.Length()-1, 1); |
2166 | |
2167 | return result; |
2168 | } |
e583c30d |
2169 | |
f08fc9f5 |
2170 | //_____________________________________________________________________________ |
2171 | Bool_t AliReconstruction::InitRunLoader() |
2172 | { |
2173 | // get or create the run loader |
2174 | |
2175 | if (gAlice) delete gAlice; |
2176 | gAlice = NULL; |
2177 | |
b26c3770 |
2178 | if (!gSystem->AccessPathName(fGAliceFileName.Data())) { // galice.root exists |
2179 | // load all base libraries to get the loader classes |
2180 | TString libs = gSystem->GetLibraries(); |
2181 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
2182 | TString detName = fgkDetectorName[iDet]; |
2183 | if (detName == "HLT") continue; |
2184 | if (libs.Contains("lib" + detName + "base.so")) continue; |
2185 | gSystem->Load("lib" + detName + "base.so"); |
2186 | } |
f08fc9f5 |
2187 | fRunLoader = AliRunLoader::Open(fGAliceFileName.Data()); |
2188 | if (!fRunLoader) { |
2189 | AliError(Form("no run loader found in file %s", fGAliceFileName.Data())); |
2190 | CleanUp(); |
2191 | return kFALSE; |
2192 | } |
325aa76f |
2193 | |
b26c3770 |
2194 | fRunLoader->CdGAFile(); |
325aa76f |
2195 | fRunLoader->LoadgAlice(); |
f08fc9f5 |
2196 | |
6cae184e |
2197 | //PH This is a temporary fix to give access to the kinematics |
2198 | //PH that is needed for the labels of ITS clusters |
f2ee4290 |
2199 | fRunLoader->LoadHeader(); |
6cae184e |
2200 | fRunLoader->LoadKinematics(); |
2201 | |
f08fc9f5 |
2202 | } else { // galice.root does not exist |
2203 | if (!fRawReader) { |
2204 | AliError(Form("the file %s does not exist", fGAliceFileName.Data())); |
2205 | CleanUp(); |
2206 | return kFALSE; |
2207 | } |
2208 | fRunLoader = AliRunLoader::Open(fGAliceFileName.Data(), |
2209 | AliConfig::GetDefaultEventFolderName(), |
2210 | "recreate"); |
2211 | if (!fRunLoader) { |
2212 | AliError(Form("could not create run loader in file %s", |
2213 | fGAliceFileName.Data())); |
2214 | CleanUp(); |
2215 | return kFALSE; |
2216 | } |
21a3aa09 |
2217 | fIsNewRunLoader = kTRUE; |
f08fc9f5 |
2218 | fRunLoader->MakeTree("E"); |
21a3aa09 |
2219 | |
973388c2 |
2220 | if (fNumberOfEventsPerFile > 0) |
2221 | fRunLoader->SetNumberOfEventsPerFile(fNumberOfEventsPerFile); |
2222 | else |
21a3aa09 |
2223 | fRunLoader->SetNumberOfEventsPerFile((UInt_t)-1); |
f08fc9f5 |
2224 | } |
2225 | |
2226 | return kTRUE; |
2227 | } |
2228 | |
c757bafd |
2229 | //_____________________________________________________________________________ |
b8cd5251 |
2230 | AliReconstructor* AliReconstruction::GetReconstructor(Int_t iDet) |
c757bafd |
2231 | { |
f08fc9f5 |
2232 | // get the reconstructor object and the loader for a detector |
c757bafd |
2233 | |
b8cd5251 |
2234 | if (fReconstructor[iDet]) return fReconstructor[iDet]; |
2235 | |
2236 | // load the reconstructor object |
2237 | TPluginManager* pluginManager = gROOT->GetPluginManager(); |
2238 | TString detName = fgkDetectorName[iDet]; |
2239 | TString recName = "Ali" + detName + "Reconstructor"; |
f0999a9a |
2240 | |
2241 | if (!fIsNewRunLoader && !fRunLoader->GetLoader(detName+"Loader") && (detName != "HLT")) return NULL; |
b8cd5251 |
2242 | |
b8cd5251 |
2243 | AliReconstructor* reconstructor = NULL; |
2244 | // first check if a plugin is defined for the reconstructor |
2245 | TPluginHandler* pluginHandler = |
2246 | pluginManager->FindHandler("AliReconstructor", detName); |
f08fc9f5 |
2247 | // if not, add a plugin for it |
2248 | if (!pluginHandler) { |
b8cd5251 |
2249 | AliDebug(1, Form("defining plugin for %s", recName.Data())); |
b26c3770 |
2250 | TString libs = gSystem->GetLibraries(); |
2251 | if (libs.Contains("lib" + detName + "base.so") || |
2252 | (gSystem->Load("lib" + detName + "base.so") >= 0)) { |
b8cd5251 |
2253 | pluginManager->AddHandler("AliReconstructor", detName, |
2254 | recName, detName + "rec", recName + "()"); |
2255 | } else { |
2256 | pluginManager->AddHandler("AliReconstructor", detName, |
2257 | recName, detName, recName + "()"); |
c757bafd |
2258 | } |
b8cd5251 |
2259 | pluginHandler = pluginManager->FindHandler("AliReconstructor", detName); |
2260 | } |
2261 | if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) { |
2262 | reconstructor = (AliReconstructor*) pluginHandler->ExecPlugin(0); |
c757bafd |
2263 | } |
b8cd5251 |
2264 | if (reconstructor) { |
2265 | TObject* obj = fOptions.FindObject(detName.Data()); |
2266 | if (obj) reconstructor->SetOption(obj->GetTitle()); |
d76c31f4 |
2267 | reconstructor->Init(); |
b8cd5251 |
2268 | fReconstructor[iDet] = reconstructor; |
2269 | } |
2270 | |
f08fc9f5 |
2271 | // get or create the loader |
2272 | if (detName != "HLT") { |
2273 | fLoader[iDet] = fRunLoader->GetLoader(detName + "Loader"); |
2274 | if (!fLoader[iDet]) { |
2275 | AliConfig::Instance() |
2276 | ->CreateDetectorFolders(fRunLoader->GetEventFolder(), |
2277 | detName, detName); |
2278 | // first check if a plugin is defined for the loader |
bb0901a4 |
2279 | pluginHandler = |
f08fc9f5 |
2280 | pluginManager->FindHandler("AliLoader", detName); |
2281 | // if not, add a plugin for it |
2282 | if (!pluginHandler) { |
2283 | TString loaderName = "Ali" + detName + "Loader"; |
2284 | AliDebug(1, Form("defining plugin for %s", loaderName.Data())); |
2285 | pluginManager->AddHandler("AliLoader", detName, |
2286 | loaderName, detName + "base", |
2287 | loaderName + "(const char*, TFolder*)"); |
2288 | pluginHandler = pluginManager->FindHandler("AliLoader", detName); |
2289 | } |
2290 | if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) { |
2291 | fLoader[iDet] = |
2292 | (AliLoader*) pluginHandler->ExecPlugin(2, detName.Data(), |
2293 | fRunLoader->GetEventFolder()); |
2294 | } |
2295 | if (!fLoader[iDet]) { // use default loader |
2296 | fLoader[iDet] = new AliLoader(detName, fRunLoader->GetEventFolder()); |
2297 | } |
2298 | if (!fLoader[iDet]) { |
2299 | AliWarning(Form("couldn't get loader for %s", detName.Data())); |
6667b602 |
2300 | if (fStopOnError) return NULL; |
f08fc9f5 |
2301 | } else { |
2302 | fRunLoader->AddLoader(fLoader[iDet]); |
2303 | fRunLoader->CdGAFile(); |
2304 | if (gFile && !gFile->IsWritable()) gFile->ReOpen("UPDATE"); |
2305 | fRunLoader->Write(0, TObject::kOverwrite); |
2306 | } |
2307 | } |
2308 | } |
2309 | |
b8cd5251 |
2310 | return reconstructor; |
c757bafd |
2311 | } |
2312 | |
2257f27e |
2313 | //_____________________________________________________________________________ |
2314 | Bool_t AliReconstruction::CreateVertexer() |
2315 | { |
2316 | // create the vertexer |
2317 | |
b8cd5251 |
2318 | fVertexer = NULL; |
2319 | AliReconstructor* itsReconstructor = GetReconstructor(0); |
59697224 |
2320 | if (itsReconstructor) { |
d76c31f4 |
2321 | fVertexer = itsReconstructor->CreateVertexer(); |
2257f27e |
2322 | } |
b8cd5251 |
2323 | if (!fVertexer) { |
815c2b38 |
2324 | AliWarning("couldn't create a vertexer for ITS"); |
2257f27e |
2325 | if (fStopOnError) return kFALSE; |
2326 | } |
2327 | |
2328 | return kTRUE; |
2329 | } |
2330 | |
24f7a148 |
2331 | //_____________________________________________________________________________ |
b8cd5251 |
2332 | Bool_t AliReconstruction::CreateTrackers(const TString& detectors) |
24f7a148 |
2333 | { |
f08fc9f5 |
2334 | // create the trackers |
24f7a148 |
2335 | |
b8cd5251 |
2336 | TString detStr = detectors; |
2337 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
2338 | if (!IsSelected(fgkDetectorName[iDet], detStr)) continue; |
2339 | AliReconstructor* reconstructor = GetReconstructor(iDet); |
2340 | if (!reconstructor) continue; |
2341 | TString detName = fgkDetectorName[iDet]; |
1f46a9ae |
2342 | if (detName == "HLT") { |
2343 | fRunHLTTracking = kTRUE; |
2344 | continue; |
2345 | } |
e66fbafb |
2346 | if (detName == "MUON") { |
2347 | fRunMuonTracking = kTRUE; |
2348 | continue; |
2349 | } |
2350 | |
f08fc9f5 |
2351 | |
d76c31f4 |
2352 | fTracker[iDet] = reconstructor->CreateTracker(); |
f08fc9f5 |
2353 | if (!fTracker[iDet] && (iDet < 7)) { |
2354 | AliWarning(Form("couldn't create a tracker for %s", detName.Data())); |
8250d5f5 |
2355 | if (fStopOnError) return kFALSE; |
2356 | } |
6efecea1 |
2357 | AliSysInfo::AddStamp(Form("LTracker%s",fgkDetectorName[iDet]), iDet,0); |
8250d5f5 |
2358 | } |
2359 | |
24f7a148 |
2360 | return kTRUE; |
2361 | } |
2362 | |
e583c30d |
2363 | //_____________________________________________________________________________ |
b26c3770 |
2364 | void AliReconstruction::CleanUp(TFile* file, TFile* fileOld) |
e583c30d |
2365 | { |
2366 | // delete trackers and the run loader and close and delete the file |
2367 | |
b8cd5251 |
2368 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
2369 | delete fReconstructor[iDet]; |
2370 | fReconstructor[iDet] = NULL; |
2371 | fLoader[iDet] = NULL; |
2372 | delete fTracker[iDet]; |
2373 | fTracker[iDet] = NULL; |
c65c502a |
2374 | // delete fQADataMaker[iDet]; |
2375 | // fQADataMaker[iDet] = NULL; |
b8cd5251 |
2376 | } |
2377 | delete fVertexer; |
2378 | fVertexer = NULL; |
21a3aa09 |
2379 | |
2380 | if (ftVertexer) delete ftVertexer; |
2381 | ftVertexer = NULL; |
795e4a22 |
2382 | |
2383 | if(!(AliCDBManager::Instance()->GetCacheFlag())) { |
2384 | delete fDiamondProfile; |
2385 | fDiamondProfile = NULL; |
43c9dae1 |
2386 | delete fDiamondProfileTPC; |
2387 | fDiamondProfileTPC = NULL; |
6b6e4472 |
2388 | delete fGRPData; |
2389 | fGRPData = NULL; |
795e4a22 |
2390 | } |
e583c30d |
2391 | |
444753c6 |
2392 | |
e583c30d |
2393 | delete fRunLoader; |
2394 | fRunLoader = NULL; |
b649205a |
2395 | delete fRawReader; |
2396 | fRawReader = NULL; |
cd0b062e |
2397 | if (fParentRawReader) delete fParentRawReader; |
2398 | fParentRawReader=NULL; |
e583c30d |
2399 | |
2400 | if (file) { |
2401 | file->Close(); |
2402 | delete file; |
2403 | } |
b26c3770 |
2404 | |
2405 | if (fileOld) { |
2406 | fileOld->Close(); |
2407 | delete fileOld; |
2408 | gSystem->Unlink("AliESDs.old.root"); |
2409 | } |
21a3aa09 |
2410 | |
e583c30d |
2411 | } |
24f7a148 |
2412 | |
24f7a148 |
2413 | //_____________________________________________________________________________ |
af885e0f |
2414 | |
2415 | Bool_t AliReconstruction::ReadESD(AliESDEvent*& esd, const char* recStep) const |
24f7a148 |
2416 | { |
2417 | // read the ESD event from a file |
2418 | |
2419 | if (!esd) return kFALSE; |
2420 | char fileName[256]; |
2421 | sprintf(fileName, "ESD_%d.%d_%s.root", |
31fd97b2 |
2422 | esd->GetRunNumber(), esd->GetEventNumberInFile(), recStep); |
24f7a148 |
2423 | if (gSystem->AccessPathName(fileName)) return kFALSE; |
2424 | |
f3a97c86 |
2425 | AliInfo(Form("reading ESD from file %s", fileName)); |
815c2b38 |
2426 | AliDebug(1, Form("reading ESD from file %s", fileName)); |
24f7a148 |
2427 | TFile* file = TFile::Open(fileName); |
2428 | if (!file || !file->IsOpen()) { |
815c2b38 |
2429 | AliError(Form("opening %s failed", fileName)); |
24f7a148 |
2430 | delete file; |
2431 | return kFALSE; |
2432 | } |
2433 | |
2434 | gROOT->cd(); |
2435 | delete esd; |
af885e0f |
2436 | esd = (AliESDEvent*) file->Get("ESD"); |
24f7a148 |
2437 | file->Close(); |
2438 | delete file; |
2439 | return kTRUE; |
af885e0f |
2440 | |
24f7a148 |
2441 | } |
2442 | |
af885e0f |
2443 | |
2444 | |
24f7a148 |
2445 | //_____________________________________________________________________________ |
af885e0f |
2446 | void AliReconstruction::WriteESD(AliESDEvent* esd, const char* recStep) const |
24f7a148 |
2447 | { |
2448 | // write the ESD event to a file |
2449 | |
2450 | if (!esd) return; |
2451 | char fileName[256]; |
2452 | sprintf(fileName, "ESD_%d.%d_%s.root", |
31fd97b2 |
2453 | esd->GetRunNumber(), esd->GetEventNumberInFile(), recStep); |
24f7a148 |
2454 | |
815c2b38 |
2455 | AliDebug(1, Form("writing ESD to file %s", fileName)); |
24f7a148 |
2456 | TFile* file = TFile::Open(fileName, "recreate"); |
2457 | if (!file || !file->IsOpen()) { |
815c2b38 |
2458 | AliError(Form("opening %s failed", fileName)); |
24f7a148 |
2459 | } else { |
2460 | esd->Write("ESD"); |
2461 | file->Close(); |
2462 | } |
2463 | delete file; |
2464 | } |
f3a97c86 |
2465 | |
2466 | |
af885e0f |
2467 | void AliReconstruction::WriteAlignmentData(AliESDEvent* esd) |
98937d93 |
2468 | { |
2469 | // Write space-points which are then used in the alignment procedures |
2470 | // For the moment only ITS, TRD and TPC |
2471 | |
2472 | // Load TOF clusters |
d528ee75 |
2473 | if (fTracker[3]){ |
2474 | fLoader[3]->LoadRecPoints("read"); |
2475 | TTree* tree = fLoader[3]->TreeR(); |
2476 | if (!tree) { |
2477 | AliError(Form("Can't get the %s cluster tree", fgkDetectorName[3])); |
2478 | return; |
2479 | } |
2480 | fTracker[3]->LoadClusters(tree); |
98937d93 |
2481 | } |
98937d93 |
2482 | Int_t ntracks = esd->GetNumberOfTracks(); |
2483 | for (Int_t itrack = 0; itrack < ntracks; itrack++) |
2484 | { |
2485 | AliESDtrack *track = esd->GetTrack(itrack); |
2486 | Int_t nsp = 0; |
ef7253ac |
2487 | Int_t idx[200]; |
98937d93 |
2488 | for (Int_t iDet = 3; iDet >= 0; iDet--) |
2489 | nsp += track->GetNcls(iDet); |
2490 | if (nsp) { |
2491 | AliTrackPointArray *sp = new AliTrackPointArray(nsp); |
2492 | track->SetTrackPointArray(sp); |
2493 | Int_t isptrack = 0; |
2494 | for (Int_t iDet = 3; iDet >= 0; iDet--) { |
2495 | AliTracker *tracker = fTracker[iDet]; |
2496 | if (!tracker) continue; |
2497 | Int_t nspdet = track->GetNcls(iDet); |
98937d93 |
2498 | if (nspdet <= 0) continue; |
2499 | track->GetClusters(iDet,idx); |
2500 | AliTrackPoint p; |
2501 | Int_t isp = 0; |
2502 | Int_t isp2 = 0; |
4ed6fb1c |
2503 | while (isp2 < nspdet) { |
f3c6e4c9 |
2504 | Bool_t isvalid=kTRUE; |
2505 | |
2506 | Int_t index=idx[isp++]; |
2507 | if (index < 0) continue; |
2508 | |
c12b6e44 |
2509 | TString dets = fgkDetectorName[iDet]; |
2510 | if ((fUseTrackingErrorsForAlignment.CompareTo(dets) == 0) || |
2511 | fUseTrackingErrorsForAlignment.BeginsWith(dets+" ") || |
2512 | fUseTrackingErrorsForAlignment.EndsWith(" "+dets) || |
2513 | fUseTrackingErrorsForAlignment.Contains(" "+dets+" ")) { |
f3c6e4c9 |
2514 | isvalid = tracker->GetTrackPointTrackingError(index,p,track); |
48ce48d1 |
2515 | } else { |
f3c6e4c9 |
2516 | isvalid = tracker->GetTrackPoint(index,p); |
48ce48d1 |
2517 | } |
2518 | isp2++; |
98937d93 |
2519 | if (!isvalid) continue; |
f3c6e4c9 |
2520 | sp->AddPoint(isptrack,&p); isptrack++; |
98937d93 |
2521 | } |
98937d93 |
2522 | } |
2523 | } |
2524 | } |
d528ee75 |
2525 | if (fTracker[3]){ |
2526 | fTracker[3]->UnloadClusters(); |
2527 | fLoader[3]->UnloadRecPoints(); |
2528 | } |
98937d93 |
2529 | } |
2e3550da |
2530 | |
2531 | //_____________________________________________________________________________ |
af885e0f |
2532 | void AliReconstruction::FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd) |
2e3550da |
2533 | { |
2534 | // The method reads the raw-data error log |
2535 | // accumulated within the rawReader. |
2536 | // It extracts the raw-data errors related to |
2537 | // the current event and stores them into |
2538 | // a TClonesArray inside the esd object. |
2539 | |
2540 | if (!fRawReader) return; |
2541 | |
2542 | for(Int_t i = 0; i < fRawReader->GetNumberOfErrorLogs(); i++) { |
2543 | |
2544 | AliRawDataErrorLog *log = fRawReader->GetErrorLog(i); |
2545 | if (!log) continue; |
2546 | if (iEvent != log->GetEventNumber()) continue; |
2547 | |
2548 | esd->AddRawDataErrorLog(log); |
2549 | } |
2550 | |
2551 | } |
46698ae4 |
2552 | |
605cb8bb |
2553 | TNamed* AliReconstruction::CopyFileToTNamed(TString fPath,TString pName){ |
b545009a |
2554 | // Dump a file content into a char in TNamed |
46698ae4 |
2555 | ifstream in; |
2556 | in.open(fPath.Data(),ios::in | ios::binary|ios::ate); |
2557 | Int_t kBytes = (Int_t)in.tellg(); |
2558 | printf("Size: %d \n",kBytes); |
2559 | TNamed *fn = 0; |
2560 | if(in.good()){ |
2561 | char* memblock = new char [kBytes]; |
2562 | in.seekg (0, ios::beg); |
2563 | in.read (memblock, kBytes); |
2564 | in.close(); |
2565 | TString fData(memblock,kBytes); |
605cb8bb |
2566 | fn = new TNamed(pName,fData); |
46698ae4 |
2567 | printf("fData Size: %d \n",fData.Sizeof()); |
605cb8bb |
2568 | printf("pName Size: %d \n",pName.Sizeof()); |
46698ae4 |
2569 | printf("fn Size: %d \n",fn->Sizeof()); |
2570 | delete[] memblock; |
2571 | } |
2572 | else{ |
2573 | AliInfo(Form("Could not Open %s\n",fPath.Data())); |
2574 | } |
2575 | |
2576 | return fn; |
2577 | } |
2578 | |
605cb8bb |
2579 | void AliReconstruction::TNamedToFile(TTree* fTree, TString pName){ |
46698ae4 |
2580 | // This is not really needed in AliReconstruction at the moment |
2581 | // but can serve as a template |
2582 | |
2583 | TList *fList = fTree->GetUserInfo(); |
605cb8bb |
2584 | TNamed *fn = (TNamed*)fList->FindObject(pName.Data()); |
46698ae4 |
2585 | printf("fn Size: %d \n",fn->Sizeof()); |
2586 | |
605cb8bb |
2587 | TString fTmp(fn->GetName()); // to be 100% sure in principle pName also works |
46698ae4 |
2588 | const char* cdata = fn->GetTitle(); |
2589 | printf("fTmp Size %d\n",fTmp.Sizeof()); |
2590 | |
2591 | int size = fn->Sizeof()-fTmp.Sizeof()-sizeof(UChar_t)-sizeof(Int_t); // see dfinition of TString::SizeOf()... |
2592 | printf("calculated size %d\n",size); |
605cb8bb |
2593 | ofstream out(pName.Data(),ios::out | ios::binary); |
46698ae4 |
2594 | out.write(cdata,size); |
2595 | out.close(); |
2596 | |
2597 | } |
6efecea1 |
2598 | |
7e963665 |
2599 | //_____________________________________________________________________________ |
04236e67 |
2600 | AliQADataMakerRec * AliReconstruction::GetQADataMaker(Int_t iDet) |
7e963665 |
2601 | { |
2602 | // get the quality assurance data maker object and the loader for a detector |
6efecea1 |
2603 | |
7e963665 |
2604 | if (fQADataMaker[iDet]) |
2605 | return fQADataMaker[iDet]; |
2606 | |
04236e67 |
2607 | AliQADataMakerRec * qadm = NULL; |
2608 | if (iDet == fgkNDetectors) { //Global QA |
2609 | qadm = new AliGlobalQADataMaker(); |
aa3c69a9 |
2610 | fQADataMaker[iDet] = qadm; |
2611 | return qadm; |
2612 | } |
2613 | |
7e963665 |
2614 | // load the QA data maker object |
2615 | TPluginManager* pluginManager = gROOT->GetPluginManager(); |
2616 | TString detName = fgkDetectorName[iDet]; |
04236e67 |
2617 | TString qadmName = "Ali" + detName + "QADataMakerRec"; |
f0999a9a |
2618 | if (!fIsNewRunLoader && !fRunLoader->GetLoader(detName+"Loader") && (detName != "HLT")) |
7e963665 |
2619 | return NULL; |
2620 | |
7e963665 |
2621 | // first check if a plugin is defined for the quality assurance data maker |
04236e67 |
2622 | TPluginHandler* pluginHandler = pluginManager->FindHandler("AliQADataMakerRec", detName); |
7e963665 |
2623 | // if not, add a plugin for it |
2624 | if (!pluginHandler) { |
2625 | AliDebug(1, Form("defining plugin for %s", qadmName.Data())); |
2626 | TString libs = gSystem->GetLibraries(); |
2627 | if (libs.Contains("lib" + detName + "base.so") || |
2628 | (gSystem->Load("lib" + detName + "base.so") >= 0)) { |
04236e67 |
2629 | pluginManager->AddHandler("AliQADataMakerRec", detName, |
7e963665 |
2630 | qadmName, detName + "qadm", qadmName + "()"); |
2631 | } else { |
04236e67 |
2632 | pluginManager->AddHandler("AliQADataMakerRec", detName, |
7e963665 |
2633 | qadmName, detName, qadmName + "()"); |
2634 | } |
04236e67 |
2635 | pluginHandler = pluginManager->FindHandler("AliQADataMakerRec", detName); |
7e963665 |
2636 | } |
2637 | if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) { |
04236e67 |
2638 | qadm = (AliQADataMakerRec *) pluginHandler->ExecPlugin(0); |
7e963665 |
2639 | } |
aa3c69a9 |
2640 | |
2641 | fQADataMaker[iDet] = qadm; |
7e963665 |
2642 | |
2643 | return qadm; |
2644 | } |
46698ae4 |
2645 | |
a5fa6165 |
2646 | //_____________________________________________________________________________ |
ce43afbe |
2647 | Bool_t AliReconstruction::RunQA(AliESDEvent *& esd) |
7e963665 |
2648 | { |
2649 | // run the Quality Assurance data producer |
2650 | |
2651 | AliCodeTimerAuto("") |
ce43afbe |
2652 | TString detStr = fQADetectors ; |
7e963665 |
2653 | for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
2654 | if (!IsSelected(fgkDetectorName[iDet], detStr)) |
2655 | continue; |
04236e67 |
2656 | AliQADataMakerRec * qadm = GetQADataMaker(iDet); |
7e963665 |
2657 | if (!qadm) |
2658 | continue; |
2659 | AliCodeTimerStart(Form("running quality assurance data maker for %s", fgkDetectorName[iDet])); |
2660 | AliInfo(Form("running quality assurance data maker for %s", fgkDetectorName[iDet])); |
2661 | |
ce43afbe |
2662 | if (fQATasks.Contains(Form("%d", AliQA::kESDS))) { |
2663 | qadm->Exec(AliQA::kESDS, esd) ; |
2664 | qadm->Increment() ; |
2665 | } |
7e963665 |
2666 | AliCodeTimerStop(Form("running quality assurance data maker for %s", fgkDetectorName[iDet])); |
2667 | } |
2668 | if ((detStr.CompareTo("ALL") != 0) && !detStr.IsNull()) { |
2669 | AliError(Form("the following detectors were not found: %s", |
2670 | detStr.Data())); |
2671 | if (fStopOnError) |
2672 | return kFALSE; |
2673 | } |
2674 | |
2675 | return kTRUE; |
2676 | |
2677 | } |
8661738e |
2678 | |
2679 | //_____________________________________________________________________________ |
2680 | void AliReconstruction::CheckQA() |
2681 | { |
2682 | // check the QA of SIM for this run and remove the detectors |
2683 | // with status Fatal |
2684 | |
abe0c04e |
2685 | TString newRunLocalReconstruction ; |
2686 | TString newRunTracking ; |
2687 | TString newFillESD ; |
2688 | |
8661738e |
2689 | for (Int_t iDet = 0; iDet < AliQA::kNDET; iDet++) { |
2690 | TString detName(AliQA::GetDetName(iDet)) ; |
96d67a8d |
2691 | AliQA * qa = AliQA::Instance(AliQA::DETECTORINDEX_t(iDet)) ; |
2692 | if ( qa->IsSet(AliQA::DETECTORINDEX_t(iDet), AliQA::kSIM, AliQA::kFATAL)) { |
8661738e |
2693 | AliInfo(Form("QA status for %s in Hits and/or SDIGITS and/or Digits was Fatal; No reconstruction performed", detName.Data())) ; |
abe0c04e |
2694 | } else { |
2695 | if ( fRunLocalReconstruction.Contains(AliQA::GetDetName(iDet)) || |
2696 | fRunLocalReconstruction.Contains("ALL") ) { |
2697 | newRunLocalReconstruction += detName ; |
2698 | newRunLocalReconstruction += " " ; |
2699 | } |
2700 | if ( fRunTracking.Contains(AliQA::GetDetName(iDet)) || |
2701 | fRunTracking.Contains("ALL") ) { |
2702 | newRunTracking += detName ; |
2703 | newRunTracking += " " ; |
2704 | } |
2705 | if ( fFillESD.Contains(AliQA::GetDetName(iDet)) || |
2706 | fFillESD.Contains("ALL") ) { |
2707 | newFillESD += detName ; |
2708 | newFillESD += " " ; |
8661738e |
2709 | } |
2710 | } |
2711 | } |
abe0c04e |
2712 | fRunLocalReconstruction = newRunLocalReconstruction ; |
2713 | fRunTracking = newRunTracking ; |
2714 | fFillESD = newFillESD ; |
a5fa6165 |
2715 | } |
5b188f2f |
2716 | |
2717 | //_____________________________________________________________________________ |
2718 | Int_t AliReconstruction::GetDetIndex(const char* detector) |
2719 | { |
2720 | // return the detector index corresponding to detector |
2721 | Int_t index = -1 ; |
2722 | for (index = 0; index < fgkNDetectors ; index++) { |
2723 | if ( strcmp(detector, fgkDetectorName[index]) == 0 ) |
2724 | break ; |
2725 | } |
2726 | return index ; |
2727 | } |
7167ae53 |
2728 | //_____________________________________________________________________________ |
2729 | Bool_t AliReconstruction::FinishPlaneEff() { |
2730 | // |
2731 | // Here execute all the necessary operationis, at the end of the tracking phase, |
d7f8fd68 |
2732 | // in case that evaluation of PlaneEfficiencies was required for some detector. |
2733 | // E.g., write into a DataBase file the PlaneEfficiency which have been evaluated. |
7167ae53 |
2734 | // |
2735 | // This Preliminary version works only FOR ITS !!!!! |
2736 | // other detectors (TOF,TRD, etc. have to develop their specific codes) |
2737 | // |
2738 | // Input: none |
d7f8fd68 |
2739 | // Return: kTRUE if all operations have been done properly, kFALSE otherwise |
7167ae53 |
2740 | // |
2741 | Bool_t ret=kFALSE; |
2742 | //for (Int_t iDet = 0; iDet < fgkNDetectors; iDet++) { |
d7f8fd68 |
2743 | for (Int_t iDet = 0; iDet < 1; iDet++) { // for the time being only ITS |
7167ae53 |
2744 | //if (!IsSelected(fgkDetectorName[iDet], detStr)) continue; |
5fbd4fd6 |
2745 | if(fTracker[iDet]) { |
d7f8fd68 |
2746 | AliPlaneEff *planeeff=fTracker[iDet]->GetPlaneEff(); |
2747 | TString name=planeeff->GetName(); |
2748 | name+=".root"; |
2749 | TFile* pefile = TFile::Open(name, "RECREATE"); |
2750 | ret=(Bool_t)planeeff->Write(); |
2751 | pefile->Close(); |
5fbd4fd6 |
2752 | if(planeeff->GetCreateHistos()) { |
d7f8fd68 |
2753 | TString hname=planeeff->GetName(); |
2754 | hname+="Histo.root"; |
2755 | ret*=planeeff->WriteHistosToFile(hname,"RECREATE"); |
5fbd4fd6 |
2756 | } |
2757 | } |
7167ae53 |
2758 | } |
2759 | return ret; |
2760 | } |
2761 | //_____________________________________________________________________________ |
2762 | Bool_t AliReconstruction::InitPlaneEff() { |
2763 | // |
2764 | // Here execute all the necessary operations, before of the tracking phase, |
2765 | // for the evaluation of PlaneEfficiencies, in case required for some detectors. |
2766 | // E.g., read from a DataBase file a first evaluation of the PlaneEfficiency |
2767 | // which should be updated/recalculated. |
2768 | // |
2769 | // This Preliminary version will work only FOR ITS !!!!! |
2770 | // other detectors (TOF,TRD, etc. have to develop their specific codes) |
2771 | // |
2772 | // Input: none |
2773 | // Return: kTRUE if all operations have been done properly, kFALSE otherwise |
2774 | // |
2775 | AliWarning(Form("Implementation of this method not yet done !! Method return kTRUE")); |
2776 | return kTRUE; |
7520312d |
2777 | } |
14dd053c |
2778 | |
2779 | //_____________________________________________________________________________ |
2780 | Bool_t AliReconstruction::InitAliEVE() |
2781 | { |
2782 | // This method should be called only in case |
2783 | // AliReconstruction is run |
2784 | // within the alieve environment. |
2785 | // It will initialize AliEVE in a way |
2786 | // so that it can visualize event processed |
2787 | // by AliReconstruction. |
2788 | // The return flag shows whenever the |
2789 | // AliEVE initialization was successful or not. |
2790 | |
2791 | TString macroStr; |
2792 | macroStr.Form("%s/EVE/macros/alieve_online.C",gSystem->ExpandPathName("$ALICE_ROOT")); |
2793 | AliInfo(Form("Loading AliEVE macro: %s",macroStr.Data())); |
2794 | if (gROOT->LoadMacro(macroStr.Data()) != 0) return kFALSE; |
2795 | |
de33999e |
2796 | gROOT->ProcessLine("if (!gAliEveEvent) {gAliEveEvent = new AliEveEventManager();gAliEveEvent->SetAutoLoad(kTRUE);gAliEveEvent->AddNewEventCommand(\"alieve_online_on_new_event()\");gEve->AddEvent(gAliEveEvent);};"); |
2797 | gROOT->ProcessLine("alieve_online_init()"); |
14dd053c |
2798 | |
2799 | return kTRUE; |
2800 | } |
2801 | |
2802 | //_____________________________________________________________________________ |
2803 | void AliReconstruction::RunAliEVE() |
2804 | { |
2805 | // Runs AliEVE visualisation of |
2806 | // the current event. |
2807 | // Should be executed only after |
2808 | // successful initialization of AliEVE. |
2809 | |
2810 | AliInfo("Running AliEVE..."); |
2811 | gROOT->ProcessLine(Form("gAliEveEvent->SetEvent((AliRunLoader*)%p,(AliRawReader*)%p,(AliESDEvent*)%p);",fRunLoader,fRawReader,fesd)); |
2812 | gROOT->ProcessLine("gAliEveEvent->StartStopAutoLoadTimer();"); |
2813 | gSystem->Run(); |
2814 | } |
ce43afbe |
2815 | |
2816 | //_____________________________________________________________________________ |
2817 | Bool_t AliReconstruction::SetRunQA(TString detAndAction) |
2818 | { |
2819 | // Allows to run QA for a selected set of detectors |
2820 | // and a selected set of tasks among RAWS, RECPOINTS and ESDS |
2821 | // all selected detectors run the same selected tasks |
2822 | |
2823 | if (!detAndAction.Contains(":")) { |
2824 | AliError( Form("%s is a wrong syntax, use \"DetectorList:ActionList\" \n", detAndAction.Data()) ) ; |
2825 | fRunQA = kFALSE ; |
2826 | return kFALSE ; |
2827 | } |
2828 | Int_t colon = detAndAction.Index(":") ; |
2829 | fQADetectors = detAndAction(0, colon) ; |
2830 | if (fQADetectors.Contains("ALL") ) |
2831 | fQADetectors = fFillESD ; |
2832 | fQATasks = detAndAction(colon+1, detAndAction.Sizeof() ) ; |
2833 | if (fQATasks.Contains("ALL") ) { |
2834 | fQATasks = Form("%d %d %d", AliQA::kRAWS, AliQA::kRECPOINTS, AliQA::kESDS) ; |
2835 | } else { |
2836 | fQATasks.ToUpper() ; |
2837 | TString tempo("") ; |
2838 | if ( fQATasks.Contains("RAW") ) |
2839 | tempo = Form("%d ", AliQA::kRAWS) ; |
2840 | if ( fQATasks.Contains("RECPOINT") ) |
2841 | tempo += Form("%d ", AliQA::kRECPOINTS) ; |
2842 | if ( fQATasks.Contains("ESD") ) |
2843 | tempo += Form("%d ", AliQA::kESDS) ; |
2844 | fQATasks = tempo ; |
2845 | if (fQATasks.IsNull()) { |
2846 | AliInfo("No QA requested\n") ; |
2847 | fRunQA = kFALSE ; |
2848 | return kTRUE ; |
2849 | } |
2850 | } |
2851 | TString tempo(fQATasks) ; |
2852 | tempo.ReplaceAll(Form("%d", AliQA::kRAWS), AliQA::GetTaskName(AliQA::kRAWS)) ; |
2853 | tempo.ReplaceAll(Form("%d", AliQA::kRECPOINTS), AliQA::GetTaskName(AliQA::kRECPOINTS)) ; |
2854 | tempo.ReplaceAll(Form("%d", AliQA::kESDS), AliQA::GetTaskName(AliQA::kESDS)) ; |
2855 | AliInfo( Form("QA will be done on \"%s\" for \"%s\"\n", fQADetectors.Data(), tempo.Data()) ) ; |
2856 | fRunQA = kTRUE ; |
2857 | return kTRUE; |
2858 | } |
2859 | |
2860 | |