Skip to content

Commit

Permalink
Technical bug fix in GetPredictedChi2: GetAlpha() -> t->GetAlpha()
Browse files Browse the repository at this point in the history
  • Loading branch information
shahor02 committed Jun 28, 2014
1 parent 6f2b051 commit 126949e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion STEER/STEERBase/AliExternalTrackParam.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1303,7 +1303,7 @@ GetPredictedChi2(const AliExternalTrackParam *t) const {
// and estimated at the same reference plane.
//----------------------------------------------------------------

if (TMath::Abs(GetAlpha()-GetAlpha()) > FLT_EPSILON) {
if (TMath::Abs(t->GetAlpha()-GetAlpha()) > FLT_EPSILON) {
AliError("The reference systems of the tracks differ !");
return kVeryBig;
}
Expand Down

0 comments on commit 126949e

Please sign in to comment.