]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
Introduction of equipment id map. The map is taken from simple ascii formatted file...
[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 AliESD;
31 class TFile;
32
33 class AliRunTag;
34 class AliLHCTag;
35 class AliDetectorTag;
36 class AliEventTag;
37
38
39 class AliReconstruction: public TNamed {
40 public:
41   AliReconstruction(const char* gAliceFilename = "galice.root",
42                     const char* cdbUri = "local://$ALICE_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) {fInput = input;};
51   void           SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
52   void           SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) 
53     {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
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           SetLoadAlignFromCDB(Bool_t load)  {fLoadAlignFromCDB = load;};
66   void           SetLoadAlignData(const char* detectors) 
67     {fLoadAlignData = detectors;};
68
69
70   //*** Global reconstruction flag setters
71   void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;} 
72   void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;};
73   void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;};
74   void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
75   void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
76   void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
77   void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
78
79                    
80   void           SetCheckPointLevel(Int_t checkPointLevel)
81     {fCheckPointLevel = checkPointLevel;}
82   // CDB storage activation
83   void InitCDBStorage();
84   void SetDefaultStorage(const char* uri);
85   void SetSpecificStorage(const char* detName, const char* uri);    
86
87   Bool_t SetRunNumber();
88
89   Bool_t SetAlignObjArraySingleDet(const char* detName);
90   Bool_t MisalignGeometry(const TString& detectors);
91
92   void           SetAlignObjArray(TObjArray *array)
93                    {fAlignObjArray = array;
94                    fLoadAlignFromCDB = kFALSE;}
95   Bool_t         ApplyAlignObjsToGeom(TObjArray* alObjArray);
96
97   virtual Bool_t Run(const char* input, 
98                      Int_t firstEvent, Int_t lastEvent = -1);
99   Bool_t         Run(const char* input = NULL)
100     {return Run(input, fFirstEvent, fLastEvent);};
101   Bool_t         Run(Int_t firstEvent, Int_t lastEvent = -1)
102     {return Run(NULL, firstEvent, lastEvent);};
103
104
105 private:
106   Bool_t         RunLocalReconstruction(const TString& detectors);
107   Bool_t         RunLocalEventReconstruction(const TString& detectors);
108   Bool_t         RunVertexFinder(AliESD*& esd);
109   Bool_t         RunHLTTracking(AliESD*& esd);
110   Bool_t         RunTracking(AliESD*& esd);
111   Bool_t         FillESD(AliESD*& esd, const TString& detectors);
112   Bool_t         FillTriggerESD(AliESD*& esd);
113
114   Bool_t         IsSelected(TString detName, TString& detectors) const;
115   Bool_t         InitRunLoader();
116   AliReconstructor* GetReconstructor(Int_t iDet);
117   Bool_t         CreateVertexer();
118   Bool_t         CreateTrackers(const TString& detectors);
119   void           CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
120
121   Bool_t         ReadESD(AliESD*& esd, const char* recStep) const;
122   void           WriteESD(AliESD* esd, const char* recStep) const;
123
124  
125   //===========================================//
126   void           CreateTag(TFile* file);
127   //==========================================//
128
129   void           WriteAlignmentData(AliESD* esd);
130
131
132   //*** Global reconstruction flags *******************
133   Bool_t         fUniformField;       // uniform field tracking flag
134   Bool_t         fRunVertexFinder;    // run the vertex finder
135   Bool_t         fRunHLTTracking;     // run the HLT tracking
136   Bool_t         fStopOnError;        // stop or continue on errors
137   Bool_t         fWriteAlignmentData; // write track space-points flag
138   Bool_t         fWriteESDfriend;     // write ESD friend flag
139   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
140
141   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
142   TString        fRunTracking;        // run the tracking for these detectors
143   TString        fFillESD;            // fill ESD for these detectors
144   TString        fGAliceFileName;     // name of the galice file
145   TString        fInput;              // name of input file or directory
146   TString        fEquipIdMap;         // name of file with equipment id map
147   Int_t          fFirstEvent;         // index of first event to be reconstr.
148   Int_t          fLastEvent;          // index of last event to be reconstr.
149   Int_t          fCheckPointLevel;    // level of ESD check points
150   TObjArray      fOptions;            // options for reconstructor objects
151   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
152   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
153
154   AliRunLoader*  fRunLoader;          //! current run loader object
155   AliRawReader*  fRawReader;          //! current raw data reader
156
157   static const Int_t fgkNDetectors = 15;   //! number of detectors
158   static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
159   AliReconstructor*  fReconstructor[fgkNDetectors];  //! array of reconstructor objects
160   AliLoader*     fLoader[fgkNDetectors];   //! detector loaders
161   AliVertexer*   fVertexer;                //! vertexer for ITS
162   AliTracker*    fTracker[fgkNDetectors];  //! trackers
163
164   TObjArray*     fAlignObjArray;      // array with the alignment objects to be applied to the geometry
165
166   TString        fCDBUri;             // Uri of the default CDB storage
167
168   ClassDef(AliReconstruction, 7)      // class for running the reconstruction
169 };
170
171 #endif