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