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; |
2257f27e |
28 | class AliVertexer; |
596a855f |
29 | class AliTracker; |
30 | class AliESD; |
e583c30d |
31 | class TFile; |
596a855f |
32 | |
33 | |
34 | class AliReconstruction: public TNamed { |
35 | public: |
e583c30d |
36 | AliReconstruction(const char* gAliceFilename = "galice.root", |
37 | const char* name = "AliReconstruction", |
596a855f |
38 | const char* title = "reconstruction"); |
39 | AliReconstruction(const AliReconstruction& rec); |
40 | AliReconstruction& operator = (const AliReconstruction& rec); |
41 | virtual ~AliReconstruction(); |
42 | |
43 | void SetGAliceFile(const char* fileName); |
b649205a |
44 | void SetInput(const char* input) {fInput = input;}; |
efd2085e |
45 | void SetOption(const char* detector, const char* option); |
596a855f |
46 | |
59697224 |
47 | void SetRunLocalReconstruction(const char* detectors) { |
48 | fRunLocalReconstruction = detectors;}; |
2257f27e |
49 | void SetRunVertexFinder(Bool_t run) {fRunVertexFinder = run;}; |
b8cd5251 |
50 | void SetRunTracking(const char* detectors) { |
51 | fRunTracking = detectors;}; |
596a855f |
52 | void SetFillESD(const char* detectors) {fFillESD = detectors;}; |
b8cd5251 |
53 | void SetRunReconstruction(const char* detectors) { |
54 | SetRunLocalReconstruction(detectors); |
55 | SetRunTracking(detectors); |
56 | SetFillESD(detectors);}; |
596a855f |
57 | |
24f7a148 |
58 | void SetStopOnError(Bool_t stopOnError) |
59 | {fStopOnError = stopOnError;} |
60 | void SetCheckPointLevel(Int_t checkPointLevel) |
61 | {fCheckPointLevel = checkPointLevel;} |
62 | |
b649205a |
63 | virtual Bool_t Run(const char* input = NULL); |
596a855f |
64 | |
65 | private: |
59697224 |
66 | Bool_t RunLocalReconstruction(const TString& detectors); |
2257f27e |
67 | Bool_t RunVertexFinder(AliESD*& esd); |
24f7a148 |
68 | Bool_t RunTracking(AliESD*& esd); |
69 | Bool_t FillESD(AliESD*& esd, const TString& detectors); |
596a855f |
70 | |
e583c30d |
71 | Bool_t IsSelected(TString detName, TString& detectors) const; |
f08fc9f5 |
72 | Bool_t InitRunLoader(); |
b8cd5251 |
73 | AliReconstructor* GetReconstructor(Int_t iDet); |
2257f27e |
74 | Bool_t CreateVertexer(); |
b8cd5251 |
75 | Bool_t CreateTrackers(const TString& detectors); |
e583c30d |
76 | void CleanUp(TFile* file = NULL); |
77 | |
24f7a148 |
78 | Bool_t ReadESD(AliESD*& esd, const char* recStep) const; |
79 | void WriteESD(AliESD* esd, const char* recStep) const; |
80 | |
59697224 |
81 | TString fRunLocalReconstruction; // run the local reconstruction for these detectors |
2257f27e |
82 | Bool_t fRunVertexFinder; // run the vertex finder |
b8cd5251 |
83 | TString fRunTracking; // run the tracking for these detectors |
596a855f |
84 | TString fFillESD; // fill ESD for these detectors |
596a855f |
85 | TString fGAliceFileName; // name of the galice file |
b649205a |
86 | TString fInput; // name of input file or directory |
e583c30d |
87 | Bool_t fStopOnError; // stop or continue on errors |
24f7a148 |
88 | Int_t fCheckPointLevel; // level of ESD check points |
b8cd5251 |
89 | TObjArray fOptions; // options for reconstructor objects |
596a855f |
90 | |
91 | AliRunLoader* fRunLoader; //! current run loader object |
b649205a |
92 | AliRawReader* fRawReader; //! current raw data reader |
596a855f |
93 | |
482070f2 |
94 | static const Int_t fgkNDetectors = 15; //! number of detectors |
c757bafd |
95 | static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors |
b8cd5251 |
96 | AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects |
97 | AliLoader* fLoader[fgkNDetectors]; //! detector loaders |
98 | AliVertexer* fVertexer; //! vertexer for ITS |
99 | AliTracker* fTracker[fgkNDetectors]; //! trackers |
59697224 |
100 | |
b8cd5251 |
101 | ClassDef(AliReconstruction, 3) // class for running the reconstruction |
596a855f |
102 | }; |
103 | |
104 | #endif |