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