]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
Little changes needed for the visualization.
[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   // Trackers
123   AliTracker* GetTracker(Int_t idx) { return fTracker[idx]; }
124   Bool_t      CreateTrackers(const TString& detectors);
125   void        ImportRunLoader(AliRunLoader* rl) { fRunLoader = rl; }
126
127   // Quality Assurance 
128   virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd);
129   void    SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; }
130   void    SetRunQA(Bool_t flag=kTRUE)      {fRunQA = flag ;} 
131   void    SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;}
132   void    SetInLoopQA(Bool_t flag=kTRUE)   {fInLoopQA    = flag;} 
133
134   // Plane Efficiency Evaluation
135   void    SetRunPlaneEff(Bool_t flag=kFALSE)  {fRunPlaneEff = flag;}
136
137 private:
138   void           InitCDB();
139   void           SetCDBLock();
140   Bool_t         SetRunNumberFromData();
141   Bool_t         RunLocalReconstruction(const TString& detectors);
142   Bool_t         RunLocalEventReconstruction(const TString& detectors);
143   Bool_t         RunVertexFinder(AliESDEvent*& esd);
144   Bool_t         RunHLTTracking(AliESDEvent*& esd);
145   Bool_t         RunMuonTracking(AliESDEvent*& esd);
146   Bool_t         RunTracking(AliESDEvent*& esd);
147   Bool_t         CleanESD(AliESDEvent *esd);
148   Bool_t         FillESD(AliESDEvent*& esd, const TString& detectors);
149   Bool_t         FillTriggerESD(AliESDEvent*& esd);
150   Bool_t         FillRawEventHeaderESD(AliESDEvent*& esd);
151
152   Bool_t         IsSelected(TString detName, TString& detectors) const;
153   Bool_t         InitRunLoader();
154   AliReconstructor* GetReconstructor(Int_t iDet);
155   Bool_t         CreateVertexer();
156   void           CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
157
158   Bool_t         ReadESD(AliESDEvent*& esd, const char* recStep) const;
159   void           WriteESD(AliESDEvent* esd, const char* recStep) const;
160
161   //==========================================//
162   void           WriteAlignmentData(AliESDEvent* esd);
163
164   void           FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
165
166   //Quality Assurance
167   Int_t                GetDetIndex(const char * detector);
168   AliQADataMakerRec*   GetQADataMaker(Int_t iDet);
169   const Int_t          GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
170   void                 CheckQA() ;
171
172   // Plane Efficiency evaluation
173   Bool_t  FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation 
174   Bool_t  InitPlaneEff();   // initialize what is needed for Plane Eff. evaluation
175
176   Bool_t               InitAliEVE();
177   void                 RunAliEVE();
178
179   //*** Global reconstruction flags *******************
180   Bool_t         fUniformField;       // uniform field tracking flag
181   Bool_t         fRunVertexFinder;    // run the vertex finder
182   Bool_t         fRunVertexFinderTracks;    // run the vertex finder with tracks
183   Bool_t         fRunHLTTracking;     // run the HLT tracking
184   Bool_t         fRunMuonTracking;    // run the HLT tracking
185   Bool_t         fRunV0Finder;        // run the ESD V0 finder
186   Bool_t         fRunCascadeFinder;   // run the ESD cascade finder
187   Bool_t         fStopOnError;        // stop or continue on errors
188   Bool_t         fWriteAlignmentData; // write track space-points flag
189   Bool_t         fWriteESDfriend;     // write ESD friend flag
190   Bool_t         fWriteAOD;           // write AOD flag
191   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
192
193   //*** Clean ESD flag and parameters *******************
194   Bool_t         fCleanESD;      // clean ESD flag
195   Float_t        fV0DCAmax;      // max. allowed DCA between V0 daugthers 
196   Float_t        fV0CsPmin;      // min. allowed cosine of V0 pointing angle 
197   Float_t        fDmax;          // max. allowed transverse impact parameter 
198   Float_t        fZmax;          // max. allowed longitudinal impact parameter 
199
200   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
201   TString        fRunTracking;        // run the tracking for these detectors
202   TString        fFillESD;            // fill ESD for these detectors
203   TString        fUseTrackingErrorsForAlignment; // for these detectors
204   TString        fGAliceFileName;     // name of the galice file
205   TString        fInput;              // name of input file or directory
206   TString        fEquipIdMap;         // name of file with equipment id map
207   Int_t          fFirstEvent;         // index of first event to be reconstr.
208   Int_t          fLastEvent;          // index of last event to be reconstr.
209   UInt_t         fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
210   Int_t          fCheckPointLevel;    // level of ESD check points
211   TObjArray      fOptions;            // options for reconstructor objects
212   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
213   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
214   TString        fESDPar;             // String where the esd.par is stored, will be attached to the tree         
215   TString        fUseHLTData;        // Detectors for which the HLT data is used as input
216
217   AliRunLoader*  fRunLoader;          //! current run loader object
218   AliRawReader*  fRawReader;          //! current raw data reader
219   AliRawReader*  fParentRawReader;    //! parent raw data reader in case of AliRawReaderHLT
220
221   static const Int_t fgkNDetectors = 15;   //! number of detectors
222   static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
223   AliReconstructor*  fReconstructor[fgkNDetectors];  //! array of reconstructor objects
224   AliLoader*     fLoader[fgkNDetectors];   //! detector loaders
225   AliVertexer*   fVertexer;                //! vertexer for ITS
226   AliTracker*    fTracker[fgkNDetectors];  //! trackers
227   AliESDVertex*  fDiamondProfile;          // (x,y) diamond profile for AliVertexerTracks
228   AliESDVertex*  fDiamondProfileTPC;       // (x,y) diamond profile from TPC for AliVertexerTracks
229   Bool_t         fMeanVertexConstraint; // use fDiamondProfile in AliVertexerTracks
230
231   TMap*          fGRPData;              // Data from the GRP/GRP/Data CDB folder
232
233   TObjArray*     fAlignObjArray;      // array with the alignment objects to be applied to the geometry
234
235   TString        fCDBUri;             // Uri of the default CDB storage
236   TObjArray      fSpecCDBUri;         // Array with detector specific CDB storages
237   Bool_t         fInitCDBCalled;               //! flag to check if CDB storages are already initialized
238   Bool_t         fSetRunNumberFromDataCalled;  //! flag to check if run number is already loaded from run loader
239
240   //Quality Assurance
241   AliQADataMakerRec *fQADataMaker[fgkNDetectors+1];  //! array of QA data makers
242   Int_t fQACycles[   fgkNDetectors];// # events over which QA data are accumulated
243   Bool_t             fRunQA ;        // Run QA flag
244   Bool_t             fRunGlobalQA;   // Run global QA flag
245   Bool_t             fInLoopQA;      // In-loop QA flag
246   Bool_t             fSameQACycle;   //! open a vew QA data file or not
247   // Plane Efficiency Evaluation
248   Bool_t         fRunPlaneEff ;      // Evaluate Plane Efficiency
249
250   // New members needed in order to split Run method
251   // into InitRun,RunEvent,FinishRun methods
252   AliESDEvent*         fesd;        //! Pointer to the ESD event object
253   AliESDEvent*         fhltesd;     //! Pointer to the HLT ESD event object
254   AliESDfriend*        fesdf;       //! Pointer to the ESD friend object
255   TFile*               ffile;       //! Pointer to the ESD file
256   TTree*               ftree;       //! Pointer to the ESD tree
257   TTree*               fhlttree;    //! Pointer to the HLT ESD tree
258   TFile*               ffileOld;    //! Pointer to the previous ESD file
259   TTree*               ftreeOld;    //! Pointer to the previous ESD tree
260   TTree*               fhlttreeOld; //! Pointer to the previous HLT ESD tree
261   AliVertexerTracks*   ftVertexer;  //! Pointer to the vertexer based on ESD tracks
262   Bool_t               fIsNewRunLoader; // galice.root created from scratch (real raw data case)
263   Bool_t               fRunAliEVE;  // Run AliEVE or not
264
265   ClassDef(AliReconstruction, 23)      // class for running the reconstruction
266 };
267
268 #endif