]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITStrackMI.cxx
K0s code update (Matt Steinpreis)
[u/mrichter/AliRoot.git] / ITS / AliITStrackMI.cxx
CommitLineData
15dd636f 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//-------------------------------------------------------------------------
17// Implementation of the ITS track class
18//
19// Origin: Marian Ivanov, CERN, Marian.Ivanov@cern.ch
20// dEdx analysis by: Boris Batyunya, JINR, Boris.Batiounia@cern.ch
21//-------------------------------------------------------------------------
22
ae00569a 23/* $Id$ */
24
15dd636f 25#include <TMatrixD.h>
26
27#include <TMath.h>
28
f1b15b8d 29#include "AliITSRecoParam.h"
15dd636f 30#include "AliCluster.h"
31#include "AliESDtrack.h"
e50912db 32#include "AliITSgeomTGeo.h"
15dd636f 33#include "AliITStrackMI.h"
34
35ClassImp(AliITStrackMI)
36
37const Int_t kWARN=5;
38
39//____________________________________________________________________________
40AliITStrackMI::AliITStrackMI():AliITStrackV2(),
8221b41b 41fNUsed(0),
42fNSkipped(0),
f8720bda 43fNDeadZone(0),
8221b41b 44fReconstructed(kFALSE),
45fExpQ(40),
46fChi22(0),
47fdEdxMismatch(0),
48fConstrain(kFALSE),
a4354152 49fWinner(0),
8221b41b 50fGoldV0(kFALSE)
a4354152 51
15dd636f 52{
8221b41b 53 //constructor
e50912db 54 for(Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) fClIndex[i]=-1;
f8720bda 55 for(Int_t i=0; i<6; i++) { fNy[i]=0; fNz[i]=0; fNormQ[i]=0; fNormChi2[i]=1000; fDeadZoneProbability[i]=0;}
d9ead1a0 56 for(Int_t i=0; i<12; i++) {fDy[i]=0; fDz[i]=0; fSigmaY[i]=0; fSigmaZ[i]=0; fSigmaYZ[i]=0; fChi2MIP[i]=0;}
15dd636f 57 fD[0]=0; fD[1]=0;
bc3da11b 58 fDnorm[0]=0; fDnorm[1]=0;
15dd636f 59}
60
61//____________________________________________________________________________
763bdf3e 62AliITStrackMI::AliITStrackMI(AliESDtrack& t,Bool_t c):
8221b41b 63AliITStrackV2(t,c),
64fNUsed(0),
65fNSkipped(0),
66fNDeadZone(0),
8221b41b 67fReconstructed(kFALSE),
68fExpQ(40),
69fChi22(0),
70fdEdxMismatch(0),
71fConstrain(kFALSE),
a4354152 72fWinner(0),
8221b41b 73fGoldV0(kFALSE) {
15dd636f 74 //------------------------------------------------------------------
75 // Conversion ESD track -> ITS track.
76 // If c==kTRUE, create the ITS track out of the constrained params.
77 //------------------------------------------------------------------
f8720bda 78 for(Int_t i=0; i<6; i++) {fClIndex[i]=-1; fNy[i]=0; fNz[i]=0; fNormQ[i]=0; fNormChi2[i]=1000; fDeadZoneProbability[i]=0;}
d9ead1a0 79 for(Int_t i=0; i<12; i++) {fDy[i]=0; fDz[i]=0; fSigmaY[i]=0; fSigmaZ[i]=0; fSigmaYZ[i]=0; fChi2MIP[i]=0;}
15dd636f 80 fD[0]=0; fD[1]=0;
bc3da11b 81 fDnorm[0]=0; fDnorm[1]=0;
15dd636f 82
83}
84
15dd636f 85//____________________________________________________________________________
8221b41b 86AliITStrackMI::AliITStrackMI(const AliITStrackMI& t) : AliITStrackV2(t),
87fNUsed(t.fNUsed),
88fNSkipped(t.fNSkipped),
89fNDeadZone(t.fNDeadZone),
8221b41b 90fReconstructed(t.fReconstructed),
91fExpQ(t.fExpQ),
92fChi22(t.fChi22),
93fdEdxMismatch(t.fdEdxMismatch),
94fConstrain(t.fConstrain),
eea51857 95fWinner(0),
8221b41b 96fGoldV0(t.fGoldV0) {
15dd636f 97 //------------------------------------------------------------------
98 //Copy constructor
99 //------------------------------------------------------------------
15dd636f 100 fLab = t.fLab;
101 fFakeRatio = t.fFakeRatio;
15dd636f 102
103 fD[0]=t.fD[0]; fD[1]=t.fD[1];
628e7bb0 104 fDnorm[0] = t.fDnorm[0]; fDnorm[1]=t.fDnorm[1];
15dd636f 105 for(Int_t i=0; i<6; i++) {
f8720bda 106 fClIndex[i]= t.fClIndex[i]; fNy[i]=t.fNy[i]; fNz[i]=t.fNz[i]; fNormQ[i]=t.fNormQ[i]; fNormChi2[i] = t.fNormChi2[i]; fDeadZoneProbability[i]=t.fDeadZoneProbability[i];
15dd636f 107 }
108 for(Int_t i=0; i<12; i++) {fDy[i]=t.fDy[i]; fDz[i]=t.fDz[i];
d9ead1a0 109 fSigmaY[i]=t.fSigmaY[i]; fSigmaZ[i]=t.fSigmaZ[i]; fSigmaYZ[i]=t.fSigmaYZ[i]; fChi2MIP[i]=t.fChi2MIP[i];}
15dd636f 110 //memcpy(fDy,t.fDy,6*sizeof(Float_t));
111 //memcpy(fDz,t.fDz,6*sizeof(Float_t));
112 //memcpy(fSigmaY,t.fSigmaY,6*sizeof(Float_t));
113 //memcpy(fSigmaZ,t.fSigmaZ,6*sizeof(Float_t));
114 //memcpy(fChi2MIP,t.fChi2MIP,12*sizeof(Float_t));
115}
116
117//_____________________________________________________________________________
118Int_t AliITStrackMI::Compare(const TObject *o) const {
119 //-----------------------------------------------------------------
120 // This function compares tracks according to the their curvature
121 //-----------------------------------------------------------------
122 AliITStrackMI *t=(AliITStrackMI*)o;
123 //Double_t co=TMath::Abs(t->Get1Pt());
124 //Double_t c =TMath::Abs(Get1Pt());
125 Double_t co=t->GetSigmaY2()*t->GetSigmaZ2()*(0.5+TMath::Sqrt(0.5*t->fD[0]*t->fD[0]+t->fD[1]*t->fD[1]));
126 Double_t c =GetSigmaY2()*GetSigmaZ2()*(0.5+TMath::Sqrt(0.5*fD[0]*fD[0]+fD[1]*fD[1]));
127 if (c>co) return 1;
128 else if (c<co) return -1;
129 return 0;
130}
131
132
d9ead1a0 133Double_t AliITStrackMI::GetPredictedChi2MI(Double_t cy, Double_t cz, Double_t cerry, Double_t cerrz, Double_t covyz) const
15dd636f 134{
135 //-----------------------------------------------------------------
136 // This function calculates a predicted chi2 increment.
137 //-----------------------------------------------------------------
6c94f330 138 Double_t p[2]={cy, cz};
d9ead1a0 139 Double_t cov[3]={cerry*cerry, covyz, cerrz*cerrz};
6c94f330 140 return AliExternalTrackParam::GetPredictedChi2(p,cov);
15dd636f 141}
142
15dd636f 143//____________________________________________________________________________
150f264c 144Bool_t AliITStrackMI::UpdateMI(const AliCluster *c, Double_t chi2, Int_t index) {
15dd636f 145 //------------------------------------------------------------------
146 //This function updates track parameters
147 //------------------------------------------------------------------
150f264c 148 Double_t dy=c->GetY() - GetY(), dz=c->GetZ() - GetZ();
15dd636f 149 Int_t layer = (index & 0xf0000000) >> 28;
150 fDy[layer] = dy;
151 fDz[layer] = dz;
150f264c 152 fSigmaY[layer] = TMath::Sqrt(c->GetSigmaY2()+GetSigmaY2());
153 fSigmaZ[layer] = TMath::Sqrt(c->GetSigmaZ2()+GetSigmaZ2());
d9ead1a0 154 fSigmaYZ[layer] = c->GetSigmaYZ()+GetSigmaZY();
155
15dd636f 156
150f264c 157 return Update(c,chi2,index);
15dd636f 158}
159
160Int_t AliITStrackMI::GetProlongationFast(Double_t alp, Double_t xk,Double_t &y, Double_t &z)
161{
162 //-----------------------------------------------------------------------------
163 //get fast prolongation
164 //-----------------------------------------------------------------------------
6c94f330 165 Double_t ca=TMath::Cos(alp-GetAlpha()), sa=TMath::Sin(alp-GetAlpha());
60e55aee 166 Double_t cf=TMath::Sqrt((1.-GetSnp())*(1.+GetSnp()));
15dd636f 167 // **** rotation **********************
6c94f330 168 y= -GetX()*sa + GetY()*ca;
15dd636f 169 // **** translation ******************
6c94f330 170 Double_t dx = xk- GetX()*ca - GetY()*sa;
171 Double_t f1=GetSnp()*ca - cf*sa, f2=f1 + GetC()*dx;
15dd636f 172 if (TMath::Abs(f2) >= 0.9999) {
173 return 0;
174 }
60e55aee 175 Double_t r1=TMath::Sqrt((1.-f1)*(1.+f1)), r2=TMath::Sqrt((1.-f2)*(1.+f2));
15dd636f 176 y += dx*(f1+f2)/(r1+r2);
6c94f330 177 z = GetZ()+dx*(f1+f2)/(f1*r2 + f2*r1)*GetTgl();
15dd636f 178 return 1;
179}
180
628e7bb0 181
182Bool_t AliITStrackMI::IsGoldPrimary()
183{
184 //
185 // Indicates gold pimary track
186 //
187 Bool_t isGold=kTRUE;
188 if (!fConstrain) return kFALSE; //
189 if (fNDeadZone+fNDeadZone<5.5) isGold = kFALSE; // short track
190 //
a4354152 191 if (fChi2MIP[0]*fChi2MIP[3]>2) isGold = kFALSE; // RS: cut on chi2*interpolated_chi2
628e7bb0 192 if (fChi2/Float_t(fN)>2.){
193 if (fChi2MIP[0]+fNUsed>3.5) isGold = kFALSE;
194 }
195 if (fChi2MIP[2]>4.5) isGold = kFALSE; //back propagation chi2
196 //
197 if (fDnorm[0]>0&&fDnorm[1]>0){
198 const Float_t distcut2 =2.5*2.5; //normalize distance cut
199 Float_t dist2 = fD[0]*fD[0]/(fDnorm[0]*fDnorm[0])+fD[1]*fD[1]/(fDnorm[1]*fDnorm[1]); //normalize distance to the vertex (pools)
200 if (dist2>distcut2) isGold = kFALSE;
201 }
202 return isGold;
203}