]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
Second round of ESD clean-up at the physics level: possibility to reduce the number...
[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 TFile;
33 class TTree;
34 class TList;
35 class AliQADataMaker;
36
37 class AliReconstruction: public TNamed {
38 public:
39   AliReconstruction(const char* gAliceFilename = "galice.root",
40                     const char* cdbUri = "local://$ALICE_ROOT",
41                     const char* name = "AliReconstruction", 
42                     const char* title = "reconstruction");
43   AliReconstruction(const AliReconstruction& rec);
44   AliReconstruction& operator = (const AliReconstruction& rec);
45   virtual ~AliReconstruction();
46
47   void           SetGAliceFile(const char* fileName);
48   void           SetInput(const char* input) {fInput = input;};
49   void           SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
50   void           SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) 
51     {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
52   void           SetNumberOfEventsPerFile(UInt_t nEvents)
53     {fNumberOfEventsPerFile = nEvents;};
54   void           SetOption(const char* detector, const char* option);
55
56   void           SetRunLocalReconstruction(const char* detectors) {
57     fRunLocalReconstruction = detectors;};
58   void           SetRunTracking(const char* detectors) {
59     fRunTracking = detectors;};
60   void           SetFillESD(const char* detectors) {fFillESD = detectors;};
61   void           SetRunReconstruction(const char* detectors) {
62     SetRunLocalReconstruction(detectors); 
63     SetRunTracking(detectors);
64     SetFillESD(detectors);};
65   void           SetUseTrackingErrorsForAlignment(const char* detectors) 
66     {fUseTrackingErrorsForAlignment = detectors;};
67   void           SetLoadAlignFromCDB(Bool_t load)  {fLoadAlignFromCDB = load;};
68   void           SetLoadAlignData(const char* detectors) 
69     {fLoadAlignData = detectors;};
70   void           SetESDParLocation(const char *c){fESDPar = c;}
71   TNamed *CopyFileToTNamed(TString fPath,TString fName);
72   void  TNamedToFile(TTree* fTree, TString fName);
73
74   //*** Global reconstruction flag setters
75   void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;} 
76   void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=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                    
87   void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
88   void SetV0DCAmax(Float_t d) {fV0DCAmax=d;}
89   void SetV0CsPmin(Float_t d) {fV0CsPmin=d;}
90   void SetDmax(Float_t d) {fDmax=d;}
91   void SetZmax(Float_t z) {fZmax=z;}
92   Float_t GetV0DCAmax() const {return fV0DCAmax;}
93   Float_t GetV0CsPmin() const {return fV0CsPmin;}
94   Float_t GetDmax() const {return fDmax;}
95   Float_t GetZmax() const {return fZmax;}
96
97   void           SetCheckPointLevel(Int_t checkPointLevel)
98     {fCheckPointLevel = checkPointLevel;}
99   // CDB storage activation
100   void InitCDBStorage();
101   void SetDefaultStorage(const char* uri);
102   void SetRemoteStorage(const char* uri);
103   void SetSpecificStorage(const char* calibType, const char* uri);
104
105   Bool_t SetRunNumber();
106
107   Bool_t MisalignGeometry(const TString& detectors);
108
109   void           SetAlignObjArray(TObjArray *array)
110                    {fAlignObjArray = array;
111                    fLoadAlignFromCDB = kFALSE;}
112
113   virtual Bool_t Run(const char* input = NULL);
114
115   // AOD creation
116   void ESDFile2AODFile(TFile* esdFile, TFile* aodFile);
117
118   // Quality Assurance 
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
122 private:
123   Bool_t         RunLocalReconstruction(const TString& detectors);
124   Bool_t         RunLocalEventReconstruction(const TString& detectors);
125   Bool_t         RunVertexFinder(AliESDEvent*& esd);
126   Bool_t         RunHLTTracking(AliESDEvent*& esd);
127   Bool_t         RunMuonTracking(AliESDEvent*& esd);
128   Bool_t         RunTracking(AliESDEvent*& esd);
129   Bool_t         CleanESD(AliESDEvent *esd);
130   Bool_t         FillESD(AliESDEvent*& esd, const TString& detectors);
131   Bool_t         FillTriggerESD(AliESDEvent*& esd);
132   Bool_t         FillRawEventHeaderESD(AliESDEvent*& esd);
133
134   Bool_t         IsSelected(TString detName, TString& detectors) const;
135   Bool_t         InitRunLoader();
136   AliReconstructor* GetReconstructor(Int_t iDet);
137   Bool_t         CreateVertexer();
138   Bool_t         CreateTrackers(const TString& detectors);
139   void           CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
140
141   Bool_t         ReadESD(AliESDEvent*& esd, const char* recStep) const;
142   void           WriteESD(AliESDEvent* esd, const char* recStep) const;
143
144   //==========================================//
145   void           WriteAlignmentData(AliESDEvent* esd);
146
147   void           FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
148
149   //Quality Assurance
150   Int_t                GetDetIndex(const char * detector);
151 //  AliQADataMaker*      GetQADataMaker(Int_t iDet);
152 //  const Int_t          GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
153   void                 CheckQA() ;
154   void        SetQA(const Bool_t val) { fRunQA = val ; } 
155
156   //*** Global reconstruction flags *******************
157   Bool_t         fUniformField;       // uniform field tracking flag
158   Bool_t         fRunVertexFinder;    // run the vertex finder
159   Bool_t         fRunHLTTracking;     // run the HLT tracking
160   Bool_t         fRunMuonTracking;    // run the HLT tracking
161   Bool_t         fRunV0Finder;        // run the ESD V0 finder
162   Bool_t         fRunCascadeFinder;   // run the ESD cascade finder
163   Bool_t         fStopOnError;        // stop or continue on errors
164   Bool_t         fWriteAlignmentData; // write track space-points flag
165   Bool_t         fWriteESDfriend;     // write ESD friend flag
166   Bool_t         fWriteAOD;           // write AOD flag
167   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
168
169   //*** Clean ESD flag and parameters *******************
170   Bool_t         fCleanESD;      // clean ESD flag
171   Float_t        fV0DCAmax;      // max. allowed DCA between V0 daugthers 
172   Float_t        fV0CsPmin;      // min. allowed cosine of V0 pointing angle 
173   Float_t        fDmax;          // max. allowed transverse impact parameter 
174   Float_t        fZmax;          // max. allowed longitudinal impact parameter 
175
176   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
177   TString        fRunTracking;        // run the tracking for these detectors
178   TString        fFillESD;            // fill ESD for these detectors
179   TString        fUseTrackingErrorsForAlignment; // for these detectors
180   TString        fGAliceFileName;     // name of the galice file
181   TString        fInput;              // name of input file or directory
182   TString        fEquipIdMap;         // name of file with equipment id map
183   Int_t          fFirstEvent;         // index of first event to be reconstr.
184   Int_t          fLastEvent;          // index of last event to be reconstr.
185   UInt_t         fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
186   Int_t          fCheckPointLevel;    // level of ESD check points
187   TObjArray      fOptions;            // options for reconstructor objects
188   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
189   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
190   TString        fESDPar;             // String where the esd.par is stored, will be attached to the tree         
191
192
193   AliRunLoader*  fRunLoader;          //! current run loader object
194   AliRawReader*  fRawReader;          //! current raw data reader
195
196   static const Int_t fgkNDetectors = 15;   //! number of detectors
197   static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
198   AliReconstructor*  fReconstructor[fgkNDetectors];  //! array of reconstructor objects
199   AliLoader*     fLoader[fgkNDetectors];   //! detector loaders
200   AliVertexer*   fVertexer;                //! vertexer for ITS
201   AliTracker*    fTracker[fgkNDetectors];  //! trackers
202   AliESDVertex*  fDiamondProfile;          // (x,y) diamond profile for AliVertexerTracks
203
204   TList*         fGRPList;            // TList from the GRP/GRP/Data CDB folder
205
206   TObjArray*     fAlignObjArray;      // array with the alignment objects to be applied to the geometry
207
208   TString        fCDBUri;             // Uri of the default CDB storage
209   TString        fRemoteCDBUri;       // Uri of the remote CDB storage
210   TObjArray      fSpecCDBUri;         // Array with detector specific CDB storages
211
212   //Quality Assurance
213 //  AliQADataMaker * fQADataMaker[fgkNDetectors];  //! array of QA data maker objects
214 //  Int_t                 fQACycles[fgkNDetectors] ;         // cycle length (# events) over which QA data are accumulated
215   Bool_t              fRunQA ;                        // Runs the QA at the end of simulation
216
217   ClassDef(AliReconstruction, 17)      // class for running the reconstruction
218 };
219
220 #endif