]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
551020d7389aca0503e797c3136541e8a8dacb87
[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 SetDmax(Float_t d) {fDmax=d;}
89   void SetZmax(Float_t z) {fZmax=z;}
90   Float_t GetDmax() const {return fDmax;}
91   Float_t GetZmax() const {return fZmax;}
92
93   void           SetCheckPointLevel(Int_t checkPointLevel)
94     {fCheckPointLevel = checkPointLevel;}
95   // CDB storage activation
96   void InitCDBStorage();
97   void SetDefaultStorage(const char* uri);
98   void SetRemoteStorage(const char* uri);
99   void SetSpecificStorage(const char* calibType, const char* uri);
100
101   Bool_t SetRunNumber();
102
103   Bool_t MisalignGeometry(const TString& detectors);
104
105   void           SetAlignObjArray(TObjArray *array)
106                    {fAlignObjArray = array;
107                    fLoadAlignFromCDB = kFALSE;}
108
109   virtual Bool_t Run(const char* input = NULL);
110
111   // Quality Assurance 
112   virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd);
113   void    SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; }
114
115 private:
116   Bool_t         RunLocalReconstruction(const TString& detectors);
117   Bool_t         RunLocalEventReconstruction(const TString& detectors);
118   Bool_t         RunVertexFinder(AliESDEvent*& esd);
119   Bool_t         RunHLTTracking(AliESDEvent*& esd);
120   Bool_t         RunMuonTracking(AliESDEvent*& esd);
121   Bool_t         RunTracking(AliESDEvent*& esd);
122   Bool_t         CleanESD(AliESDEvent *esd);
123   Bool_t         FillESD(AliESDEvent*& esd, const TString& detectors);
124   Bool_t         FillTriggerESD(AliESDEvent*& esd);
125   Bool_t         FillRawEventHeaderESD(AliESDEvent*& esd);
126
127   Bool_t         IsSelected(TString detName, TString& detectors) const;
128   Bool_t         InitRunLoader();
129   AliReconstructor* GetReconstructor(Int_t iDet);
130   Bool_t         CreateVertexer();
131   Bool_t         CreateTrackers(const TString& detectors);
132   void           CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
133
134   Bool_t         ReadESD(AliESDEvent*& esd, const char* recStep) const;
135   void           WriteESD(AliESDEvent* esd, const char* recStep) const;
136
137    //==========================================//
138   void           ESDFile2AODFile(TFile* esdFile, TFile* aodFile);
139
140   void           WriteAlignmentData(AliESDEvent* esd);
141
142   void           FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
143
144   //Quality Assurance
145   Int_t                GetDetIndex(const char * detector);
146   AliQADataMaker*      GetQADataMaker(Int_t iDet);
147   const Int_t          GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; }
148   void                 CheckQA() ;
149
150   //*** Global reconstruction flags *******************
151   Bool_t         fUniformField;       // uniform field tracking flag
152   Bool_t         fRunVertexFinder;    // run the vertex finder
153   Bool_t         fRunHLTTracking;     // run the HLT tracking
154   Bool_t         fRunMuonTracking;    // run the HLT tracking
155   Bool_t         fRunV0Finder;        // run the ESD V0 finder
156   Bool_t         fRunCascadeFinder;   // run the ESD cascade finder
157   Bool_t         fStopOnError;        // stop or continue on errors
158   Bool_t         fWriteAlignmentData; // write track space-points flag
159   Bool_t         fWriteESDfriend;     // write ESD friend flag
160   Bool_t         fWriteAOD;           // write AOD flag
161   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
162
163   //*** Clean ESD flag and parameters *******************
164   Bool_t         fCleanESD;      // clean ESD flag
165   Float_t        fDmax;          // max. allowed transverse impact parameter 
166   Float_t        fZmax;          // max. allowed longitudinal impact parameter 
167
168   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
169   TString        fRunTracking;        // run the tracking for these detectors
170   TString        fFillESD;            // fill ESD for these detectors
171   TString        fUseTrackingErrorsForAlignment; // for these detectors
172   TString        fGAliceFileName;     // name of the galice file
173   TString        fInput;              // name of input file or directory
174   TString        fEquipIdMap;         // name of file with equipment id map
175   Int_t          fFirstEvent;         // index of first event to be reconstr.
176   Int_t          fLastEvent;          // index of last event to be reconstr.
177   UInt_t         fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
178   Int_t          fCheckPointLevel;    // level of ESD check points
179   TObjArray      fOptions;            // options for reconstructor objects
180   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
181   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
182   TString        fESDPar;             // String where the esd.par is stored, will be attached to the tree         
183
184
185   AliRunLoader*  fRunLoader;          //! current run loader object
186   AliRawReader*  fRawReader;          //! current raw data reader
187
188   static const Int_t fgkNDetectors = 15;   //! number of detectors
189   static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
190   AliReconstructor*  fReconstructor[fgkNDetectors];  //! array of reconstructor objects
191   AliLoader*     fLoader[fgkNDetectors];   //! detector loaders
192   AliVertexer*   fVertexer;                //! vertexer for ITS
193   AliTracker*    fTracker[fgkNDetectors];  //! trackers
194   AliESDVertex*  fDiamondProfile;          // (x,y) diamond profile for AliVertexerTracks
195
196   TList*         fGRPList;            // TList from the GRP/GRP/Data CDB folder
197
198   TObjArray*     fAlignObjArray;      // array with the alignment objects to be applied to the geometry
199
200   TString        fCDBUri;             // Uri of the default CDB storage
201   TString        fRemoteCDBUri;       // Uri of the remote CDB storage
202   TObjArray      fSpecCDBUri;         // Array with detector specific CDB storages
203
204   //Quality Assurance
205   AliQADataMaker * fQADataMaker[fgkNDetectors];  //! array of QA data maker objects
206   Int_t                 fQACycles[fgkNDetectors] ;         // cycle length (# events) over which QA data are accumulated
207
208   ClassDef(AliReconstruction, 15)      // class for running the reconstruction
209 };
210
211 #endif