diff --git a/Tracking/TrkVertexFitter/TrkVertexBilloirTools/TrkVertexBilloirTools/FullVertexFitter.h b/Tracking/TrkVertexFitter/TrkVertexBilloirTools/TrkVertexBilloirTools/FullVertexFitter.h index 8e3d3678a73c02701179701aca0a15c7c0e4d03e..2c2eb9f5075bfc595c7bfcd82d06d9a5e7f343a2 100755 --- a/Tracking/TrkVertexFitter/TrkVertexBilloirTools/TrkVertexBilloirTools/FullVertexFitter.h +++ b/Tracking/TrkVertexFitter/TrkVertexBilloirTools/TrkVertexBilloirTools/FullVertexFitter.h @@ -115,7 +115,6 @@ namespace Trk double m_maxDchi2PerNdf; /** Data members to store the results */ - FitError m_error; ToolHandle< Trk::IExtrapolator > m_extrapolator; ToolHandle< Trk::IVertexLinearizedTrackFactory > m_linFactory; diff --git a/Tracking/TrkVertexFitter/TrkVertexBilloirTools/src/FullVertexFitter.cxx b/Tracking/TrkVertexFitter/TrkVertexBilloirTools/src/FullVertexFitter.cxx index 8285e966b6c2253caa952122c648ac96e93bf844..6a647a39a98a34e0edd4d8aa6bf4bcb0108ca875 100755 --- a/Tracking/TrkVertexFitter/TrkVertexBilloirTools/src/FullVertexFitter.cxx +++ b/Tracking/TrkVertexFitter/TrkVertexBilloirTools/src/FullVertexFitter.cxx @@ -264,7 +264,6 @@ namespace Trk { if ( originalPerigees.empty() ) { - m_error = NOTRKS; ATH_MSG_VERBOSE("No tracks to fit in this event."); return 0; } @@ -531,8 +530,7 @@ namespace Trk if ( ( *BTIter ).chi2 < 0 ) { - std::cout << "FullVertexFitter::calculate: error in chi2_per_track\n"; - m_error = NEGTRCHI2; + ATH_MSG_WARNING( "FullVertexFitter::calculate: error in chi2_per_track" ); return 0; } chi2New += ( *BTIter ).chi2;