]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
corrected leftover modifications
[u/mrichter/AliRoot.git] / STEER / AliReconstruction.h
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
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
20 #include <TSelector.h>
21 #include <TString.h>
22 #include <TUrl.h>
23 #include <TObjArray.h>
24
25 class AliReconstructor;
26 class AliRunLoader;
27 class AliRawReader;
28 class AliLoader;
29 class AliTracker;
30 class AliMagF;
31 class AliVertexer;
32 class AliESDVertex;
33 class AliESDEvent;
34 class AliESDfriend;
35 class AliVertexerTracks;
36 class TFile;
37 class TTree;
38 class TList;
39 class AliQAManager; 
40 class TMap;
41 class AliRecoParam;
42 class AliDetectorRecoParam;
43 class AliRunInfo;
44 class AliGRPObject;
45 #include "AliQAv1.h"
46 #include "AliEventInfo.h"
47 #include "AliRecoParam.h"
48
49 class AliReconstruction: public TSelector {
50 public:
51   AliReconstruction(const char* gAliceFilename = "galice.root");
52   virtual ~AliReconstruction();
53
54   void           SetGAliceFile(const char* fileName);
55   void           SetInput(const char* input);
56   void           SetOutput(const char* output);
57
58   void           SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
59   void           SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) 
60     {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
61   void           SetNumberOfEventsPerFile(UInt_t nEvents)
62     {fNumberOfEventsPerFile = nEvents;};
63   void           SetOption(const char* detector, const char* option);
64   void           SetRecoParam(const char* detector, AliDetectorRecoParam *par);
65
66   void           SetRunLocalReconstruction(const char* detectors) {
67     fRunLocalReconstruction = detectors;};
68   void           SetRunTracking(const char* detectors) {
69     fRunTracking = detectors;};
70   void           SetFillESD(const char* detectors) {fFillESD = detectors;};
71   void           SetRunReconstruction(const char* detectors) {
72     SetRunLocalReconstruction(detectors); 
73     SetRunTracking(detectors);
74     SetFillESD(detectors);};
75   void           SetUseTrackingErrorsForAlignment(const char* detectors) 
76     {fUseTrackingErrorsForAlignment = detectors;};
77   void           SetLoadAlignFromCDB(Bool_t load)  {fLoadAlignFromCDB = load;};
78   void           SetLoadAlignData(const char* detectors) 
79     {fLoadAlignData = detectors;};
80
81   //*** Magnetic field setters
82   Bool_t SetFieldMap(Float_t l3Current=30000., Float_t diCurrent=6000., 
83                      Float_t l3Pol=1., Float_t dipPol=1., Float_t benergy=7000., 
84                      const Char_t* btype="pp",  
85                      const Char_t* path="$(ALICE_ROOT)/data/maps/mfchebKGI_sym.root");
86
87   //*** Global reconstruction flag setters
88   void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;};
89   void SetRunVertexFinderTracks(Bool_t flag=kTRUE) {fRunVertexFinderTracks=flag;};
90   void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;};
91   void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;};
92   void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;};
93   void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
94   void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
95   void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
96   void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
97   void SetDiamondProfileSPD(AliESDVertex *dp) {fDiamondProfileSPD=dp;}
98   void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
99   void SetDiamondProfileTPC(AliESDVertex *dp) {fDiamondProfileTPC=dp;}
100                    
101   void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
102   void SetUseHLTData(const char* detectors){fUseHLTData=detectors;}
103   void SetV0DCAmax(Float_t d) {fV0DCAmax=d;}
104   void SetV0CsPmin(Float_t d) {fV0CsPmin=d;}
105   void SetDmax(Float_t d) {fDmax=d;}
106   void SetZmax(Float_t z) {fZmax=z;}
107   Float_t GetV0DCAmax() const {return fV0DCAmax;}
108   Float_t GetV0CsPmin() const {return fV0CsPmin;}
109   Float_t GetDmax() const {return fDmax;}
110   Float_t GetZmax() const {return fZmax;}
111   
112   // CDB storage activation
113   void SetDefaultStorage(const char* uri);
114   void SetSpecificStorage(const char* calibType, const char* uri);
115
116   Bool_t MisalignGeometry(const TString& detectors);
117
118   void           SetAlignObjArray(TObjArray *array)
119                    {fAlignObjArray = array;
120                    fLoadAlignFromCDB = kFALSE;}
121
122   virtual Int_t  Version() const {return 2;}
123   virtual void   Begin(TTree*);
124   virtual void   SlaveBegin(TTree*);
125   virtual void   Init(TTree *tree);
126   virtual Bool_t Process(Long64_t entry);
127   virtual Bool_t ProcessEvent(Int_t iEvent);
128   virtual void   SlaveTerminate();
129   virtual void   Terminate();
130   virtual Bool_t Run(const char* input = NULL);
131   void           Abort(const char *method, EAbort what);
132   virtual void   SetOption(const char* option) {
133     TSelector::SetOption(option);
134   }
135
136   // Trackers
137   AliTracker* GetTracker(Int_t idx) const { return fTracker[idx]; }
138   Bool_t      CreateTrackers(const TString& detectors);
139   void        ImportRunLoader(AliRunLoader* rl) { fRunLoader = rl; }
140
141   // Quality Assurance 
142   void    SetQACycles(AliQAv1::DETECTORINDEX_t det, Int_t cycles) { fQACycles[det] = cycles ; }
143   void    SetQAWriteExpert(AliQAv1::DETECTORINDEX_t det) { fQAWriteExpert[det] = kTRUE ; }
144   Bool_t  SetRunQA(TString detAndAction="ALL:ALL") ; 
145   void    SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;}
146   void    SetQARefDefaultStorage(const char* uri);
147   void    InitQA();
148   void    MergeQA(const char *fileName = NULL); 
149   void    SetWriteQAExpert() { fWriteQAExpertData = kTRUE ; }
150
151   // Plane Efficiency Evaluation
152   void    SetRunPlaneEff(Bool_t flag=kFALSE)  {fRunPlaneEff = flag;}
153
154   enum {
155     kNDetectors = 15   // number of detectors
156   };
157   static Int_t   GetDetIndex(const char * detector);
158
159 private:
160   AliReconstruction(const AliReconstruction& rec);
161   AliReconstruction& operator = (const AliReconstruction& rec);
162
163   void           InitRun(const char* input);
164   void           InitRawReader(const char* input);
165   void           InitCDB();
166   Bool_t         InitGRP();
167   void           SetCDBLock();
168   Bool_t         SetRunNumberFromData();
169   Bool_t         LoadCDB();
170   Bool_t         RunLocalEventReconstruction(const TString& detectors);
171   Bool_t         RunVertexFinder(AliESDEvent*& esd);
172   Bool_t         RunHLTTracking(AliESDEvent*& esd);
173   Bool_t         RunMuonTracking(AliESDEvent*& esd);
174   Bool_t         RunSPDTrackleting(AliESDEvent*& esd);
175   Bool_t         RunTracking(AliESDEvent*& esd);
176   Bool_t         CleanESD(AliESDEvent *esd);
177   Bool_t         FillESD(AliESDEvent*& esd, const TString& detectors);
178   Bool_t         FillTriggerESD(AliESDEvent*& esd);
179   Bool_t         FillRawEventHeaderESD(AliESDEvent*& esd);
180
181   Bool_t         IsSelected(TString detName, TString& detectors) const;
182   Bool_t         InitRunLoader();
183   AliReconstructor* GetReconstructor(Int_t iDet);
184   AliVertexer*   CreateVertexer();
185   void           CleanUp();
186
187   //==========================================//
188   void           WriteAlignmentData(AliESDEvent* esd);
189
190   void           FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
191
192   //Quality Assurance
193   void                 CheckQA() ;
194
195   // Plane Efficiency evaluation
196   Bool_t  FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation 
197   Bool_t  InitPlaneEff();   // initialize what is needed for Plane Eff. evaluation
198
199   Bool_t               InitAliEVE();
200   void                 RunAliEVE();
201
202   Bool_t         InitRecoParams(); // init the array with the reconstruciton parameters
203   Bool_t         GetEventInfo();   // fill the event info inside the event loop
204
205   const char    *MatchDetectorList(const char *detectorList, UInt_t detectorMask);
206
207   //*** Global reconstruction flags *******************
208   Bool_t         fRunVertexFinder;    // run the vertex finder
209   Bool_t         fRunVertexFinderTracks;    // run the vertex finder with tracks
210   Bool_t         fRunHLTTracking;     // run the HLT tracking
211   Bool_t         fRunMuonTracking;    // run the HLT tracking
212   Bool_t         fRunV0Finder;        // run the ESD V0 finder
213   Bool_t         fRunCascadeFinder;   // run the ESD cascade finder
214   Bool_t         fStopOnError;        // stop or continue on errors
215   Bool_t         fWriteAlignmentData; // write track space-points flag
216   Bool_t         fWriteESDfriend;     // write ESD friend flag
217   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
218
219   //*** Clean ESD flag and parameters *******************
220   Bool_t         fCleanESD;      // clean ESD flag
221   Float_t        fV0DCAmax;      // max. allowed DCA between V0 daugthers 
222   Float_t        fV0CsPmin;      // min. allowed cosine of V0 pointing angle 
223   Float_t        fDmax;          // max. allowed transverse impact parameter 
224   Float_t        fZmax;          // max. allowed longitudinal impact parameter 
225
226   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
227   TString        fRunTracking;        // run the tracking for these detectors
228   TString        fFillESD;            // fill ESD for these detectors
229   TString        fLoadCDB;            // prefetch CDB entries and init reco-params for these detectors
230   TString        fUseTrackingErrorsForAlignment; // for these detectors
231   TString        fGAliceFileName;     // name of the galice file
232   TString        fRawInput;           // name of input raw-data file or directory
233   TUrl           fESDOutput;          //! name of output ESD file
234   TString        fEquipIdMap;         // name of file with equipment id map
235   Int_t          fFirstEvent;         // index of first event to be reconstr.
236   Int_t          fLastEvent;          // index of last event to be reconstr.
237   UInt_t         fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
238   TObjArray      fOptions;            // options for reconstructor objects
239   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
240   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
241   TString        fUseHLTData;        // Detectors for which the HLT data is used as input
242   AliRunInfo*    fRunInfo;            // an object which contains essential global conditions information
243   AliEventInfo   fEventInfo;          // an object which contains essential event information
244
245   AliRunLoader*  fRunLoader;          //! current run loader object
246   AliRawReader*  fRawReader;          //! current raw data reader
247   AliRawReader*  fParentRawReader;    //! parent raw data reader in case of AliRawReaderHLT
248
249   static const char* fgkDetectorName[kNDetectors]; //! names of detectors
250   AliReconstructor*  fReconstructor[kNDetectors];  //! array of reconstructor objects
251   AliRecoParam   fRecoParam;                      // container for the reco-param objects for detectors
252   AliLoader*     fLoader[kNDetectors];   //! detector loaders
253   AliTracker*    fTracker[kNDetectors];  //! trackers
254   AliTracker*    fSPDTrackleter;           //! trackleter [for SPD Plane Efficiency purposes]
255   AliESDVertex*  fDiamondProfileSPD;       // (x,y) diamond profile from SPD for AliITSVertexer3D(Z)
256   AliESDVertex*  fDiamondProfile;          // (x,y) diamond profile for AliVertexerTracks (ITS+TPC)
257   AliESDVertex*  fDiamondProfileTPC;       // (x,y) diamond profile from TPC for AliVertexerTracks
258
259   AliGRPObject*  fGRPData;              // Data from the GRP/GRP/Data CDB folder
260
261   TObjArray*     fAlignObjArray;      //! array with the alignment objects to be applied to the geometry
262
263   TString        fCDBUri;             //! Uri of the default CDB storage
264   TString        fQARefUri;         //! Uri of the default QA reference storage
265   TObjArray      fSpecCDBUri;         //! Array with detector specific CDB storages
266   Bool_t         fInitCDBCalled;               //! flag to check if CDB storages are already initialized
267   Bool_t         fSetRunNumberFromDataCalled;  //! flag to check if run number is already loaded from run loader
268
269   //Quality Assurance
270   Int_t  fQACycles[     AliQAv1::kNDET];  // # events over which QA data are accumulated
271   Bool_t fQAWriteExpert[AliQAv1::kNDET];  // Flag to save or not expert QA data
272   TString               fQADetectors ;  // list of detectors to be QA'ed        
273   TString               fQATasks ;      // list of QA tasks to be performed     
274   Bool_t                fRunQA ;        // Run QA flag
275   Bool_t                fRunGlobalQA;   // Run global QA flag
276   Bool_t                fSameQACycle;   //! open a new QA data file or not
277   Bool_t                fInitQACalled;  //! control of QA intialisation
278   Bool_t                fWriteQAExpertData ; //! decides wheter or not to write experts QA data; true by default
279
280   // Plane Efficiency Evaluation
281   Bool_t         fRunPlaneEff ;      // Evaluate Plane Efficiency
282
283   // New members needed in order to split Run method
284   // into InitRun,RunEvent,FinishRun methods
285   AliESDEvent*         fesd;        //! Pointer to the ESD event object
286   AliESDEvent*         fhltesd;     //! Pointer to the HLT ESD event object
287   AliESDfriend*        fesdf;       //! Pointer to the ESD friend object
288   TFile*               ffile;       //! Pointer to the ESD file
289   TTree*               ftree;       //! Pointer to the ESD tree
290   TTree*               fhlttree;    //! Pointer to the HLT ESD tree
291   AliVertexerTracks*   ftVertexer;  //! Pointer to the vertexer based on ESD tracks
292   Bool_t               fIsNewRunLoader; // galice.root created from scratch (real raw data case)
293   Bool_t               fRunAliEVE;  // Run AliEVE or not
294
295   TTree*              fChain;      //! The raw-data chain in case of AliRawReaderChain
296
297   ClassDef(AliReconstruction, 32)      // class for running the reconstruction
298 };
299
300 #endif