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