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