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