]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
Conding violations fixed. The code is now included in libSTEER (Mikolaj)
[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 <TNamed.h>
21 #include <TString.h>
22 #include <TObjArray.h>
23
24 class AliReconstructor;
25 class AliRunLoader;
26 class AliRawReader;
27 class AliLoader;
28 class AliTracker;
29 class AliMagF;
30 class AliVertexer;
31 class AliESDVertex;
32 class AliESDEvent;
33 class AliESDfriend;
34 class AliVertexerTracks;
35 class TFile;
36 class TTree;
37 class TList;
38 class AliQADataMakerRec;
39 class TMap;
40
41 class AliReconstruction: public TNamed {
42 public:
43   AliReconstruction(const char* gAliceFilename = "galice.root",
44                     const char* name = "AliReconstruction", 
45                     const char* title = "reconstruction");
46   virtual ~AliReconstruction();
47
48   void           SetGAliceFile(const char* fileName);
49   void           SetInput(const char* input);
50
51   void           SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
52   void           SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) 
53     {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
54   void           SetNumberOfEventsPerFile(UInt_t nEvents)
55     {fNumberOfEventsPerFile = nEvents;};
56   void           SetOption(const char* detector, const char* option);
57
58   void           SetRunLocalReconstruction(const char* detectors) {
59     fRunLocalReconstruction = detectors;};
60   void           SetRunTracking(const char* detectors) {
61     fRunTracking = detectors;};
62   void           SetFillESD(const char* detectors) {fFillESD = detectors;};
63   void           SetRunReconstruction(const char* detectors) {
64     SetRunLocalReconstruction(detectors); 
65     SetRunTracking(detectors);
66     SetFillESD(detectors);};
67   void           SetUseTrackingErrorsForAlignment(const char* detectors) 
68     {fUseTrackingErrorsForAlignment = detectors;};
69   void           SetLoadAlignFromCDB(Bool_t load)  {fLoadAlignFromCDB = load;};
70   void           SetLoadAlignData(const char* detectors) 
71     {fLoadAlignData = detectors;};
72   void           SetESDParLocation(const char *c){fESDPar = c;}
73   TNamed *CopyFileToTNamed(TString fPath,TString fName);
74   void  TNamedToFile(TTree* fTree, TString fName);
75
76   //*** Magnetic field setters
77   void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;} 
78   Bool_t 
79   SetFieldMap(Float_t l3Current=30000., Float_t diCurrent=6000., 
80               Float_t factor=1., 
81               const char *path="$(ALICE_ROOT)/data/maps/mfchebKGI_meas.root");
82
83   //*** Global reconstruction flag setters
84   void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;};
85   void SetRunVertexFinderTracks(Bool_t flag=kTRUE) {fRunVertexFinderTracks=flag;};
86   void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;};
87   void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;};
88   void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;};
89   void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
90   void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
91   void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
92   void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;}
93   void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
94   void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
95   void SetDiamondProfileTPC(AliESDVertex *dp) {fDiamondProfileTPC=dp;}
96   void SetMeanVertexConstraint(Bool_t flag=kTRUE){fMeanVertexConstraint=flag;}
97                    
98   void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
99   void SetUseHLTData(const char* detectors){fUseHLTData=detectors;}
100   void SetV0DCAmax(Float_t d) {fV0DCAmax=d;}
101   void SetV0CsPmin(Float_t d) {fV0CsPmin=d;}
102   void SetDmax(Float_t d) {fDmax=d;}
103   void SetZmax(Float_t z) {fZmax=z;}
104   Float_t GetV0DCAmax() const {return fV0DCAmax;}
105   Float_t GetV0CsPmin() const {return fV0CsPmin;}
106   Float_t GetDmax() const {return fDmax;}
107   Float_t GetZmax() const {return fZmax;}
108
109   void           SetCheckPointLevel(Int_t checkPointLevel)
110     {fCheckPointLevel = checkPointLevel;}
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 Bool_t InitRun(const char* input);
123   virtual Bool_t RunEvent(Int_t iEvent);
124   virtual Bool_t FinishRun();
125   virtual Bool_t Run(const char* input = NULL);
126
127   // Trackers
128   AliTracker* GetTracker(Int_t idx) { return fTracker[idx]; }
129   Bool_t      CreateTrackers(const TString& detectors);
130   void        ImportRunLoader(AliRunLoader* rl) { fRunLoader = rl; }
131
132   // Quality Assurance 
133   virtual Bool_t RunQA(AliESDEvent *& esd);
134   void    SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; }
135   Bool_t  SetRunQA(TString detAndAction="ALL:ALL") ; 
136   void    SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;}
137   void    SetInLoopQA(Bool_t flag=kTRUE)   {fInLoopQA    = flag;} 
138
139   // Plane Efficiency Evaluation
140   void    SetRunPlaneEff(Bool_t flag=kFALSE)  {fRunPlaneEff = flag;}
141
142 private:
143   AliReconstruction(const AliReconstruction& rec);
144   AliReconstruction& operator = (const AliReconstruction& rec);
145
146   void           InitCDB();
147   Bool_t         InitGRP();
148   void           SetCDBLock();
149   Bool_t         SetRunNumberFromData();
150   Bool_t         RunLocalReconstruction(const TString& detectors);
151   Bool_t         RunLocalEventReconstruction(const TString& detectors);
152   Bool_t         RunVertexFinder(AliESDEvent*& esd);
153   Bool_t         RunHLTTracking(AliESDEvent*& esd);
154   Bool_t         RunMuonTracking(AliESDEvent*& esd);
155   Bool_t         RunTracking(AliESDEvent*& esd);
156   Bool_t         CleanESD(AliESDEvent *esd);
157   Bool_t         FillESD(AliESDEvent*& esd, const TString& detectors);
158   Bool_t         FillTriggerESD(AliESDEvent*& esd);
159   Bool_t         FillRawEventHeaderESD(AliESDEvent*& esd);
160
161   Bool_t         IsSelected(TString detName, TString& detectors) const;
162   Bool_t         InitRunLoader();
163   AliReconstructor* GetReconstructor(Int_t iDet);
164   Bool_t         CreateVertexer();
165   void           CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
166
167   Bool_t         ReadESD(AliESDEvent*& esd, const char* recStep) const;
168   void           WriteESD(AliESDEvent* esd, const char* recStep) const;
169
170   //==========================================//
171   void           WriteAlignmentData(AliESDEvent* esd);
172
173   void           FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
174
175   //Quality Assurance
176   Int_t                GetDetIndex(const char * detector);
177   AliQADataMakerRec*   GetQADataMaker(Int_t iDet);
178   const Int_t          GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
179   void                 CheckQA() ;
180
181   // Plane Efficiency evaluation
182   Bool_t  FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation 
183   Bool_t  InitPlaneEff();   // initialize what is needed for Plane Eff. evaluation
184
185   Bool_t               InitAliEVE();
186   void                 RunAliEVE();
187
188   //*** Magnetic field map settings *******************
189   Bool_t         fUniformField;       // uniform field tracking flag
190   AliMagF       *fForcedFieldMap;     // independent, not GRP, field map
191
192   //*** Global reconstruction flags *******************
193   Bool_t         fRunVertexFinder;    // run the vertex finder
194   Bool_t         fRunVertexFinderTracks;    // run the vertex finder with tracks
195   Bool_t         fRunHLTTracking;     // run the HLT tracking
196   Bool_t         fRunMuonTracking;    // run the HLT tracking
197   Bool_t         fRunV0Finder;        // run the ESD V0 finder
198   Bool_t         fRunCascadeFinder;   // run the ESD cascade finder
199   Bool_t         fStopOnError;        // stop or continue on errors
200   Bool_t         fWriteAlignmentData; // write track space-points flag
201   Bool_t         fWriteESDfriend;     // write ESD friend flag
202   Bool_t         fWriteAOD;           // write AOD flag
203   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
204
205   //*** Clean ESD flag and parameters *******************
206   Bool_t         fCleanESD;      // clean ESD flag
207   Float_t        fV0DCAmax;      // max. allowed DCA between V0 daugthers 
208   Float_t        fV0CsPmin;      // min. allowed cosine of V0 pointing angle 
209   Float_t        fDmax;          // max. allowed transverse impact parameter 
210   Float_t        fZmax;          // max. allowed longitudinal impact parameter 
211
212   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
213   TString        fRunTracking;        // run the tracking for these detectors
214   TString        fFillESD;            // fill ESD for these detectors
215   TString        fUseTrackingErrorsForAlignment; // for these detectors
216   TString        fGAliceFileName;     // name of the galice file
217   TString        fInput;              // name of input file or directory
218   TString        fEquipIdMap;         // name of file with equipment id map
219   Int_t          fFirstEvent;         // index of first event to be reconstr.
220   Int_t          fLastEvent;          // index of last event to be reconstr.
221   UInt_t         fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
222   Int_t          fCheckPointLevel;    // level of ESD check points
223   TObjArray      fOptions;            // options for reconstructor objects
224   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
225   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
226   TString        fESDPar;             // String where the esd.par is stored, will be attached to the tree         
227   TString        fUseHLTData;        // Detectors for which the HLT data is used as input
228
229   AliRunLoader*  fRunLoader;          //! current run loader object
230   AliRawReader*  fRawReader;          //! current raw data reader
231   AliRawReader*  fParentRawReader;    //! parent raw data reader in case of AliRawReaderHLT
232
233   static const Int_t fgkNDetectors = 15;   //! number of detectors
234   static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
235   AliReconstructor*  fReconstructor[fgkNDetectors];  //! array of reconstructor objects
236   AliLoader*     fLoader[fgkNDetectors];   //! detector loaders
237   AliVertexer*   fVertexer;                //! vertexer for ITS
238   AliTracker*    fTracker[fgkNDetectors];  //! trackers
239   AliESDVertex*  fDiamondProfile;          // (x,y) diamond profile for AliVertexerTracks
240   AliESDVertex*  fDiamondProfileTPC;       // (x,y) diamond profile from TPC for AliVertexerTracks
241   Bool_t         fMeanVertexConstraint; // use fDiamondProfile in AliVertexerTracks
242
243   TMap*          fGRPData;              // Data from the GRP/GRP/Data CDB folder
244
245   TObjArray*     fAlignObjArray;      // array with the alignment objects to be applied to the geometry
246
247   TString        fCDBUri;             // Uri of the default CDB storage
248   TObjArray      fSpecCDBUri;         // Array with detector specific CDB storages
249   Bool_t         fInitCDBCalled;               //! flag to check if CDB storages are already initialized
250   Bool_t         fSetRunNumberFromDataCalled;  //! flag to check if run number is already loaded from run loader
251
252   //Quality Assurance
253   AliQADataMakerRec *fQADataMaker[fgkNDetectors+1];  //! array of QA data makers
254   Int_t fQACycles[   fgkNDetectors];// # events over which QA data are accumulated
255   TString            fQADetectors ;  // list of detectors to be QA'ed   
256   TString            fQATasks ;      // list of QA tasks to be performed        
257   Bool_t             fRunQA ;        // Run QA flag
258   Bool_t             fRunGlobalQA;   // Run global QA flag
259   Bool_t             fInLoopQA;      // In-loop QA flag
260   Bool_t             fSameQACycle;   //! open a new QA data file or not
261   // Plane Efficiency Evaluation
262   Bool_t         fRunPlaneEff ;      // Evaluate Plane Efficiency
263
264   // New members needed in order to split Run method
265   // into InitRun,RunEvent,FinishRun methods
266   AliESDEvent*         fesd;        //! Pointer to the ESD event object
267   AliESDEvent*         fhltesd;     //! Pointer to the HLT ESD event object
268   AliESDfriend*        fesdf;       //! Pointer to the ESD friend object
269   TFile*               ffile;       //! Pointer to the ESD file
270   TTree*               ftree;       //! Pointer to the ESD tree
271   TTree*               fhlttree;    //! Pointer to the HLT ESD tree
272   TFile*               ffileOld;    //! Pointer to the previous ESD file
273   TTree*               ftreeOld;    //! Pointer to the previous ESD tree
274   TTree*               fhlttreeOld; //! Pointer to the previous HLT ESD tree
275   AliVertexerTracks*   ftVertexer;  //! Pointer to the vertexer based on ESD tracks
276   Bool_t               fIsNewRunLoader; // galice.root created from scratch (real raw data case)
277   Bool_t               fRunAliEVE;  // Run AliEVE or not
278
279   ClassDef(AliReconstruction, 24)      // class for running the reconstruction
280 };
281
282 #endif