]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSReconstructor.cxx
Forgotten commit
[u/mrichter/AliRoot.git] / ITS / AliITSReconstructor.cxx
... / ...
CommitLineData
1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
18///////////////////////////////////////////////////////////////////////////////
19// //
20// class for ITS reconstruction //
21// //
22///////////////////////////////////////////////////////////////////////////////
23
24#include "Riostream.h"
25#include "AliITSReconstructor.h"
26#include "AliRun.h"
27#include "AliRawReader.h"
28#include "AliITSDetTypeRec.h"
29#include "AliITSgeom.h"
30#include "AliITSLoader.h"
31#include "AliITStrackerMI.h"
32#include "AliITStrackerV2.h"
33#include "AliITStrackerSA.h"
34#include "AliITSVertexerIons.h"
35#include "AliITSVertexerFast.h"
36#include "AliITSVertexerFixed.h"
37#include "AliITSVertexer3D.h"
38#include "AliITSVertexerZ.h"
39#include "AliITSVertexerCosmics.h"
40#include "AliESDEvent.h"
41#include "AliITSpidESD.h"
42#include "AliITSpidESD1.h"
43#include "AliITSpidESD2.h"
44#include "AliITSInitGeometry.h"
45#include "AliITSTrackleterSPDEff.h"
46
47
48ClassImp(AliITSReconstructor)
49
50//___________________________________________________________________________
51AliITSReconstructor::AliITSReconstructor() : AliReconstructor(),
52fItsPID(0),
53fDetTypeRec(0)
54{
55 // Default constructor
56}
57 //___________________________________________________________________________
58AliITSReconstructor::~AliITSReconstructor(){
59// destructor
60 delete fItsPID;
61 if(fDetTypeRec) delete fDetTypeRec;
62}
63//______________________________________________________________________
64AliITSReconstructor::AliITSReconstructor(const AliITSReconstructor &ob) :AliReconstructor(ob),
65fItsPID(ob.fItsPID),
66fDetTypeRec(ob.fDetTypeRec)
67
68{
69 // Copy constructor
70}
71
72//______________________________________________________________________
73AliITSReconstructor& AliITSReconstructor::operator=(const AliITSReconstructor& ob ){
74 // Assignment operator
75 this->~AliITSReconstructor();
76 new(this) AliITSReconstructor(ob);
77 return *this;
78}
79
80//______________________________________________________________________
81void AliITSReconstructor::Init() {
82 // Initalize this constructor bet getting/creating the objects
83 // nesseary for a proper ITS reconstruction.
84 // Inputs:
85 // none.
86 // Output:
87 // none.
88 // Return:
89 // none.
90
91 AliITSInitGeometry initgeom;
92 AliITSgeom *geom = initgeom.CreateAliITSgeom();
93 AliInfo(Form("Geometry name: %s",(initgeom.GetGeometryName()).Data()));
94
95 fDetTypeRec = new AliITSDetTypeRec();
96 fDetTypeRec->SetITSgeom(geom);
97 fDetTypeRec->SetDefaults();
98
99 return;
100}
101
102//_____________________________________________________________________________
103void AliITSReconstructor::Reconstruct(TTree *digitsTree, TTree *clustersTree) const
104{
105// reconstruct clusters
106
107 Int_t cluFindOpt = GetRecoParam()->GetClusterFinder();
108
109 fDetTypeRec->SetTreeAddressD(digitsTree);
110 fDetTypeRec->MakeBranch(clustersTree,"R");
111 fDetTypeRec->SetTreeAddressR(clustersTree);
112 fDetTypeRec->DigitsToRecPoints(digitsTree,clustersTree,0,"All",cluFindOpt);
113}
114
115//_________________________________________________________________
116void AliITSReconstructor::Reconstruct(AliRawReader* rawReader, TTree *clustersTree) const
117{
118 // reconstruct clusters from raw data
119
120 fDetTypeRec->SetDefaultClusterFindersV2(kTRUE);
121 fDetTypeRec->DigitsToRecPoints(rawReader,clustersTree);
122}
123//_____________________________________________________________________________
124AliTracker* AliITSReconstructor::CreateTrackleter() const
125{
126// create the SPD trackeleter (for SPD PlaneEfficiency evaluation)
127 if(!GetRecoParam()->GetComputePlaneEff() && !GetRecoParam()->GetUseTrackletsPlaneEff()) return NULL;
128 //Int_t trackerOpt = GetRecoParam()->GetTracker();
129 AliTracker* trackleter;
130 trackleter = new AliITSTrackleterSPDEff();
131 AliITSTrackleterSPDEff *spdtrackleter=(AliITSTrackleterSPDEff*)trackleter;
132 // here set cuts (from RecoParam)
133 if(GetRecoParam()->GetBkgTrackletsPlaneEff()) spdtrackleter->SetReflectClusterAroundZAxisForLayer(1,kTRUE);
134 if(GetRecoParam()->GetMCTrackletsPlaneEff()) spdtrackleter->SetMC();
135 spdtrackleter->SetHistOn();
136 spdtrackleter->SetPhiWindow(GetRecoParam()->GetTrackleterPhiWindow());
137 spdtrackleter->SetZetaWindow(GetRecoParam()->GetTrackleterZetaWindow());
138 spdtrackleter->SetPhiWindowL1(GetRecoParam()->GetTrackleterPhiWindowL1());
139 spdtrackleter->SetZetaWindowL1(GetRecoParam()->GetTrackleterZetaWindowL1());
140 if(GetRecoParam()->GetUpdateOncePerEventPlaneEff()) spdtrackleter->SetUpdateOncePerEventPlaneEff();
141 //spdtrackleter->(GetRecoParam()->GetMinContVtxPlaneEff()); // to be implemented
142 return trackleter;
143}
144
145//_____________________________________________________________________________
146AliTracker* AliITSReconstructor::CreateTracker() const
147{
148// create a ITS tracker
149
150 Int_t trackerOpt = GetRecoParam()->GetTracker();
151 AliTracker* tracker;
152 if (trackerOpt==1) {
153 tracker = new AliITStrackerMI(0);
154 AliITStrackerMI *mit=(AliITStrackerMI*)tracker;
155 mit->SetDetTypeRec(fDetTypeRec);
156 }
157 else if (trackerOpt==2) {
158 tracker = new AliITStrackerV2(0);
159 }
160 else {
161 tracker = new AliITStrackerSA(0); // inherits from AliITStrackerMI
162 AliITStrackerSA *sat=(AliITStrackerSA*)tracker;
163 sat->SetDetTypeRec(fDetTypeRec);
164 if(GetRecoParam()->GetTrackerSAOnly()) sat->SetSAFlag(kTRUE);
165 if(sat->GetSAFlag())AliDebug(1,"Tracking Performed in ITS only\n");
166 if(GetRecoParam()->GetInwardFindingSA()){
167 sat->SetInwardFinding();
168 sat->SetInnerStartLayer(GetRecoParam()->GetInnerStartLayerSA());
169 }else{
170 sat->SetOutwardFinding();
171 sat->SetOuterStartLayer(GetRecoParam()->GetOuterStartLayerSA());
172 }
173 sat->SetMinNPoints(GetRecoParam()->GetMinNPointsSA());
174 }
175
176 Int_t pidOpt = GetRecoParam()->GetPID();
177
178 AliITSReconstructor* nc = const_cast<AliITSReconstructor*>(this);
179 if(pidOpt==1){
180 Info("FillESD","ITS LandauFitPID option has been selected\n");
181 nc->fItsPID = new AliITSpidESD2((AliITStrackerMI*)tracker);
182 }
183 else{
184 Info("FillESD","ITS default PID\n");
185 Double_t parITS[] = {79.,0.13, 5.}; //IB: this is "pp tuning"
186 nc->fItsPID = new AliITSpidESD1(parITS);
187 }
188
189 return tracker;
190
191}
192
193//_____________________________________________________________________________
194AliVertexer* AliITSReconstructor::CreateVertexer() const
195{
196// create a ITS vertexer
197
198 AliITSVertexer *vptr;
199 Int_t vtxOpt = GetRecoParam()->GetVertexer();
200 if(vtxOpt==3){
201 Info("CreateVertexer","a AliITSVertexerIons object has been selected\n");
202 vptr = new AliITSVertexerIons();
203 }
204 else if(vtxOpt==4){
205 Double_t smear[3]={0.005,0.005,0.01};
206 Info("CreateVertexer","a AliITSVertexerFast object has been selected\n");
207 vptr = new AliITSVertexerFast(smear);
208 }
209 else if(vtxOpt==1){
210 Info("CreateVertexer","a AliITSVertexerZ object has been selected\n");
211 vptr = new AliITSVertexerZ();
212 }
213 else if(vtxOpt==2){
214 Info("CreateVertexer","a AliITSVertexerCosmics object has been selected\n");
215 vptr = new AliITSVertexerCosmics();
216 }
217 else if(vtxOpt==5){
218 Info("CreateVertexer","vertex is fixed in the position of the TDI\n");
219 vptr = new AliITSVertexerFixed("TDI");
220 }
221 else if(vtxOpt==6){
222 Info("CreateVertexer","vertex is fixed in the position of the TED\n");
223 vptr = new AliITSVertexerFixed("TED");
224 }
225 else {
226 // by default an AliITSVertexer3D object is instatiated
227 Info("CreateVertexer","a AliITSVertexer3D object has been selected\n");
228 AliITSVertexer3D* vtxr = new AliITSVertexer3D();
229 Float_t dzw=GetRecoParam()->GetVertexer3DWideFiducialRegionZ();
230 Float_t drw=GetRecoParam()->GetVertexer3DWideFiducialRegionR();
231 vtxr->SetWideFiducialRegion(dzw,drw);
232 Float_t dzn=GetRecoParam()->GetVertexer3DNarrowFiducialRegionZ();
233 Float_t drn=GetRecoParam()->GetVertexer3DNarrowFiducialRegionR();
234 vtxr->SetNarrowFiducialRegion(dzn,drn);
235 Float_t dphil=GetRecoParam()->GetVertexer3DLooseDeltaPhiCut();
236 Float_t dphit=GetRecoParam()->GetVertexer3DTightDeltaPhiCut();
237 vtxr->SetDeltaPhiCuts(dphil,dphit);
238 Float_t dcacut=GetRecoParam()->GetVertexer3DDCACut();
239 vtxr->SetDCACut(dcacut);
240 vptr = vtxr;
241 }
242 vptr->SetDetTypeRec(fDetTypeRec);
243 return vptr;
244}
245
246//_____________________________________________________________________________
247void AliITSReconstructor::FillESD(TTree * /*digitsTree*/, TTree *clustersTree,
248 AliESDEvent* esd) const
249{
250// make PID, find V0s and cascade
251 if(fItsPID!=0) {
252 Int_t pidOpt = GetRecoParam()->GetPID();
253 if(pidOpt==1){
254 fItsPID->MakePID(clustersTree,esd);
255 }else{
256 fItsPID->MakePID(esd);
257 }
258 }
259 else {
260 Error("FillESD","!! cannot do the PID !!\n");
261 }
262}