Skip to content

Commit

Permalink
Retagging v4-17-01
Browse files Browse the repository at this point in the history
  • Loading branch information
hristov committed May 17, 2009
2 parents c77342c + 72c0292 commit 4087fc1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ITS/AliITStrackV2.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,10 @@ GetPhiZat(Double_t r, Double_t &phi, Double_t &z) const {
// The track curvature is neglected.
//------------------------------------------------------------------
Double_t d=GetD(0.,0.);
if (TMath::Abs(d) > r) return kFALSE;
if (TMath::Abs(d) > r) {
if (r>1e-1) return kFALSE;
r = TMath::Abs(d);
}

Double_t rcurr=TMath::Sqrt(GetX()*GetX() + GetY()*GetY());
if (TMath::Abs(d) > rcurr) return kFALSE;
Expand Down

0 comments on commit 4087fc1

Please sign in to comment.