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 */
8 ///////////////////////////////////////////////////////////////////////////////
10 // class for running the reconstruction //
11 // Clusters and tracks are created for all detectors and all events by //
14 // AliReconstruction rec; //
17 ///////////////////////////////////////////////////////////////////////////////
22 #include <TObjArray.h>
24 class AliReconstructor;
35 class AliQADataMakerRec;
37 class AliReconstruction: public TNamed {
39 AliReconstruction(const char* gAliceFilename = "galice.root",
40 const char* name = "AliReconstruction",
41 const char* title = "reconstruction");
42 AliReconstruction(const AliReconstruction& rec);
43 AliReconstruction& operator = (const AliReconstruction& rec);
44 virtual ~AliReconstruction();
46 void SetGAliceFile(const char* fileName);
47 void SetInput(const char* input) {fInput = input;};
48 void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
49 void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1)
50 {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
51 void SetNumberOfEventsPerFile(UInt_t nEvents)
52 {fNumberOfEventsPerFile = nEvents;};
53 void SetOption(const char* detector, const char* option);
55 void SetRunLocalReconstruction(const char* detectors) {
56 fRunLocalReconstruction = detectors;};
57 void SetRunTracking(const char* detectors) {
58 fRunTracking = detectors;};
59 void SetFillESD(const char* detectors) {fFillESD = detectors;};
60 void SetRunReconstruction(const char* detectors) {
61 SetRunLocalReconstruction(detectors);
62 SetRunTracking(detectors);
63 SetFillESD(detectors);};
64 void SetUseTrackingErrorsForAlignment(const char* detectors)
65 {fUseTrackingErrorsForAlignment = detectors;};
66 void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;};
67 void SetLoadAlignData(const char* detectors)
68 {fLoadAlignData = detectors;};
69 void SetESDParLocation(const char *c){fESDPar = c;}
70 TNamed *CopyFileToTNamed(TString fPath,TString fName);
71 void TNamedToFile(TTree* fTree, TString fName);
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 SetRunVertexFinderTracks(Bool_t flag=kTRUE) {fRunVertexFinderTracks=flag;};
77 void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;};
78 void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;};
79 void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;};
80 void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
81 void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
82 void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
83 void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;}
84 void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
85 void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
86 void SetDiamondProfileTPC(AliESDVertex *dp) {fDiamondProfileTPC=dp;}
87 void SetMeanVertexConstraint(Bool_t flag=kTRUE){fMeanVertexConstraint=flag;}
89 void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
90 void SetUseHLTData(const char* detectors){fUseHLTData=detectors;}
91 void SetV0DCAmax(Float_t d) {fV0DCAmax=d;}
92 void SetV0CsPmin(Float_t d) {fV0CsPmin=d;}
93 void SetDmax(Float_t d) {fDmax=d;}
94 void SetZmax(Float_t z) {fZmax=z;}
95 Float_t GetV0DCAmax() const {return fV0DCAmax;}
96 Float_t GetV0CsPmin() const {return fV0CsPmin;}
97 Float_t GetDmax() const {return fDmax;}
98 Float_t GetZmax() const {return fZmax;}
100 void SetCheckPointLevel(Int_t checkPointLevel)
101 {fCheckPointLevel = checkPointLevel;}
103 // CDB storage activation
104 void SetDefaultStorage(const char* uri);
105 void SetSpecificStorage(const char* calibType, const char* uri);
107 Bool_t MisalignGeometry(const TString& detectors);
109 void SetAlignObjArray(TObjArray *array)
110 {fAlignObjArray = array;
111 fLoadAlignFromCDB = kFALSE;}
113 virtual Bool_t Run(const char* input = NULL,Bool_t IsOnline = kFALSE);
116 void ESDFile2AODFile(TFile* esdFile, TFile* aodFile);
119 virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd);
120 void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; }
121 void SetRunQA(Bool_t flag=kTRUE) {fRunQA = flag ;}
122 void SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;}
123 void SetInLoopQA(Bool_t flag=kTRUE) {fInLoopQA = flag;}
125 // Plane Efficiency Evaluation
126 void SetRunPlaneEff(Bool_t flag=kFALSE) {fRunPlaneEff = flag;}
131 Bool_t SetRunNumberFromData();
132 Bool_t RunLocalReconstruction(const TString& detectors);
133 Bool_t RunLocalEventReconstruction(const TString& detectors);
134 Bool_t RunVertexFinder(AliESDEvent*& esd);
135 Bool_t RunHLTTracking(AliESDEvent*& esd);
136 Bool_t RunMuonTracking(AliESDEvent*& esd);
137 Bool_t RunTracking(AliESDEvent*& esd);
138 Bool_t CleanESD(AliESDEvent *esd);
139 Bool_t FillESD(AliESDEvent*& esd, const TString& detectors);
140 Bool_t FillTriggerESD(AliESDEvent*& esd);
141 Bool_t FillRawEventHeaderESD(AliESDEvent*& esd);
143 Bool_t IsSelected(TString detName, TString& detectors) const;
144 Bool_t InitRunLoader();
145 AliReconstructor* GetReconstructor(Int_t iDet);
146 Bool_t CreateVertexer();
147 Bool_t CreateTrackers(const TString& detectors);
148 void CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
150 Bool_t ReadESD(AliESDEvent*& esd, const char* recStep) const;
151 void WriteESD(AliESDEvent* esd, const char* recStep) const;
153 //==========================================//
154 void WriteAlignmentData(AliESDEvent* esd);
156 void FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
159 Int_t GetDetIndex(const char * detector);
160 AliQADataMakerRec* GetQADataMaker(Int_t iDet);
161 const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
164 // Plane Efficiency evaluation
165 Bool_t FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation
166 Bool_t InitPlaneEff(); // initialize what is needed for Plane Eff. evaluation
168 //*** Global reconstruction flags *******************
169 Bool_t fUniformField; // uniform field tracking flag
170 Bool_t fRunVertexFinder; // run the vertex finder
171 Bool_t fRunVertexFinderTracks; // run the vertex finder with tracks
172 Bool_t fRunHLTTracking; // run the HLT tracking
173 Bool_t fRunMuonTracking; // run the HLT tracking
174 Bool_t fRunV0Finder; // run the ESD V0 finder
175 Bool_t fRunCascadeFinder; // run the ESD cascade finder
176 Bool_t fStopOnError; // stop or continue on errors
177 Bool_t fWriteAlignmentData; // write track space-points flag
178 Bool_t fWriteESDfriend; // write ESD friend flag
179 Bool_t fWriteAOD; // write AOD flag
180 Bool_t fFillTriggerESD; // fill trigger info into ESD
182 //*** Clean ESD flag and parameters *******************
183 Bool_t fCleanESD; // clean ESD flag
184 Float_t fV0DCAmax; // max. allowed DCA between V0 daugthers
185 Float_t fV0CsPmin; // min. allowed cosine of V0 pointing angle
186 Float_t fDmax; // max. allowed transverse impact parameter
187 Float_t fZmax; // max. allowed longitudinal impact parameter
189 TString fRunLocalReconstruction; // run the local reconstruction for these detectors
190 TString fRunTracking; // run the tracking for these detectors
191 TString fFillESD; // fill ESD for these detectors
192 TString fUseTrackingErrorsForAlignment; // for these detectors
193 TString fGAliceFileName; // name of the galice file
194 TString fInput; // name of input file or directory
195 TString fEquipIdMap; // name of file with equipment id map
196 Int_t fFirstEvent; // index of first event to be reconstr.
197 Int_t fLastEvent; // index of last event to be reconstr.
198 UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
199 Int_t fCheckPointLevel; // level of ESD check points
200 TObjArray fOptions; // options for reconstructor objects
201 Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not
202 TString fLoadAlignData; // Load alignment data from CDB for these detectors
203 TString fESDPar; // String where the esd.par is stored, will be attached to the tree
204 TString fUseHLTData; // Detectors for which the HLT data is used as input
206 AliRunLoader* fRunLoader; //! current run loader object
207 AliRawReader* fRawReader; //! current raw data reader
208 AliRawReader* fParentRawReader; //! parent raw data reader in case of AliRawReaderHLT
210 static const Int_t fgkNDetectors = 15; //! number of detectors
211 static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
212 AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects
213 AliLoader* fLoader[fgkNDetectors]; //! detector loaders
214 AliVertexer* fVertexer; //! vertexer for ITS
215 AliTracker* fTracker[fgkNDetectors]; //! trackers
216 AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks
217 AliESDVertex* fDiamondProfileTPC; // (x,y) diamond profile from TPC for AliVertexerTracks
218 Bool_t fMeanVertexConstraint; // use fDiamondProfile in AliVertexerTracks
220 TList* fGRPList; // TList from the GRP/GRP/Data CDB folder
222 TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry
224 TString fCDBUri; // Uri of the default CDB storage
225 TObjArray fSpecCDBUri; // Array with detector specific CDB storages
226 Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized
227 Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader
230 AliQADataMakerRec *fQADataMaker[fgkNDetectors+1]; //! array of QA data makers
231 Int_t fQACycles[ fgkNDetectors];// # events over which QA data are accumulated
232 Bool_t fRunQA ; // Run QA flag
233 Bool_t fRunGlobalQA; // Run global QA flag
234 Bool_t fInLoopQA; // In-loop QA flag
235 // Plane Efficiency Evaluation
236 Bool_t fRunPlaneEff ; // Evaluate Plane Efficiency
238 ClassDef(AliReconstruction, 21) // class for running the reconstruction