1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00

now really fixed eisenstein initialisation

This commit is contained in:
Oliver Hahn 2019-05-24 17:47:30 +02:00
parent 8d6687394e
commit 5d6c779574

View file

@ -209,12 +209,6 @@ public:
*/
transfer_eisenstein_plugin(ConfigFile &cf)
: TransferFunction_plugin(cf)
{
tf_distinct_ = false;
tf_withvel_ = false;
}
void initialise()
{
double Tcmb = pcf_->GetValueSafe<double>("cosmology", "Tcmb", 2.726);
double H0 = pcf_->GetValue<double>("cosmology", "H0");
@ -222,6 +216,9 @@ public:
double Omega_b = pcf_->GetValue<double>("cosmology", "Omega_b");
etf_.set_parameters(H0, Omega_m, Omega_b, Tcmb);
tf_distinct_ = false;
tf_withvel_ = false;
}
//! Computes the transfer function for k in Mpc/h by calling TFfit_onek
@ -262,10 +259,6 @@ protected:
public:
transfer_eisenstein_wdm_plugin(ConfigFile &cf)
: TransferFunction_plugin(cf)
{
}
void initialise()
{
double Tcmb = pcf_->GetValueSafe("cosmology", "Tcmb", 2.726);
omegam_ = pcf_->GetValue<double>("cosmology", "Omega_m");