From 3f16bff0b492abf83485c7b85fc5cf619e1ff898 Mon Sep 17 00:00:00 2001 From: Remy Prechelt <prechelt@hawaii.edu> Date: Thu, 21 Oct 2021 22:49:14 +0200 Subject: [PATCH] Fix formatting of debug statement. --- corsika/detail/framework/process/InteractionHistogram.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/corsika/detail/framework/process/InteractionHistogram.inl b/corsika/detail/framework/process/InteractionHistogram.inl index 0531cc9ef..0c9f697ac 100644 --- a/corsika/detail/framework/process/InteractionHistogram.inl +++ b/corsika/detail/framework/process/InteractionHistogram.inl @@ -30,9 +30,9 @@ namespace corsika { mass_target * mass_target + 2 * lab_energy * mass_target); CORSIKA_LOG_DEBUG("pM={}, tM={}, pid={}, Elab={}, sqrtS={}, pdg={} a={} z={}", - projectile_mass / 1_GeV, mass_target / 1_GeV, projectile_id, - lab_energy / 1_GeV, sqrtS / 1_GeV, get_PDG(projectile_id), - get_nucleus_A(projectile_id), get_nucleus_Z(projectile_id)); + projectile_mass / 1_GeV, mass_target / 1_GeV, projectile_id, + lab_energy / 1_GeV, sqrtS / 1_GeV, get_PDG(projectile_id), + get_nucleus_A(projectile_id), get_nucleus_Z(projectile_id)); inthist_cms_(static_cast<int>(get_PDG(projectile_id)), sqrtS * inv_eV); inthist_lab_(static_cast<int>(get_PDG(projectile_id)), lab_energy * inv_eV); -- GitLab