]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSVertexer.cxx
Remove implicit calls to TString::TString(int) - this constructor was made protected...
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer.cxx
CommitLineData
308c2f7c 1#include "AliLog.h"
2#include "AliMultiplicity.h"
32e63e47 3#include "AliITSgeomTGeo.h"
27167524 4#include "AliITSVertexer.h"
27167524 5#include "AliITSLoader.h"
27167524 6#include "AliITSMultReconstructor.h"
7
8const Float_t AliITSVertexer::fgkPipeRadius = 3.0;
c5f0f3c1 9
10ClassImp(AliITSVertexer)
11
12//////////////////////////////////////////////////////////////////////
13// Base class for primary vertex reconstruction //
d681bb2d 14// AliESDVertexer is a class for full 3D primary vertex finding //
3acc14d5 15// derived classes: AliITSVertexerIons AliITSvertexer3D //
16// AliITSVertexerCosmics //
c5f0f3c1 17//////////////////////////////////////////////////////////////////////
18
8c42830a 19/* $Id$ */
20
c5f0f3c1 21//______________________________________________________________________
27167524 22AliITSVertexer::AliITSVertexer():AliVertexer(),
23fLadders(),
308c2f7c 24fLadOnLay2(0),
06a7cbee 25fDetTypeRec(NULL),
8c32ba44 26fMinTrackletsForPilup(0),
27fIsPileup(0),
28fNTrpuv(-2),
29fZpuv(-9999999.),
6b4d9537 30fNoVertices(0),
31fVertArray(NULL),
308c2f7c 32fFirstEvent(0),
06a7cbee 33fLastEvent(-1)
27167524 34{
308c2f7c 35 // Default Constructor
27167524 36 SetLaddersOnLayer2();
8c32ba44 37 SetMinTrackletsForPilup();
8c42830a 38 for(Int_t i=0; i<kNSPDMod;i++) fUseModule[i]=kTRUE;
c5f0f3c1 39}
40
27167524 41//______________________________________________________________________
42AliITSVertexer::~AliITSVertexer() {
43 // Destructor
6b4d9537 44 if(fLadders) delete [] fLadders;
45 if (fNoVertices > 0){
46 delete []fVertArray;
47 fVertArray = NULL;
48 fNoVertices = 0;
49 }
27167524 50}
51
6b4d9537 52//______________________________________________________________________
53void AliITSVertexer::ResetVertex(){
54 // Resets vertex related data members
55 if(fNoVertices > 0){
56 if(fVertArray) delete []fVertArray;
57 fVertArray = NULL;
58 fNoVertices = 0;
59 }
60 fIsPileup=kFALSE;
61 fNTrpuv=-2;
62 fZpuv=-99999.;
63
64}
32e449be 65//______________________________________________________________________
308c2f7c 66void AliITSVertexer::FindMultiplicity(TTree *itsClusterTree){
32e449be 67 // Invokes AliITSMultReconstructor to determine the
68 // charged multiplicity in the pixel layers
69 if(fMult){delete fMult; fMult = 0;}
70 Bool_t success=kTRUE;
71 if(!fCurrentVertex)success=kFALSE;
72 if(fCurrentVertex && fCurrentVertex->GetNContributors()<1)success=kFALSE;
9b373e9a 73
ff44c37c 74 // get the FastOr bit mask
75 TBits fastOrFiredMap = fDetTypeRec->GetFastOrFiredMap();
76
9b373e9a 77 AliITSMultReconstructor multReco;
78
32e449be 79 if(!success){
80 AliWarning("Tracklets multiplicity not determined because the primary vertex was not found");
9b373e9a 81 AliWarning("Just counting the number of cluster-fired chips on the SPD layers");
82 if (!itsClusterTree) {
83 AliError(" Invalid ITS cluster tree !\n");
84 return;
85 }
86 multReco.LoadClusterFiredChips(itsClusterTree);
87 Short_t nfcL1 = multReco.GetNFiredChips(0);
88 Short_t nfcL2 = multReco.GetNFiredChips(1);
ff44c37c 89 fMult = new AliMultiplicity(0,0,0,0,0,0,0,0,0,nfcL1,nfcL2,fastOrFiredMap);
32e449be 90 return;
91 }
308c2f7c 92
32e449be 93 if (!itsClusterTree) {
308c2f7c 94 AliError(" Invalid ITS cluster tree !\n");
32e449be 95 return;
96 }
97 Double_t vtx[3];
98 fCurrentVertex->GetXYZ(vtx);
99 Float_t vtxf[3];
100 for(Int_t i=0;i<3;i++)vtxf[i]=vtx[i];
9b373e9a 101 multReco.SetHistOn(kFALSE);
102 multReco.Reconstruct(itsClusterTree,vtxf,vtxf);
103 Int_t notracks=multReco.GetNTracklets();
968e8539 104 Float_t *tht = new Float_t [notracks];
32e449be 105 Float_t *phi = new Float_t [notracks];
106 Float_t *dphi = new Float_t [notracks];
de4c520e 107 Int_t *labels = new Int_t[notracks];
0939e22a 108 Int_t *labelsL2 = new Int_t[notracks];
9b373e9a 109 for(Int_t i=0;i<multReco.GetNTracklets();i++){
110 tht[i] = multReco.GetTracklet(i)[0];
111 phi[i] = multReco.GetTracklet(i)[1];
112 dphi[i] = multReco.GetTracklet(i)[2];
113 labels[i] = static_cast<Int_t>(multReco.GetTracklet(i)[3]);
114 labelsL2[i] = static_cast<Int_t>(multReco.GetTracklet(i)[4]);
32e449be 115 }
9b373e9a 116 Int_t nosingleclus=multReco.GetNSingleClusters();
968e8539 117 Float_t *ths = new Float_t [nosingleclus];
118 Float_t *phs = new Float_t [nosingleclus];
119 for(Int_t i=0;i<nosingleclus;i++){
9b373e9a 120 ths[i] = multReco.GetCluster(i)[0];
121 phs[i] = multReco.GetCluster(i)[1];
968e8539 122 }
9b373e9a 123 Short_t nfcL1 = multReco.GetNFiredChips(0);
124 Short_t nfcL2 = multReco.GetNFiredChips(1);
ff44c37c 125 fMult = new AliMultiplicity(notracks,tht,phi,dphi,labels,labelsL2,nosingleclus,ths,phs,nfcL1,nfcL2,fastOrFiredMap);
9b373e9a 126
968e8539 127 delete [] tht;
32e449be 128 delete [] phi;
129 delete [] dphi;
968e8539 130 delete [] ths;
131 delete [] phs;
d6fc37c1 132 delete [] labels;
0939e22a 133 delete [] labelsL2;
308c2f7c 134
32e449be 135 return;
136}
c5f0f3c1 137
27167524 138//______________________________________________________________________
139void AliITSVertexer::SetLaddersOnLayer2(Int_t ladwid){
140 // Calculates the array of ladders on layer 2 to be used with a
141 // given ladder on layer 1
142 fLadOnLay2=ladwid;
32e63e47 143 Int_t ladtot1=AliITSgeomTGeo::GetNLadders(1);
27167524 144 if(fLadders) delete [] fLadders;
145 fLadders=new UShort_t[ladtot1];
146
147
148 Double_t pos1[3],pos2[3];
32e63e47 149 Int_t mod1=AliITSgeomTGeo::GetModuleIndex(2,1,1);
150 AliITSgeomTGeo::GetTranslation(mod1,pos1); // position of the module in the MRS
27167524 151 Double_t phi0=TMath::ATan2(pos1[1],pos1[0]);
152 if(phi0<0) phi0+=2*TMath::Pi();
32e63e47 153 Int_t mod2=AliITSgeomTGeo::GetModuleIndex(2,2,1);
154 AliITSgeomTGeo::GetTranslation(mod2,pos2);
27167524 155 Double_t phi2=TMath::ATan2(pos2[1],pos2[0]);
156 if(phi2<0) phi2+=2*TMath::Pi();
157 Double_t deltaPhi= phi0-phi2; // phi width of a layer2 module
158
159 for(Int_t i= 0; i<ladtot1;i++){
32e63e47 160 Int_t modlad= AliITSgeomTGeo::GetModuleIndex(1,i+1,1);
27167524 161 Double_t posmod[3];
32e63e47 162 AliITSgeomTGeo::GetTranslation(modlad,posmod);
27167524 163 Double_t phimod=TMath::ATan2(posmod[1],posmod[0]);
164 if(phimod<0) phimod+=2*TMath::Pi();
165 Double_t phi1= phimod+deltaPhi*double(fLadOnLay2);
166 if(phi1<0) phi1+=2*TMath::Pi();
167 if(phi1>2*TMath::Pi()) phi1-=2*TMath::Pi();
168 Double_t philad1=phi0-phi1;
169 UShort_t lad1;
170 Double_t ladder1=(philad1)/(deltaPhi) +1.;
171 if(ladder1<1){ladder1=40+ladder1;}
172 lad1=int(ladder1+0.5);
173 fLadders[i]=lad1;
174 }
175}
176
308c2f7c 177#include "AliRunLoader.h"
178
179//______________________________________________________________________
180void AliITSVertexer::Init(TString filename){
181 // Initialize the vertexer in case of
182 // analysis of an entire file
33c3c91a 183 AliRunLoader *rl = AliRunLoader::Instance();
308c2f7c 184 if(!rl){
185 Fatal("AliITSVertexer","Run Loader not found");
186 }
187 if (fLastEvent < 0) SetLastEvent(rl->GetNumberOfEvents()-1);
188
189 AliITSLoader* itsloader = (AliITSLoader*) rl->GetLoader("ITSLoader");
190 if(!filename.Contains("default"))itsloader->SetVerticesFileName(filename);
191 if(!filename.Contains("null"))itsloader->LoadVertices("recreate");
192}
27167524 193
c5f0f3c1 194//______________________________________________________________________
195void AliITSVertexer::WriteCurrentVertex(){
196 // Write the current AliVertex object to file fOutFile
33c3c91a 197 AliRunLoader *rl = AliRunLoader::Instance();
41b19549 198 AliITSLoader* itsLoader = (AliITSLoader*) rl->GetLoader("ITSLoader");
88cb7938 199 fCurrentVertex->SetName("Vertex");
200 // const char * name = fCurrentVertex->GetName();
41b19549 201 // itsLoader->SetVerticesContName(name);
202 Int_t rc = itsLoader->PostVertex(fCurrentVertex);
203 rc = itsLoader->WriteVertices();
c5f0f3c1 204}
de4c520e 205
308c2f7c 206//______________________________________________________________________
207void AliITSVertexer::FindVertices(){
208 // computes the vertices of the events in the range FirstEvent - LastEvent
209
33c3c91a 210 AliRunLoader *rl = AliRunLoader::Instance();
308c2f7c 211 AliITSLoader* itsloader = (AliITSLoader*) rl->GetLoader("ITSLoader");
212 itsloader->LoadRecPoints("read");
213 for(Int_t i=fFirstEvent;i<=fLastEvent;i++){
214 rl->GetEvent(i);
215 TTree* cltree = itsloader->TreeR();
216 FindVertexForCurrentEvent(cltree);
217 if(fCurrentVertex){
218 WriteCurrentVertex();
219 }
220 else {
221 AliDebug(1,Form("Vertex not found for event %d",i));
222 }
223 }
224}