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 |
24 | class AliReconstructor; |
596a855f |
25 | class AliRunLoader; |
b649205a |
26 | class AliRawReader; |
596a855f |
27 | class AliLoader; |
28 | class AliTracker; |
c84a5e9e |
29 | class AliVertexer; |
596a855f |
30 | class AliESD; |
e583c30d |
31 | class TFile; |
596a855f |
32 | |
f3a97c86 |
33 | class AliRunTag; |
34 | class AliLHCTag; |
35 | class AliDetectorTag; |
36 | class AliEventTag; |
37 | |
596a855f |
38 | |
39 | class AliReconstruction: public TNamed { |
40 | public: |
e583c30d |
41 | AliReconstruction(const char* gAliceFilename = "galice.root", |
024cf675 |
42 | const char* cdbUri = "local://$ALICE_ROOT", |
e583c30d |
43 | const char* name = "AliReconstruction", |
596a855f |
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); |
b649205a |
50 | void SetInput(const char* input) {fInput = input;}; |
b26c3770 |
51 | void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) |
52 | {fFirstEvent = firstEvent; fLastEvent = lastEvent;}; |
efd2085e |
53 | void SetOption(const char* detector, const char* option); |
596a855f |
54 | |
59697224 |
55 | void SetRunLocalReconstruction(const char* detectors) { |
56 | fRunLocalReconstruction = detectors;}; |
2257f27e |
57 | void SetRunVertexFinder(Bool_t run) {fRunVertexFinder = run;}; |
b8cd5251 |
58 | void SetRunTracking(const char* detectors) { |
59 | fRunTracking = detectors;}; |
596a855f |
60 | void SetFillESD(const char* detectors) {fFillESD = detectors;}; |
b8cd5251 |
61 | void SetRunReconstruction(const char* detectors) { |
62 | SetRunLocalReconstruction(detectors); |
63 | SetRunTracking(detectors); |
64 | SetFillESD(detectors);}; |
596a855f |
65 | |
c84a5e9e |
66 | void SetUniformFieldTracking(){fUniformField=kTRUE;} |
67 | void SetNonuniformFieldTracking(){fUniformField=kFALSE;} |
68 | |
24f7a148 |
69 | void SetStopOnError(Bool_t stopOnError) |
70 | {fStopOnError = stopOnError;} |
71 | void SetCheckPointLevel(Int_t checkPointLevel) |
72 | {fCheckPointLevel = checkPointLevel;} |
024cf675 |
73 | |
74 | // CDB storage activation |
75 | void InitCDBStorage(); |
76 | void SetDefaultStorage(const char* uri); |
77 | void SetSpecificStorage(const char* detName, const char* uri); |
24f7a148 |
78 | |
b26c3770 |
79 | virtual Bool_t Run(const char* input, |
80 | Int_t firstEvent, Int_t lastEvent = -1); |
81 | Bool_t Run(const char* input = NULL) |
82 | {return Run(input, fFirstEvent, fLastEvent);}; |
83 | Bool_t Run(Int_t firstEvent, Int_t lastEvent = -1) |
84 | {return Run(NULL, firstEvent, lastEvent);}; |
596a855f |
85 | |
98937d93 |
86 | void SetWriteAlignmentData(){fWriteAlignmentData=kTRUE;} |
87 | |
596a855f |
88 | private: |
59697224 |
89 | Bool_t RunLocalReconstruction(const TString& detectors); |
b26c3770 |
90 | Bool_t RunLocalEventReconstruction(const TString& detectors); |
2257f27e |
91 | Bool_t RunVertexFinder(AliESD*& esd); |
1f46a9ae |
92 | Bool_t RunHLTTracking(AliESD*& esd); |
24f7a148 |
93 | Bool_t RunTracking(AliESD*& esd); |
94 | Bool_t FillESD(AliESD*& esd, const TString& detectors); |
596a855f |
95 | |
e583c30d |
96 | Bool_t IsSelected(TString detName, TString& detectors) const; |
f08fc9f5 |
97 | Bool_t InitRunLoader(); |
b8cd5251 |
98 | AliReconstructor* GetReconstructor(Int_t iDet); |
2257f27e |
99 | Bool_t CreateVertexer(); |
b8cd5251 |
100 | Bool_t CreateTrackers(const TString& detectors); |
b26c3770 |
101 | void CleanUp(TFile* file = NULL, TFile* fileOld = NULL); |
e583c30d |
102 | |
24f7a148 |
103 | Bool_t ReadESD(AliESD*& esd, const char* recStep) const; |
104 | void WriteESD(AliESD* esd, const char* recStep) const; |
105 | |
f3a97c86 |
106 | |
107 | //===========================================// |
108 | void CreateTag(TFile* file); |
109 | //==========================================// |
110 | |
98937d93 |
111 | void WriteAlignmentData(AliESD* esd); |
f3a97c86 |
112 | |
113 | |
114 | |
59697224 |
115 | TString fRunLocalReconstruction; // run the local reconstruction for these detectors |
c84a5e9e |
116 | Bool_t fUniformField; // uniform field tracking flag |
2257f27e |
117 | Bool_t fRunVertexFinder; // run the vertex finder |
1f46a9ae |
118 | Bool_t fRunHLTTracking; // run the HLT tracking |
b8cd5251 |
119 | TString fRunTracking; // run the tracking for these detectors |
596a855f |
120 | TString fFillESD; // fill ESD for these detectors |
596a855f |
121 | TString fGAliceFileName; // name of the galice file |
b649205a |
122 | TString fInput; // name of input file or directory |
b26c3770 |
123 | Int_t fFirstEvent; // index of first event to be reconstr. |
124 | Int_t fLastEvent; // index of last event to be reconstr. |
e583c30d |
125 | Bool_t fStopOnError; // stop or continue on errors |
24f7a148 |
126 | Int_t fCheckPointLevel; // level of ESD check points |
b8cd5251 |
127 | TObjArray fOptions; // options for reconstructor objects |
596a855f |
128 | |
129 | AliRunLoader* fRunLoader; //! current run loader object |
b649205a |
130 | AliRawReader* fRawReader; //! current raw data reader |
596a855f |
131 | |
482070f2 |
132 | static const Int_t fgkNDetectors = 15; //! number of detectors |
c757bafd |
133 | static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors |
b8cd5251 |
134 | AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects |
135 | AliLoader* fLoader[fgkNDetectors]; //! detector loaders |
136 | AliVertexer* fVertexer; //! vertexer for ITS |
137 | AliTracker* fTracker[fgkNDetectors]; //! trackers |
59697224 |
138 | |
98937d93 |
139 | Bool_t fWriteAlignmentData; // write track space-points flag |
140 | |
024cf675 |
141 | TString fCDBUri; // Uri of the default CDB storage |
142 | |
98937d93 |
143 | ClassDef(AliReconstruction, 6) // class for running the reconstruction |
596a855f |
144 | }; |
145 | |
146 | #endif |