/************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* $Id$ */ //----------------------------------------------------------------- // Implementation of the TPC track class // This class is used by the AliTPCtracker class // Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch //----------------------------------------------------------------- #include #include "AliTPCtrack.h" #include "AliCluster.h" #include "AliESDtrack.h" ClassImp(AliTPCtrack) //_________________________________________________________________________ AliTPCtrack::AliTPCtrack(): AliKalmanTrack() { //------------------------------------------------- // default constructor //------------------------------------------------- fX = fP0 = fP1 = fP2 = fP3 = fP3 = fP4 = 0.0; fAlpha = fdEdx = 0.0; fNumber = 0; // [SR, 01.04.2003] for (Int_t i=0; i<3;i++) fKinkIndexes[i]=0; } //_________________________________________________________________________ AliTPCtrack::AliTPCtrack(UInt_t index, const Double_t xx[5], const Double_t cc[15], Double_t xref, Double_t alpha) : AliKalmanTrack() { //----------------------------------------------------------------- // This is the main track constructor. //----------------------------------------------------------------- fX=xref; fAlpha=alpha; if (fAlpha<-TMath::Pi()) fAlpha += 2*TMath::Pi(); if (fAlpha>=TMath::Pi()) fAlpha -= 2*TMath::Pi(); fdEdx=0.; fP0=xx[0]; fP1=xx[1]; fP2=xx[2]; fP3=xx[3]; fP4=xx[4]; fC00=cc[0]; fC10=cc[1]; fC11=cc[2]; fC20=cc[3]; fC21=cc[4]; fC22=cc[5]; fC30=cc[6]; fC31=cc[7]; fC32=cc[8]; fC33=cc[9]; fC40=cc[10]; fC41=cc[11]; fC42=cc[12]; fC43=cc[13]; fC44=cc[14]; fIndex[0]=index; SetNumberOfClusters(1); // //MI fSdEdx = 0; fNFoundable = 0; fBConstrain = 0; fLastPoint = 0; fFirstPoint = 0; fRemoval = 0; fTrackType = 0; fLab2 = 0; for (Int_t i=0; i<3;i++) fKinkIndexes[i]=0; } //_____________________________________________________________________________ AliTPCtrack::AliTPCtrack(const AliESDtrack& t) : AliKalmanTrack() { //----------------------------------------------------------------- // Conversion AliESDtrack -> AliTPCtrack. //----------------------------------------------------------------- SetNumberOfClusters(t.GetTPCclusters(fIndex)); SetLabel(t.GetLabel()); SetMass(t.GetMass()); for (Int_t i=0; i<3;i++) fKinkIndexes[i]=t.GetKinkIndex(i); fdEdx = t.GetTPCsignal(); fAlpha = t.GetAlpha(); if (fAlpha < -TMath::Pi()) fAlpha += 2*TMath::Pi(); else if (fAlpha >= TMath::Pi()) fAlpha -= 2*TMath::Pi(); //Conversion of the track parameters Double_t x,p[5]; t.GetExternalParameters(x,p); Double_t c[15]; t.GetExternalCovariance(c); fX=x; x=GetConvConst(); fP0=p[0]; fP1=p[1]; fP3=p[3]; fP4=p[4]/x; fP2=fP4*fX - p[2]; //Conversion of the covariance matrix c[10]/=x; c[11]/=x; c[12]/=x; c[13]/=x; c[14]/=x*x; Double_t c22=fX*fX*c[14] - 2*fX*c[12] + c[5]; Double_t c32=fX*c[13] - c[8]; Double_t c20=fX*c[10] - c[3], c21=fX*c[11] - c[4], c42=fX*c[14] - c[12]; fC00=c[0 ]; fC10=c[1 ]; fC11=c[2 ]; fC20=c20; fC21=c21; fC22=c22; fC30=c[6 ]; fC31=c[7 ]; fC32=c32; fC33=c[9 ]; fC40=c[10]; fC41=c[11]; fC42=c42; fC43=c[13]; fC44=c[14]; if ((t.GetStatus()&AliESDtrack::kTIME) == 0) return; StartTimeIntegral(); Double_t times[10]; t.GetIntegratedTimes(times); SetIntegratedTimes(times); SetIntegratedLength(t.GetIntegratedLength()); // //MI fSdEdx = 0; fNFoundable = 0; fBConstrain = 0; fLastPoint = 0; fFirstPoint = 0; fRemoval = 0; fTrackType = 0; fLab2 = 0; // SetFakeRatio(t.GetTPCFakeRatio()); } //_____________________________________________________________________________ AliTPCtrack::AliTPCtrack(const AliTPCtrack& t) : AliKalmanTrack(t) { //----------------------------------------------------------------- // This is a track copy constructor. //----------------------------------------------------------------- fX=t.fX; fAlpha=t.fAlpha; fdEdx=t.fdEdx; fP0=t.fP0; fP1=t.fP1; fP2=t.fP2; fP3=t.fP3; fP4=t.fP4; fC00=t.fC00; fC10=t.fC10; fC11=t.fC11; fC20=t.fC20; fC21=t.fC21; fC22=t.fC22; fC30=t.fC30; fC31=t.fC31; fC32=t.fC32; fC33=t.fC33; fC40=t.fC40; fC41=t.fC41; fC42=t.fC42; fC43=t.fC43; fC44=t.fC44; //Int_t n=GetNumberOfClusters(); for (Int_t i=0; iGet1Pt()); //Double_t c =TMath::Abs(Get1Pt()); Double_t co=t->GetSigmaY2()*t->GetSigmaZ2(); Double_t c =GetSigmaY2()*GetSigmaZ2(); if (c>co) return 1; else if (cGetSigmaY2(), r01=0., r11=c->GetSigmaZ2(); r00+=fC00; r01+=fC10; r11+=fC11; Double_t det=r00*r11 - r01*r01; if (TMath::Abs(det) < 1.e-10) { Int_t n=GetNumberOfClusters(); if (n>4) cerr<GetY() - fP0, dz=c->GetZ() - fP1; return (dy*r00*dy + 2*r01*dy*dz + dz*r11*dz)/det; } Double_t AliTPCtrack::GetYat(Double_t xk) const { //----------------------------------------------------------------- // This function calculates the Y-coordinate of a track at the plane x=xk. //----------------------------------------------------------------- Double_t c1=fP4*fX - fP2, r1=TMath::Sqrt(1.- c1*c1); Double_t c2=fP4*xk - fP2; if (c2*c2>0.99999) { Int_t n=GetNumberOfClusters(); if (n>4) cerr<= 0.9) { // Int_t n=GetNumberOfClusters(); //if (n>4) cerr<GetSigmaY2(), r01=0., r11=c->GetSigmaZ2(); r00+=fC00; r01+=fC10; r11+=fC11; Double_t det=r00*r11 - r01*r01; Double_t tmp=r00; r00=r11/det; r11=tmp/det; r01=-r01/det; Double_t k00=fC00*r00+fC10*r01, k01=fC00*r01+fC10*r11; Double_t k10=fC10*r00+fC11*r01, k11=fC10*r01+fC11*r11; Double_t k20=fC20*r00+fC21*r01, k21=fC20*r01+fC21*r11; Double_t k30=fC30*r00+fC31*r01, k31=fC30*r01+fC31*r11; Double_t k40=fC40*r00+fC41*r01, k41=fC40*r01+fC41*r11; Double_t dy=c->GetY() - fP0, dz=c->GetZ() - fP1; Double_t cur=fP4 + k40*dy + k41*dz, eta=fP2 + k20*dy + k21*dz; if (TMath::Abs(cur*fX-eta) >= 0.9) { // Int_t n=GetNumberOfClusters(); //if (n>4) cerr<=TMath::Pi()) fAlpha -= 2*TMath::Pi(); Double_t x1=fX, y1=fP0; Double_t ca=cos(alpha), sa=sin(alpha); Double_t r1=fP4*fX - fP2; fX = x1*ca + y1*sa; fP0=-x1*sa + y1*ca; fP2=fP2*ca + (fP4*y1 + sqrt(1.- r1*r1))*sa; Double_t r2=fP4*fX - fP2; if (TMath::Abs(r2) >= 0.99999) { Int_t n=GetNumberOfClusters(); if (n>4) cerr<= 0.) { Int_t n=GetNumberOfClusters(); if (n>4) cerr<=2*TMath::Pi()) phi-=2*TMath::Pi(); return phi; } //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// // MI ADDITION Float_t AliTPCtrack::Density(Int_t row0, Int_t row1) { // // calculate cluster density Int_t good = 0; Int_t found = 0; //if (row0fLastPoint) row1 = fLastPoint; for (Int_t i=row0;i<=row1;i++){ // Int_t index = fClusterIndex[i]; Int_t index = fIndex[i]; if (index!=-1) good++; if (index>0) found++; } Float_t density=0; if (good>0) density = Float_t(found)/Float_t(good); return density; } Float_t AliTPCtrack::Density2(Int_t row0, Int_t row1) { // // calculate cluster density Int_t good = 0; Int_t found = 0; // for (Int_t i=row0;i<=row1;i++){ Int_t index = fIndex[i]; if (index!=-1) good++; if (index>0) found++; } Float_t density=0; if (good>0) density = Float_t(found)/Float_t(good); return density; } Double_t AliTPCtrack::GetZat0() const { // // return virtual z - supposing that x = 0 if (TMath::Abs(fP2)>1) return 0; if (TMath::Abs(fX*fP4-fP2)>1) return 0; Double_t vz = fP1+fP3/fP4*(asin(-fP2)-asin(fX*fP4-fP2)); return vz; } Double_t AliTPCtrack::GetD(Double_t x, Double_t y) const { //------------------------------------------------------------------ // This function calculates the transverse impact parameter // with respect to a point with global coordinates (x,y) //------------------------------------------------------------------ //Double_t xt=fX, yt=fP0; Double_t sn=TMath::Sin(fAlpha), cs=TMath::Cos(fAlpha); Double_t a = x*cs + y*sn; y = -x*sn + y*cs; x=a; // Double_t r = TMath::Abs(1/fP4); Double_t x0 = TMath::Abs(fP2*r); Double_t y0 = fP0; y0= fP0+TMath::Sqrt(1-(fP4*fX-fP2)*(fP4*fX-fP2))/fP4; Double_t delta = TMath::Sqrt((x-x0)*(x-x0)+(y-y0)*(y-y0)); // Double_t delta = TMath::Sqrt(TMath::Abs(x*x-2*x0*x+x0*x0+ y*y-2*y*y0+y0*y0)); delta -= TMath::Abs(r); return delta; } // // void AliTPCtrack::UpdatePoints() { //-------------------------------------------------- //calculates first ,amx dens and last points //-------------------------------------------------- Float_t density[160]; for (Int_t i=0;i<160;i++) density[i]=-1.; fPoints[0]= 160; fPoints[1] = -1; // Int_t ngood=0; Int_t undeff=0; Int_t nall =0; Int_t range=20; for (Int_t i=0;i<160;i++){ Int_t last = i-range; if (nall=0){ if (fIndex[last]>0&& (fIndex[last]&0x8000)==0) ngood--; if (fIndex[last]==-1) undeff--; } if (fIndex[i]>0&& (fIndex[i]&0x8000)==0) ngood++; if (fIndex[i]==-1) undeff++; if (nall==range &&undeffmaxdens){ maxdens=density[i]; indexmax=i; } } // //max dens point fPoints[3] = maxdens; fPoints[1] = indexmax; // // last point for (Int_t i=indexmax;i<160;i++){ if (density[i]<0) continue; if (density[i]0;i--){ if (density[i]<0) continue; if (density[i]