]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSReconstructor.cxx
Bug fix - the dep energy should be divided by the MIP energy to form the counts
[u/mrichter/AliRoot.git] / ITS / AliITSReconstructor.cxx
CommitLineData
121a60bd 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
e62c1aea 24#include "Riostream.h"
121a60bd 25#include "AliITSReconstructor.h"
00a7cc50 26#include "AliRun.h"
113c12f1 27#include "AliRawReader.h"
00a7cc50 28#include "AliITSDetTypeRec.h"
6cae184e 29#include "AliITSgeom.h"
7d62fb64 30#include "AliITSLoader.h"
e43c066c 31#include "AliITStrackerMI.h"
c0342e67 32#include "AliITStrackerV2.h"
121a60bd 33#include "AliITStrackerSA.h"
34#include "AliITSVertexerIons.h"
35#include "AliITSVertexerFast.h"
c8735dd3 36#include "AliITSVertexerFixed.h"
3acc14d5 37#include "AliITSVertexer3D.h"
121a60bd 38#include "AliITSVertexerZ.h"
3acc14d5 39#include "AliITSVertexerCosmics.h"
af885e0f 40#include "AliESDEvent.h"
121a60bd 41#include "AliITSpidESD.h"
e62c1aea 42#include "AliITSpidESD1.h"
43#include "AliITSpidESD2.h"
023ae34b 44#include "AliITSInitGeometry.h"
121a60bd 45
44347160 46
121a60bd 47ClassImp(AliITSReconstructor)
44347160 48
e62c1aea 49//___________________________________________________________________________
94631b2f 50AliITSReconstructor::AliITSReconstructor() : AliReconstructor(),
6cae184e 51fItsPID(0),
52fDetTypeRec(0)
94631b2f 53{
e62c1aea 54 // Default constructor
e62c1aea 55}
56 //___________________________________________________________________________
57AliITSReconstructor::~AliITSReconstructor(){
58// destructor
59 delete fItsPID;
6cae184e 60 if(fDetTypeRec) delete fDetTypeRec;
e62c1aea 61}
62//______________________________________________________________________
94631b2f 63AliITSReconstructor::AliITSReconstructor(const AliITSReconstructor &ob) :AliReconstructor(ob),
5c47990a 64fItsPID(ob.fItsPID),
65fDetTypeRec(ob.fDetTypeRec)
6cae184e 66
94631b2f 67{
e62c1aea 68 // Copy constructor
e62c1aea 69}
70
71//______________________________________________________________________
94631b2f 72AliITSReconstructor& AliITSReconstructor::operator=(const AliITSReconstructor& ob ){
e62c1aea 73 // Assignment operator
94631b2f 74 this->~AliITSReconstructor();
75 new(this) AliITSReconstructor(ob);
e62c1aea 76 return *this;
77}
6cae184e 78
023ae34b 79//______________________________________________________________________
d76c31f4 80void AliITSReconstructor::Init() {
023ae34b 81 // Initalize this constructor bet getting/creating the objects
82 // nesseary for a proper ITS reconstruction.
83 // Inputs:
d76c31f4 84 // none.
023ae34b 85 // Output:
86 // none.
87 // Return:
88 // none.
00a7cc50 89
108bd0fe 90 AliITSInitGeometry initgeom;
91 AliITSgeom *geom = initgeom.CreateAliITSgeom();
92 AliInfo(Form("Geometry name: %s",(initgeom.GetGeometryName()).Data()));
6cae184e 93
94 fDetTypeRec = new AliITSDetTypeRec();
95 fDetTypeRec->SetITSgeom(geom);
96 fDetTypeRec->SetDefaults();
ed446fa3 97
023ae34b 98 return;
99}
6cae184e 100
121a60bd 101//_____________________________________________________________________________
6cae184e 102void AliITSReconstructor::Reconstruct(TTree *digitsTree, TTree *clustersTree) const
121a60bd 103{
104// reconstruct clusters
105
9f9cae94 106 Int_t cluFindOpt = GetRecoParam()->GetClusterFinder();
107 Bool_t useV2=kTRUE; // Default: V2 cluster finder
108 if(cluFindOpt==1) useV2=kFALSE;
121a60bd 109
6cae184e 110 fDetTypeRec->SetTreeAddressD(digitsTree);
111 fDetTypeRec->MakeBranch(clustersTree,"R");
112 fDetTypeRec->SetTreeAddressR(clustersTree);
9f9cae94 113 fDetTypeRec->DigitsToRecPoints(digitsTree,clustersTree,0,"All",useV2);
121a60bd 114}
115
00a7cc50 116//_________________________________________________________________
6cae184e 117void AliITSReconstructor::Reconstruct(AliRawReader* rawReader, TTree *clustersTree) const
113c12f1 118{
6cae184e 119 // reconstruct clusters from raw data
00a7cc50 120
6cae184e 121 fDetTypeRec->SetDefaultClusterFindersV2(kTRUE);
122 fDetTypeRec->DigitsToRecPoints(rawReader,clustersTree);
113c12f1 123}
124
121a60bd 125//_____________________________________________________________________________
d76c31f4 126AliTracker* AliITSReconstructor::CreateTracker() const
121a60bd 127{
128// create a ITS tracker
129
9f9cae94 130 Int_t trackerOpt = GetRecoParam()->GetTracker();
e62c1aea 131 AliTracker* tracker;
9f9cae94 132 if (trackerOpt==1) {
e341247d 133 tracker = new AliITStrackerMI(0);
23197852 134 AliITStrackerMI *mit=(AliITStrackerMI*)tracker;
135 mit->SetDetTypeRec(fDetTypeRec);
c0342e67 136 }
9f9cae94 137 else if (trackerOpt==2) {
c0342e67 138 tracker = new AliITStrackerV2(0);
e62c1aea 139 }
140 else {
cc088660 141 tracker = new AliITStrackerSA(0); // inherits from AliITStrackerMI
1966f03c 142 AliITStrackerSA *sat=(AliITStrackerSA*)tracker;
23197852 143 sat->SetDetTypeRec(fDetTypeRec);
9f9cae94 144 if(GetRecoParam()->GetTrackerSAOnly()) sat->SetSAFlag(kTRUE);
1966f03c 145 if(sat->GetSAFlag())AliDebug(1,"Tracking Performed in ITS only\n");
9f9cae94 146 sat->SetOuterStartLayer(GetRecoParam()->GetOuterStartLayerSA());
e62c1aea 147 }
7d62fb64 148
9f9cae94 149 Int_t pidOpt = GetRecoParam()->GetPID();
150
d76c31f4 151 AliITSReconstructor* nc = const_cast<AliITSReconstructor*>(this);
9f9cae94 152 if(pidOpt==1){
d76c31f4 153 Info("FillESD","ITS LandauFitPID option has been selected\n");
154 nc->fItsPID = new AliITSpidESD2((AliITStrackerMI*)tracker);
e62c1aea 155 }
156 else{
d76c31f4 157 Info("FillESD","ITS default PID\n");
7a8614f3 158 Double_t parITS[] = {79.,0.13, 5.}; //IB: this is "pp tuning"
d76c31f4 159 nc->fItsPID = new AliITSpidESD1(parITS);
e62c1aea 160 }
38013a1a 161
e62c1aea 162 return tracker;
7d62fb64 163
121a60bd 164}
165
166//_____________________________________________________________________________
d76c31f4 167AliVertexer* AliITSReconstructor::CreateVertexer() const
121a60bd 168{
169// create a ITS vertexer
170
9f9cae94 171 Int_t vtxOpt = GetRecoParam()->GetVertexer();
172 if(vtxOpt==3){
121a60bd 173 Info("CreateVertexer","a AliITSVertexerIons object has been selected\n");
308c2f7c 174 return new AliITSVertexerIons();
121a60bd 175 }
9f9cae94 176 if(vtxOpt==4){
121a60bd 177 Double_t smear[3]={0.005,0.005,0.01};
178 Info("CreateVertexer","a AliITSVertexerFast object has been selected\n");
179 return new AliITSVertexerFast(smear);
180 }
9f9cae94 181 if(vtxOpt==1){
99f38bf6 182 Info("CreateVertexer","a AliITSVertexerZ object has been selected\n");
183 return new AliITSVertexerZ();
3acc14d5 184 }
9f9cae94 185 if(vtxOpt==2){
3acc14d5 186 Info("CreateVertexer","a AliITSVertexerCosmics object has been selected\n");
187 return new AliITSVertexerCosmics();
121a60bd 188 }
c8735dd3 189 if(vtxOpt==5){
190 Info("CreateVertexer","vertex is fixed in the position of the TDI\n");
191 return new AliITSVertexerFixed("TDI");
192 }
193 if(vtxOpt==6){
194 Info("CreateVertexer","vertex is fixed in the position of the TED\n");
195 return new AliITSVertexerFixed("TED");
196 }
99f38bf6 197 // by default an AliITSVertexer3D object is instatiated
198 Info("CreateVertexer","a AliITSVertexer3D object has been selected\n");
7203e11a 199 AliITSVertexer3D* vtxr = new AliITSVertexer3D();
200 Float_t dzw=GetRecoParam()->GetVertexer3DWideFiducialRegionZ();
201 Float_t drw=GetRecoParam()->GetVertexer3DWideFiducialRegionR();
202 vtxr->SetWideFiducialRegion(dzw,drw);
203 Float_t dzn=GetRecoParam()->GetVertexer3DNarrowFiducialRegionZ();
204 Float_t drn=GetRecoParam()->GetVertexer3DNarrowFiducialRegionR();
205 vtxr->SetNarrowFiducialRegion(dzn,drn);
206 Float_t dphil=GetRecoParam()->GetVertexer3DLooseDeltaPhiCut();
207 Float_t dphit=GetRecoParam()->GetVertexer3DTightDeltaPhiCut();
208 vtxr->SetDeltaPhiCuts(dphil,dphit);
209 Float_t dcacut=GetRecoParam()->GetVertexer3DDCACut();
210 vtxr->SetDCACut(dcacut);
211 return vtxr;
121a60bd 212}
213
214//_____________________________________________________________________________
d76c31f4 215void AliITSReconstructor::FillESD(TTree * /*digitsTree*/, TTree *clustersTree,
af885e0f 216 AliESDEvent* esd) const
121a60bd 217{
e62c1aea 218// make PID, find V0s and cascade
d76c31f4 219 if(fItsPID!=0) {
9f9cae94 220 Int_t pidOpt = GetRecoParam()->GetPID();
221 if(pidOpt==1){
d76c31f4 222 fItsPID->MakePID(clustersTree,esd);
9f9cae94 223 }else{
d76c31f4 224 fItsPID->MakePID(esd);
225 }
e62c1aea 226 }
227 else {
228 Error("FillESD","!! cannot do the PID !!\n");
229 }
121a60bd 230}