From 511a157193beb04109f33c0e32a069ba44240cb4 Mon Sep 17 00:00:00 2001 From: Felix Riehn <felix@matilda> Date: Mon, 3 Aug 2020 15:17:04 +0100 Subject: [PATCH] increase precision of test at high energy --- Processes/Sibyll/testSibyll.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Processes/Sibyll/testSibyll.cc b/Processes/Sibyll/testSibyll.cc index 18c0b94c5..dee7ee31b 100644 --- a/Processes/Sibyll/testSibyll.cc +++ b/Processes/Sibyll/testSibyll.cc @@ -223,11 +223,11 @@ TEST_CASE("SibyllInterface", "[processes]") { [[maybe_unused]] const process::EProcessReturn ret = model.DoInteraction(projectile); auto const pSum = sumMomentum(view, cs); - CHECK(pSum.GetComponents(cs).GetX() / P0 == Approx(1).margin(0.05)); + CHECK(pSum.GetComponents(cs).GetX() / P0 == Approx(1).margin(0.001)); CHECK(pSum.GetComponents(cs).GetY() / 1_GeV == Approx(0).margin(1e-4)); CHECK(pSum.GetComponents(cs).GetZ() / 1_GeV == Approx(0).margin(1e-4)); - CHECK((pSum - plab).norm() / 1_GeV == Approx(0).margin(plab.norm() * 0.05 / 1_GeV)); + CHECK((pSum - plab).norm() / 1_GeV == Approx(0).margin(plab.norm() * 0.001 / 1_GeV)); CHECK(pSum.norm() / P0 == Approx(1).margin(0.05)); [[maybe_unused]] const GrammageType length = model.GetInteractionLength(particle); } -- GitLab