Skip to content
Snippets Groups Projects

Address #199 and fix Moore#422

Merged Gerhard Raven requested to merge issue-199 into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -302,7 +302,7 @@ StatusCode CaloHypoPacker::check( const DataVector& dataA, const DataVector& dat
if ( 5.e-5 < std::abs( oPos->z() - tPos->z() ) ) errors.push_back( ErrorCode::pos_z );
if ( 5.e-5 < std::abs( oPos->x() - tPos->x() ) ) errors.push_back( ErrorCode::pos_x );
if ( 5.e-5 < std::abs( oPos->y() - tPos->y() ) ) errors.push_back( ErrorCode::pos_y );
if ( 5.e-3 < std::abs( oPos->e() - tPos->e() ) ) errors.push_back( ErrorCode::pos_e );
if ( 5.01e-3 < std::abs( oPos->e() - tPos->e() ) ) errors.push_back( ErrorCode::pos_e );
if ( 5.e-5 < std::abs( oPos->center()( 0 ) - tPos->center()( 0 ) ) ) errors.push_back( ErrorCode::center0 );
if ( 5.e-5 < std::abs( oPos->center()( 1 ) - tPos->center()( 1 ) ) ) errors.push_back( ErrorCode::center1 );
Loading