Skip to content

Commit 82e1599

Browse files
authored
Merge pull request #834 from beomki-yeo/tighter-condition
Make the resolution matching condition tighter
1 parent 75b72c5 commit 82e1599

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/common/tests/kalman_fitting_momentum_resolution_test.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,12 @@ void KalmanFittingMomentumResolutionTests::momentum_resolution_tests([
102102

103103
// Check if the standard deviation of the qopT residuals is within the
104104
// theoretically expected range.
105-
EXPECT_NEAR(fit_par[2], expected_sigma_qopT, expected_sigma_qopT * 0.05f)
105+
EXPECT_NEAR(fit_par[2], expected_sigma_qopT, expected_sigma_qopT * 0.025f)
106106
<< " Residual qopT sigma value error";
107107

108108
#else
109-
std::cout << "Pull value tests not performed without ROOT" << std::endl;
109+
std::cout << "Momentum resolution tests not performed without ROOT"
110+
<< std::endl;
110111
#endif // TRACCC_HAVE_ROOT
111112

112113
return;

0 commit comments

Comments
 (0)