IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 99aeece5 authored by Remy Prechelt's avatar Remy Prechelt
Browse files

Merge branch 'change_logging_level_InteractionHistogram' into 'master'

Change logging level for InteractionHistogram::fill from info to debug

See merge request !393
parents 3a97b125 3f16bff0
No related branches found
No related tags found
No related merge requests found
......@@ -29,10 +29,10 @@ namespace corsika {
auto const sqrtS = sqrt(projectile_mass * projectile_mass +
mass_target * mass_target + 2 * lab_energy * mass_target);
CORSIKA_LOG_INFO("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));
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));
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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment