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