]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliReconstruction.h
Updated QA classes (Yves)
[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;
af885e0f 31class AliESDEvent;
e583c30d 32class TFile;
46698ae4 33class TTree;
a5fa6165 34class AliQualAssDataMaker;
596a855f 35
36class AliReconstruction: public TNamed {
37public:
e583c30d 38 AliReconstruction(const char* gAliceFilename = "galice.root",
024cf675 39 const char* cdbUri = "local://$ALICE_ROOT",
e583c30d 40 const char* name = "AliReconstruction",
596a855f 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);
b649205a 47 void SetInput(const char* input) {fInput = input;};
35042093 48 void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;};
b26c3770 49 void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1)
50 {fFirstEvent = firstEvent; fLastEvent = lastEvent;};
973388c2 51 void SetNumberOfEventsPerFile(UInt_t nEvents)
52 {fNumberOfEventsPerFile = nEvents;};
efd2085e 53 void SetOption(const char* detector, const char* option);
596a855f 54
59697224 55 void SetRunLocalReconstruction(const char* detectors) {
56 fRunLocalReconstruction = detectors;};
b8cd5251 57 void SetRunTracking(const char* detectors) {
58 fRunTracking = detectors;};
596a855f 59 void SetFillESD(const char* detectors) {fFillESD = detectors;};
b8cd5251 60 void SetRunReconstruction(const char* detectors) {
61 SetRunLocalReconstruction(detectors);
62 SetRunTracking(detectors);
63 SetFillESD(detectors);};
6bae477a 64 void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;};
65 void SetLoadAlignData(const char* detectors)
66 {fLoadAlignData = detectors;};
46698ae4 67 void SetESDParLocation(const char *c){fESDPar = c;}
68 TNamed *CopyFileToTNamed(TString fPath,TString fName);
69 void TNamedToFile(TTree* fTree, TString fName);
c84a5e9e 70
1d99986f 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 SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;}
76 void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;}
d64bd07d 77 void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;}
1d99986f 78 void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;}
a7807689 79 void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;}
b647652d 80 void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;}
9178838a 81 void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;}
1d99986f 82
24f7a148 83 void SetCheckPointLevel(Int_t checkPointLevel)
84 {fCheckPointLevel = checkPointLevel;}
024cf675 85 // CDB storage activation
86 void InitCDBStorage();
87 void SetDefaultStorage(const char* uri);
c3a7b59a 88 void SetSpecificStorage(const char* calibType, const char* uri);
24f7a148 89
6bae477a 90 Bool_t SetRunNumber();
91
6bae477a 92 Bool_t MisalignGeometry(const TString& detectors);
93
94 void SetAlignObjArray(TObjArray *array)
95 {fAlignObjArray = array;
96 fLoadAlignFromCDB = kFALSE;}
6bae477a 97
4a33489c 98 virtual Bool_t Run(const char* input = NULL);
596a855f 99
a5fa6165 100 // Quality Assurance
101 virtual Bool_t RunQualAss(const char* detectors, AliESDEvent *& esd);
98937d93 102
596a855f 103private:
59697224 104 Bool_t RunLocalReconstruction(const TString& detectors);
b26c3770 105 Bool_t RunLocalEventReconstruction(const TString& detectors);
af885e0f 106 Bool_t RunVertexFinder(AliESDEvent*& esd);
107 Bool_t RunHLTTracking(AliESDEvent*& esd);
108 Bool_t RunMuonTracking(AliESDEvent*& esd);
109 Bool_t RunTracking(AliESDEvent*& esd);
d64bd07d 110 Bool_t CleanESD(AliESDEvent *esd);
af885e0f 111 Bool_t FillESD(AliESDEvent*& esd, const TString& detectors);
112 Bool_t FillTriggerESD(AliESDEvent*& esd);
113 Bool_t FillRawEventHeaderESD(AliESDEvent*& 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
af885e0f 122 Bool_t ReadESD(AliESDEvent*& esd, const char* recStep) const;
123 void WriteESD(AliESDEvent* esd, const char* recStep) const;
24f7a148 124
593df3b8 125 //==========================================//
f29f1726 126 void ESDFile2AODFile(TFile* esdFile, TFile* aodFile);
f3a97c86 127
af885e0f 128 void WriteAlignmentData(AliESDEvent* esd);
f3a97c86 129
af885e0f 130 void FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd);
f3a97c86 131
a5fa6165 132 //Quality Assurance
133 AliQualAssDataMaker* GetQualAssDataMaker(Int_t iDet);
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
d64bd07d 142 Bool_t fCleanESD; // clean ESD flag
1d99986f 143 Bool_t fWriteESDfriend; // write ESD friend flag
a7807689 144 Bool_t fWriteAOD; // write AOD flag
b647652d 145 Bool_t fFillTriggerESD; // fill trigger info into ESD
1d99986f 146
147 TString fRunLocalReconstruction; // run the local reconstruction for these detectors
b8cd5251 148 TString fRunTracking; // run the tracking for these detectors
596a855f 149 TString fFillESD; // fill ESD for these detectors
596a855f 150 TString fGAliceFileName; // name of the galice file
b649205a 151 TString fInput; // name of input file or directory
35042093 152 TString fEquipIdMap; // name of file with equipment id map
b26c3770 153 Int_t fFirstEvent; // index of first event to be reconstr.
154 Int_t fLastEvent; // index of last event to be reconstr.
973388c2 155 UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction
24f7a148 156 Int_t fCheckPointLevel; // level of ESD check points
b8cd5251 157 TObjArray fOptions; // options for reconstructor objects
6bae477a 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
46698ae4 160 TString fESDPar; // String where the esd.par is stored, will be attached to the tree
161
596a855f 162
163 AliRunLoader* fRunLoader; //! current run loader object
b649205a 164 AliRawReader* fRawReader; //! current raw data reader
596a855f 165
482070f2 166 static const Int_t fgkNDetectors = 15; //! number of detectors
c757bafd 167 static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors
b8cd5251 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
9178838a 172 AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks
59697224 173
6bae477a 174 TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry
98937d93 175
024cf675 176 TString fCDBUri; // Uri of the default CDB storage
ec92bee0 177 TObjArray fSpecCDBUri; // Array with detector specific CDB storages
024cf675 178
a5fa6165 179 //Quality Assurance
180 AliQualAssDataMaker * fQualAssDataMaker[fgkNDetectors]; //! array of QA data maker objects
181
d64bd07d 182 ClassDef(AliReconstruction, 12) // class for running the reconstruction
596a855f 183};
184
185#endif