From 493436954f28ac90d76c5b7ea49d375b731e8144 Mon Sep 17 00:00:00 2001 From: Oliver Hahn Date: Fri, 23 Feb 2024 22:17:07 +0100 Subject: [PATCH] added output whether PS is normalised using sigma8 or not --- src/cosmology_calculator.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cosmology_calculator.hh b/src/cosmology_calculator.hh index 1748430..23dbb35 100644 --- a/src/cosmology_calculator.hh +++ b/src/cosmology_calculator.hh @@ -184,6 +184,7 @@ public: transfer_function_->intialise(); if( !transfer_function_->tf_isnormalised_ ){ cosmo_param_.set("pnorm", this->compute_pnorm_from_sigma8()*Dplus_start_*Dplus_start_ ); + music::ilog << "Setting PS normalisation from specified sigma8 = " << sigma8 << std::endl; }else{ // WARNING: we do explicit back-scaling here, which is notably different from monofonIC cosmo_param_.set("pnorm", Dplus_start_*Dplus_start_/Dplus_target_/Dplus_target_);