]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliReconstruction.h
Update on caloCluster. (Gustavo)
[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;
21a3aa09 32class AliESDfriend;
33class AliVertexerTracks;
e583c30d 34class TFile;
46698ae4 35class TTree;
444753c6 36class TList;
04236e67 37class AliQADataMakerRec;
596a855f 38
39class AliReconstruction: public TNamed {
40public:
e583c30d 41 AliReconstruction(const char* gAliceFilename = "galice.root",
42 const char* name = "AliReconstruction",
596a855f 43 const char* title = "reconstruction");
44 AliReconstruction(const AliReconstruction& rec);
45 AliReconstruction& operator = (const AliReconstruction& rec);
46 virtual ~AliReconstruction();
47
48 void SetGAliceFile(const char* fileName);
b58710ef 49 void SetInput(const char* input);
21a3aa09 50
35042093 51 void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
b26c3770 52 void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1)
53 {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
973388c2 54 void SetNumberOfEventsPerFile(UInt_t nEvents)
55 {fNumberOfEventsPerFile = nEvents;};
efd2085e 56 void SetOption(const char* detector, const char* option);
596a855f 57
59697224 58 void SetRunLocalReconstruction(const char* detectors) {
59 fRunLocalReconstruction = detectors;};
b8cd5251 60 void SetRunTracking(const char* detectors) {
61 fRunTracking = detectors;};
596a855f 62 void SetFillESD(const char* detectors) {fFillESD = detectors;};
b8cd5251 63 void SetRunReconstruction(const char* detectors) {
64 SetRunLocalReconstruction(detectors);
65 SetRunTracking(detectors);
66 SetFillESD(detectors);};
48ce48d1 67 void SetUseTrackingErrorsForAlignment(const char* detectors)
68 {fUseTrackingErrorsForAlignment = detectors;};
6bae477a 69 void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;};
70 void SetLoadAlignData(const char* detectors)
71 {fLoadAlignData = detectors;};
46698ae4 72 void SetESDParLocation(const char *c){fESDPar = c;}
73 TNamed *CopyFileToTNamed(TString fPath,TString fName);
74 void TNamedToFile(TTree* fTree, TString fName);
c84a5e9e 75
1d99986f 76 //*** Global reconstruction flag setters
77 void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;}
78 void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;};
a84e2607 79 void SetRunVertexFinderTracks(Bool_t flag=kTRUE) {fRunVertexFinderTracks=flag;};
1d99986f 80 void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;};
d1683eef 81 void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;};
82 void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;};
1d99986f 83 void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
84 void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
85 void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
a7807689 86 void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;}
b647652d 87 void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
9178838a 88 void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
43c9dae1 89 void SetDiamondProfileTPC(AliESDVertex *dp) {fDiamondProfileTPC=dp;}
87317a47 90 void SetMeanVertexConstraint(Bool_t flag=kTRUE){fMeanVertexConstraint=flag;}
1d99986f 91
7f68891d 92 void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
cc9e123e 93 void SetUseHLTData(const char* detectors){fUseHLTData=detectors;}
a023d8d8 94 void SetV0DCAmax(Float_t d) {fV0DCAmax=d;}
95 void SetV0CsPmin(Float_t d) {fV0CsPmin=d;}
7f68891d 96 void SetDmax(Float_t d) {fDmax=d;}
97 void SetZmax(Float_t z) {fZmax=z;}
a023d8d8 98 Float_t GetV0DCAmax() const {return fV0DCAmax;}
99 Float_t GetV0CsPmin() const {return fV0CsPmin;}
7f68891d 100 Float_t GetDmax() const {return fDmax;}
101 Float_t GetZmax() const {return fZmax;}
102
24f7a148 103 void SetCheckPointLevel(Int_t checkPointLevel)
104 {fCheckPointLevel = checkPointLevel;}
795e4a22 105
024cf675 106 // CDB storage activation
024cf675 107 void SetDefaultStorage(const char* uri);
c3a7b59a 108 void SetSpecificStorage(const char* calibType, const char* uri);
24f7a148 109
6bae477a 110 Bool_t MisalignGeometry(const TString& detectors);
111
112 void SetAlignObjArray(TObjArray *array)
113 {fAlignObjArray = array;
114 fLoadAlignFromCDB = kFALSE;}
6bae477a 115
b58710ef 116 virtual Bool_t InitRun(const char* input);
21a3aa09 117 virtual Bool_t RunEvent(Int_t iEvent);
21a3aa09 118 virtual Bool_t FinishRun();
119 virtual Bool_t Run(const char* input = NULL);
596a855f 120
a5fa6165 121 // Quality Assurance
7e963665 122 virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd);
123 void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; }
aa3c69a9 124 void SetRunQA(Bool_t flag=kTRUE) {fRunQA = flag ;}
125 void SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;}
126 void SetInLoopQA(Bool_t flag=kTRUE) {fInLoopQA = flag;}
98937d93 127
7167ae53 128 // Plane Efficiency Evaluation
129 void SetRunPlaneEff(Bool_t flag=kFALSE) {fRunPlaneEff = flag;}
130
596a855f 131private:
795e4a22 132 void InitCDB();
133 void SetCDBLock();
134 Bool_t SetRunNumberFromData();
59697224 135 Bool_t RunLocalReconstruction(const TString& detectors);
b26c3770 136 Bool_t RunLocalEventReconstruction(const TString& detectors);
af885e0f 137 Bool_t RunVertexFinder(AliESDEvent*& esd);
138 Bool_t RunHLTTracking(AliESDEvent*& esd);
139 Bool_t RunMuonTracking(AliESDEvent*& esd);
140 Bool_t RunTracking(AliESDEvent*& esd);
d64bd07d 141 Bool_t CleanESD(AliESDEvent *esd);
af885e0f 142 Bool_t FillESD(AliESDEvent*& esd, const TString& detectors);
143 Bool_t FillTriggerESD(AliESDEvent*& esd);
144 Bool_t FillRawEventHeaderESD(AliESDEvent*& esd);
596a855f 145
e583c30d 146 Bool_t IsSelected(TString detName, TString& detectors) const;
f08fc9f5 147 Bool_t InitRunLoader();
b8cd5251 148 AliReconstructor* GetReconstructor(Int_t iDet);
2257f27e 149 Bool_t CreateVertexer();
b8cd5251 150 Bool_t CreateTrackers(const TString& detectors);
b26c3770 151 void CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
e583c30d 152
af885e0f 153 Bool_t ReadESD(AliESDEvent*& esd, const char* recStep) const;
154 void WriteESD(AliESDEvent* esd, const char* recStep) const;
24f7a148 155
48c83a1c 156 //==========================================//
af885e0f 157 void WriteAlignmentData(AliESDEvent* esd);
f3a97c86 158
af885e0f 159 void FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
f3a97c86 160
a5fa6165 161 //Quality Assurance
5b188f2f 162 Int_t GetDetIndex(const char * detector);
04236e67 163 AliQADataMakerRec* GetQADataMaker(Int_t iDet);
7e963665 164 const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
8661738e 165 void CheckQA() ;
a5fa6165 166
7167ae53 167 // Plane Efficiency evaluation
168 Bool_t FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation
169 Bool_t InitPlaneEff(); // initialize what is needed for Plane Eff. evaluation
170
1d99986f 171 //*** Global reconstruction flags *******************
c84a5e9e 172 Bool_t fUniformField; // uniform field tracking flag
2257f27e 173 Bool_t fRunVertexFinder; // run the vertex finder
a84e2607 174 Bool_t fRunVertexFinderTracks; // run the vertex finder with tracks
1f46a9ae 175 Bool_t fRunHLTTracking; // run the HLT tracking
d1683eef 176 Bool_t fRunMuonTracking; // run the HLT tracking
177 Bool_t fRunV0Finder; // run the ESD V0 finder
178 Bool_t fRunCascadeFinder; // run the ESD cascade finder
1d99986f 179 Bool_t fStopOnError; // stop or continue on errors
180 Bool_t fWriteAlignmentData; // write track space-points flag
181 Bool_t fWriteESDfriend; // write ESD friend flag
a7807689 182 Bool_t fWriteAOD; // write AOD flag
b647652d 183 Bool_t fFillTriggerESD; // fill trigger info into ESD
1d99986f 184
7f68891d 185 //*** Clean ESD flag and parameters *******************
186 Bool_t fCleanESD; // clean ESD flag
a023d8d8 187 Float_t fV0DCAmax; // max. allowed DCA between V0 daugthers
188 Float_t fV0CsPmin; // min. allowed cosine of V0 pointing angle
7f68891d 189 Float_t fDmax; // max. allowed transverse impact parameter
190 Float_t fZmax; // max. allowed longitudinal impact parameter
191
1d99986f 192 TString fRunLocalReconstruction; // run the local reconstruction for these detectors
b8cd5251 193 TString fRunTracking; // run the tracking for these detectors
596a855f 194 TString fFillESD; // fill ESD for these detectors
48ce48d1 195 TString fUseTrackingErrorsForAlignment; // for these detectors
596a855f 196 TString fGAliceFileName; // name of the galice file
b649205a 197 TString fInput; // name of input file or directory
35042093 198 TString fEquipIdMap; // name of file with equipment id map
b26c3770 199 Int_t fFirstEvent; // index of first event to be reconstr.
200 Int_t fLastEvent; // index of last event to be reconstr.
973388c2 201 UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
24f7a148 202 Int_t fCheckPointLevel; // level of ESD check points
b8cd5251 203 TObjArray fOptions; // options for reconstructor objects
6bae477a 204 Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not
205 TString fLoadAlignData; // Load alignment data from CDB for these detectors
46698ae4 206 TString fESDPar; // String where the esd.par is stored, will be attached to the tree
cc9e123e 207 TString fUseHLTData; // Detectors for which the HLT data is used as input
596a855f 208
209 AliRunLoader* fRunLoader; //! current run loader object
b649205a 210 AliRawReader* fRawReader; //! current raw data reader
cc9e123e 211 AliRawReader* fParentRawReader; //! parent raw data reader in case of AliRawReaderHLT
596a855f 212
482070f2 213 static const Int_t fgkNDetectors = 15; //! number of detectors
c757bafd 214 static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
b8cd5251 215 AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects
216 AliLoader* fLoader[fgkNDetectors]; //! detector loaders
217 AliVertexer* fVertexer; //! vertexer for ITS
218 AliTracker* fTracker[fgkNDetectors]; //! trackers
9178838a 219 AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks
43c9dae1 220 AliESDVertex* fDiamondProfileTPC; // (x,y) diamond profile from TPC for AliVertexerTracks
87317a47 221 Bool_t fMeanVertexConstraint; // use fDiamondProfile in AliVertexerTracks
59697224 222
444753c6 223 TList* fGRPList; // TList from the GRP/GRP/Data CDB folder
224
6bae477a 225 TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry
98937d93 226
024cf675 227 TString fCDBUri; // Uri of the default CDB storage
ec92bee0 228 TObjArray fSpecCDBUri; // Array with detector specific CDB storages
795e4a22 229 Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized
230 Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader
024cf675 231
a5fa6165 232 //Quality Assurance
04236e67 233 AliQADataMakerRec *fQADataMaker[fgkNDetectors+1]; //! array of QA data makers
234 Int_t fQACycles[ fgkNDetectors];// # events over which QA data are accumulated
235 Bool_t fRunQA ; // Run QA flag
236 Bool_t fRunGlobalQA; // Run global QA flag
237 Bool_t fInLoopQA; // In-loop QA flag
e4a998ed 238 Bool_t fSameQACycle; //! open a vew QA data file or not
7167ae53 239 // Plane Efficiency Evaluation
240 Bool_t fRunPlaneEff ; // Evaluate Plane Efficiency
a5fa6165 241
21a3aa09 242 // New members needed in order to split Run method
243 // into InitRun,RunEvent,FinishRun methods
244 AliESDEvent* fesd; //! Pointer to the ESD event object
245 AliESDEvent* fhltesd; //! Pointer to the HLT ESD event object
246 AliESDfriend* fesdf; //! Pointer to the ESD friend object
247 TFile* ffile; //! Pointer to the ESD file
248 TTree* ftree; //! Pointer to the ESD tree
249 TTree* fhlttree; //! Pointer to the HLT ESD tree
250 TFile* ffileOld; //! Pointer to the previous ESD file
251 TTree* ftreeOld; //! Pointer to the previous ESD tree
252 TTree* fhlttreeOld; //! Pointer to the previous HLT ESD tree
253 AliVertexerTracks* ftVertexer; //! Pointer to the vertexer based on ESD tracks
254 Bool_t fIsNewRunLoader; // galice.root created from scratch (real raw data case)
255
256 ClassDef(AliReconstruction, 22) // class for running the reconstruction
596a855f 257};
258
259#endif