]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliReconstruction.h
The test function static (A.Kalweit)
[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           SetLoadAlignFromCDB(Bool_t load)  {fLoadAlignFromCDB = load;};
65   void           SetLoadAlignData(const char* detectors) 
66     {fLoadAlignData = detectors;};
67   void           SetESDParLocation(const char *c){fESDPar = c;}
68   TNamed *CopyFileToTNamed(TString fPath,TString fName);
69   void  TNamedToFile(TTree* fTree, TString fName);
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 SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;};
76   void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;};
77   void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
78   void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
79   void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
80   void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
81   void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;}
82   void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
83   void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
84                    
85   void           SetCheckPointLevel(Int_t checkPointLevel)
86     {fCheckPointLevel = checkPointLevel;}
87   // CDB storage activation
88   void InitCDBStorage();
89   void SetDefaultStorage(const char* uri);
90   void SetRemoteStorage(const char* uri);
91   void SetSpecificStorage(const char* calibType, const char* uri);
92
93   Bool_t SetRunNumber();
94
95   Bool_t MisalignGeometry(const TString& detectors);
96
97   void           SetAlignObjArray(TObjArray *array)
98                    {fAlignObjArray = array;
99                    fLoadAlignFromCDB = kFALSE;}
100
101   virtual Bool_t Run(const char* input = NULL);
102
103   // Quality Assurance 
104   virtual Bool_t RunQualAss(const char* detectors, AliESDEvent *& esd);
105
106 private:
107   Bool_t         RunLocalReconstruction(const TString& detectors);
108   Bool_t         RunLocalEventReconstruction(const TString& detectors);
109   Bool_t         RunVertexFinder(AliESDEvent*& esd);
110   Bool_t         RunHLTTracking(AliESDEvent*& esd);
111   Bool_t         RunMuonTracking(AliESDEvent*& esd);
112   Bool_t         RunTracking(AliESDEvent*& esd);
113   Bool_t         CleanESD(AliESDEvent *esd);
114   Bool_t         FillESD(AliESDEvent*& esd, const TString& detectors);
115   Bool_t         FillTriggerESD(AliESDEvent*& esd);
116   Bool_t         FillRawEventHeaderESD(AliESDEvent*& esd);
117
118   Bool_t         IsSelected(TString detName, TString& detectors) const;
119   Bool_t         InitRunLoader();
120   AliReconstructor* GetReconstructor(Int_t iDet);
121   Bool_t         CreateVertexer();
122   Bool_t         CreateTrackers(const TString& detectors);
123   void           CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
124
125   Bool_t         ReadESD(AliESDEvent*& esd, const char* recStep) const;
126   void           WriteESD(AliESDEvent* esd, const char* recStep) const;
127
128    //==========================================//
129   void           ESDFile2AODFile(TFile* esdFile, TFile* aodFile);
130
131   void           WriteAlignmentData(AliESDEvent* esd);
132
133   void           FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
134
135   //Quality Assurance
136   AliQualAssDataMaker* GetQualAssDataMaker(Int_t iDet);
137
138   //*** Global reconstruction flags *******************
139   Bool_t         fUniformField;       // uniform field tracking flag
140   Bool_t         fRunVertexFinder;    // run the vertex finder
141   Bool_t         fRunHLTTracking;     // run the HLT tracking
142   Bool_t         fRunMuonTracking;    // run the HLT tracking
143   Bool_t         fRunV0Finder;        // run the ESD V0 finder
144   Bool_t         fRunCascadeFinder;   // run the ESD cascade finder
145   Bool_t         fStopOnError;        // stop or continue on errors
146   Bool_t         fWriteAlignmentData; // write track space-points flag
147   Bool_t         fCleanESD;           // clean ESD flag
148   Bool_t         fWriteESDfriend;     // write ESD friend flag
149   Bool_t         fWriteAOD;           // write AOD flag
150   Bool_t         fFillTriggerESD;     // fill trigger info into ESD
151
152   TString        fRunLocalReconstruction; // run the local reconstruction for these detectors
153   TString        fRunTracking;        // run the tracking for these detectors
154   TString        fFillESD;            // fill ESD for these detectors
155   TString        fGAliceFileName;     // name of the galice file
156   TString        fInput;              // name of input file or directory
157   TString        fEquipIdMap;         // name of file with equipment id map
158   Int_t          fFirstEvent;         // index of first event to be reconstr.
159   Int_t          fLastEvent;          // index of last event to be reconstr.
160   UInt_t         fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
161   Int_t          fCheckPointLevel;    // level of ESD check points
162   TObjArray      fOptions;            // options for reconstructor objects
163   Bool_t         fLoadAlignFromCDB;   // Load alignment data from CDB and apply it to geometry or not
164   TString        fLoadAlignData;      // Load alignment data from CDB for these detectors
165   TString        fESDPar;             // String where the esd.par is stored, will be attached to the tree         
166
167
168   AliRunLoader*  fRunLoader;          //! current run loader object
169   AliRawReader*  fRawReader;          //! current raw data reader
170
171   static const Int_t fgkNDetectors = 15;   //! number of detectors
172   static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
173   AliReconstructor*  fReconstructor[fgkNDetectors];  //! array of reconstructor objects
174   AliLoader*     fLoader[fgkNDetectors];   //! detector loaders
175   AliVertexer*   fVertexer;                //! vertexer for ITS
176   AliTracker*    fTracker[fgkNDetectors];  //! trackers
177   AliESDVertex*  fDiamondProfile;          // (x,y) diamond profile for AliVertexerTracks
178
179   TObjArray*     fAlignObjArray;      // array with the alignment objects to be applied to the geometry
180
181   TString        fCDBUri;             // Uri of the default CDB storage
182   TString        fRemoteCDBUri;       // Uri of the remote CDB storage
183   TObjArray      fSpecCDBUri;         // Array with detector specific CDB storages
184
185   //Quality Assurance
186   AliQualAssDataMaker * fQualAssDataMaker[fgkNDetectors];  //! array of QA data maker objects
187
188   ClassDef(AliReconstruction, 13)      // class for running the reconstruction
189 };
190
191 #endif