From abcf2348e5f97afc06b7fb6cb4e69691b9f0aa01 Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Fri, 11 Jun 2021 18:06:29 +0200 Subject: [PATCH] output --- tests/modules/testPythia8.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/modules/testPythia8.cpp b/tests/modules/testPythia8.cpp index e6cd55e8f..f6809d4a6 100644 --- a/tests/modules/testPythia8.cpp +++ b/tests/modules/testPythia8.cpp @@ -118,10 +118,12 @@ TEST_CASE("Pythia8Interface", "modules") { corsika::pythia8::Decay decay(particleList); + CORSIKA_LOG_INFO("stack: {} {}", stack.asString(), particle.asString()); [[maybe_unused]] const TimeType time = decay.getLifetime(particle); double const gamma = particle.getEnergy() / get_mass(Code::PiPlus); CHECK(time == get_lifetime(Code::PiPlus) * gamma); decay.doDecay(*secViewPtr); + CORSIKA_LOG_INFO("piplus->{}", stack.asString()); CHECK(stack.getEntries() == 3); // piplus, muplu, numu auto const pSum = sumMomentum(view, cs); CHECK((pSum - plab).getNorm() / 1_GeV == Approx(0).margin(1e-4)); -- GitLab