Skip to content
Snippets Groups Projects
Commit d769fec1 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'CID114500_master_fix_Uninitialized_Scalar_new' into 'master'

Solution to uninitialized scalar field.

See merge request atlas/athena!8460
parents a2115ee6 c67ced56
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment