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