From 044b19805f4523ea028fdd5b2073fb4aed2fd6a8 Mon Sep 17 00:00:00 2001 From: Felix Riehn <felix@matilda> Date: Sat, 1 Aug 2020 14:32:42 +0100 Subject: [PATCH] do clang --- Processes/Sibyll/Interaction.cc | 9 ++++----- Processes/Sibyll/testSibyll.cc | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Processes/Sibyll/Interaction.cc b/Processes/Sibyll/Interaction.cc index bb4e93d80..d738dc81c 100644 --- a/Processes/Sibyll/Interaction.cc +++ b/Processes/Sibyll/Interaction.cc @@ -327,12 +327,11 @@ namespace corsika::process::sibyll { Ecm_final += psib.GetEnergy(); } cout << "conservation (all GeV):" << endl - << "Ecm_initial(per nucleon)=" << Ecm / 1_GeV - << " Ecm_final(per nucleon)=" << Ecm_final * 2. / (get_nwounded() + 1) / 1_GeV << endl - << "Elab_initial=" << Etot / 1_GeV - << " Elab_final=" << Elab_final / 1_GeV + << "Ecm_initial(per nucleon)=" << Ecm / 1_GeV << " Ecm_final(per nucleon)=" + << Ecm_final * 2. / (get_nwounded() + 1) / 1_GeV << endl + << "Elab_initial=" << Etot / 1_GeV << " Elab_final=" << Elab_final / 1_GeV << " diff (%)=" << (Elab_final / Etot / get_nwounded() - 1) * 100 - << " E in nucleons=" << constants::nucleonMass * get_nwounded() / 1_GeV + << " E in nucleons=" << constants::nucleonMass * get_nwounded() / 1_GeV << endl << "Plab_initial=" << (pProjectileLab / 1_GeV).GetComponents() << ", Plab_final=" << (Plab_final / 1_GeV).GetComponents() << endl; diff --git a/Processes/Sibyll/testSibyll.cc b/Processes/Sibyll/testSibyll.cc index 9aad0251e..18c0b94c5 100644 --- a/Processes/Sibyll/testSibyll.cc +++ b/Processes/Sibyll/testSibyll.cc @@ -203,7 +203,7 @@ TEST_CASE("SibyllInterface", "[processes]") { [[maybe_unused]] const GrammageType length = model.GetInteractionLength(particle); } - SECTION("InteractionInterface - high energy") { + SECTION("InteractionInterface - high energy") { setup::Stack stack; const HEPEnergyType E0 = 60_EeV; -- GitLab