]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliReconstruction.h
Two new classes added (Marian)
[u/mrichter/AliRoot.git] / STEER / AliReconstruction.h
CommitLineData
596a855f 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
af7ba10c 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
596a855f 20#include <TNamed.h>
21#include <TString.h>
59697224 22#include <TObjArray.h>
596a855f 23
b8cd5251 24class AliReconstructor;
596a855f 25class AliRunLoader;
b649205a 26class AliRawReader;
596a855f 27class AliLoader;
28class AliTracker;
c84a5e9e 29class AliVertexer;
9178838a 30class AliESDVertex;
596a855f 31class AliESD;
e583c30d 32class TFile;
596a855f 33
f3a97c86 34class AliRunTag;
35class AliLHCTag;
36class AliDetectorTag;
37class AliEventTag;
38
596a855f 39
40class AliReconstruction: public TNamed {
41public:
e583c30d 42 AliReconstruction(const char* gAliceFilename = "galice.root",
024cf675 43 const char* cdbUri = "local://$ALICE_ROOT",
e583c30d 44 const char* name = "AliReconstruction",
596a855f 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);
b649205a 51 void SetInput(const char* input) {fInput = input;};
35042093 52 void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
b26c3770 53 void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1)
54 {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
973388c2 55 void SetNumberOfEventsPerFile(UInt_t nEvents)
56 {fNumberOfEventsPerFile = nEvents;};
efd2085e 57 void SetOption(const char* detector, const char* option);
596a855f 58
59697224 59 void SetRunLocalReconstruction(const char* detectors) {
60 fRunLocalReconstruction = detectors;};
b8cd5251 61 void SetRunTracking(const char* detectors) {
62 fRunTracking = detectors;};
596a855f 63 void SetFillESD(const char* detectors) {fFillESD = detectors;};
b8cd5251 64 void SetRunReconstruction(const char* detectors) {
65 SetRunLocalReconstruction(detectors);
66 SetRunTracking(detectors);
67 SetFillESD(detectors);};
6bae477a 68 void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;};
69 void SetLoadAlignData(const char* detectors)
70 {fLoadAlignData = detectors;};
596a855f 71
c84a5e9e 72
1d99986f 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 SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
78 void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
79 void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
a7807689 80 void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;}
b647652d 81 void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
9178838a 82 void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
1d99986f 83
24f7a148 84 void SetCheckPointLevel(Int_t checkPointLevel)
85 {fCheckPointLevel = checkPointLevel;}
024cf675 86 // CDB storage activation
87 void InitCDBStorage();
88 void SetDefaultStorage(const char* uri);
c3a7b59a 89 void SetSpecificStorage(const char* calibType, const char* uri);
24f7a148 90
6bae477a 91 Bool_t SetRunNumber();
92
93 Bool_t SetAlignObjArraySingleDet(const char* detName);
94 Bool_t MisalignGeometry(const TString& detectors);
95
96 void SetAlignObjArray(TObjArray *array)
97 {fAlignObjArray = array;
98 fLoadAlignFromCDB = kFALSE;}
99 Bool_t ApplyAlignObjsToGeom(TObjArray* alObjArray);
100
4a33489c 101 virtual Bool_t Run(const char* input = NULL);
596a855f 102
98937d93 103
596a855f 104private:
59697224 105 Bool_t RunLocalReconstruction(const TString& detectors);
b26c3770 106 Bool_t RunLocalEventReconstruction(const TString& detectors);
2257f27e 107 Bool_t RunVertexFinder(AliESD*& esd);
1f46a9ae 108 Bool_t RunHLTTracking(AliESD*& esd);
e66fbafb 109 Bool_t RunMuonTracking();
24f7a148 110 Bool_t RunTracking(AliESD*& esd);
111 Bool_t FillESD(AliESD*& esd, const TString& detectors);
b647652d 112 Bool_t FillTriggerESD(AliESD*& esd);
001397cd 113 Bool_t FillRawEventHeaderESD(AliESD*& esd);
596a855f 114
e583c30d 115 Bool_t IsSelected(TString detName, TString& detectors) const;
f08fc9f5 116 Bool_t InitRunLoader();
b8cd5251 117 AliReconstructor* GetReconstructor(Int_t iDet);
2257f27e 118 Bool_t CreateVertexer();
b8cd5251 119 Bool_t CreateTrackers(const TString& detectors);
b26c3770 120 void CleanUp(TFile* file = NULL, TFile* fileOld = NULL);
e583c30d 121
24f7a148 122 Bool_t ReadESD(AliESD*& esd, const char* recStep) const;
123 void WriteESD(AliESD* esd, const char* recStep) const;
124
f3a97c86 125
126 //===========================================//
127 void CreateTag(TFile* file);
128 //==========================================//
a7807689 129 void CreateAOD(TFile* file);
f3a97c86 130
98937d93 131 void WriteAlignmentData(AliESD* esd);
f3a97c86 132
2e3550da 133 void FillRawDataErrorLog(Int_t iEvent, AliESD* esd);
f3a97c86 134
1d99986f 135 //*** Global reconstruction flags *******************
c84a5e9e 136 Bool_t fUniformField; // uniform field tracking flag
2257f27e 137 Bool_t fRunVertexFinder; // run the vertex finder
1f46a9ae 138 Bool_t fRunHLTTracking; // run the HLT tracking
e66fbafb 139 Bool_t fRunMuonTracking; // run the HLT tracking
1d99986f 140 Bool_t fStopOnError; // stop or continue on errors
141 Bool_t fWriteAlignmentData; // write track space-points flag
142 Bool_t fWriteESDfriend; // write ESD friend flag
a7807689 143 Bool_t fWriteAOD; // write AOD flag
b647652d 144 Bool_t fFillTriggerESD; // fill trigger info into ESD
1d99986f 145
146 TString fRunLocalReconstruction; // run the local reconstruction for these detectors
b8cd5251 147 TString fRunTracking; // run the tracking for these detectors
596a855f 148 TString fFillESD; // fill ESD for these detectors
596a855f 149 TString fGAliceFileName; // name of the galice file
b649205a 150 TString fInput; // name of input file or directory
35042093 151 TString fEquipIdMap; // name of file with equipment id map
b26c3770 152 Int_t fFirstEvent; // index of first event to be reconstr.
153 Int_t fLastEvent; // index of last event to be reconstr.
973388c2 154 UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
24f7a148 155 Int_t fCheckPointLevel; // level of ESD check points
b8cd5251 156 TObjArray fOptions; // options for reconstructor objects
6bae477a 157 Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not
158 TString fLoadAlignData; // Load alignment data from CDB for these detectors
596a855f 159
160 AliRunLoader* fRunLoader; //! current run loader object
b649205a 161 AliRawReader* fRawReader; //! current raw data reader
596a855f 162
482070f2 163 static const Int_t fgkNDetectors = 15; //! number of detectors
c757bafd 164 static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
b8cd5251 165 AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects
166 AliLoader* fLoader[fgkNDetectors]; //! detector loaders
167 AliVertexer* fVertexer; //! vertexer for ITS
168 AliTracker* fTracker[fgkNDetectors]; //! trackers
9178838a 169 AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks
59697224 170
6bae477a 171 TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry
98937d93 172
024cf675 173 TString fCDBUri; // Uri of the default CDB storage
ec92bee0 174 TObjArray fSpecCDBUri; // Array with detector specific CDB storages
024cf675 175
9178838a 176 ClassDef(AliReconstruction, 9) // class for running the reconstruction
596a855f 177};
178
179#endif