IAP GITLAB

Skip to content
Snippets Groups Projects
Commit e7400a7f authored by Dominik Baack's avatar Dominik Baack Committed by ralfulrich
Browse files

removed cout in LayeredSphericalAtmosphereBuilder.inl

parent 62bf2d02
No related branches found
No related tags found
1 merge request!280Refactory 2020
...@@ -37,7 +37,7 @@ namespace corsika { ...@@ -37,7 +37,7 @@ namespace corsika {
std::make_unique<Sphere>(center_, radius)); std::make_unique<Sphere>(center_, radius));
auto const rho0 = b / c; auto const rho0 = b / c;
std::cout << "rho0 = " << rho0 << ", c = " << c << std::endl; CORSIKA_LOG_INFO("rho0 = {}, c = {}", rho0, c);
node->SetModelProperties<SlidingPlanarExponential<IMediumModel>>( node->SetModelProperties<SlidingPlanarExponential<IMediumModel>>(
center_, rho0, -c, *composition_, seaLevel_); center_, rho0, -c, *composition_, seaLevel_);
...@@ -54,7 +54,7 @@ namespace corsika { ...@@ -54,7 +54,7 @@ namespace corsika {
GrammageType constexpr b = 1 * 1_g / (1_cm * 1_cm); GrammageType constexpr b = 1 * 1_g / (1_cm * 1_cm);
auto const rho0 = b / c; auto const rho0 = b / c;
std::cout << "rho0 = " << rho0; CORSIKA_LOG_INFO("rho0 = {}", rho0);
auto node = std::make_unique<VolumeTreeNode<IMediumModel>>( auto node = std::make_unique<VolumeTreeNode<IMediumModel>>(
std::make_unique<Sphere>(center_, radius)); std::make_unique<Sphere>(center_, radius));
......
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