From 4476a0ca0e22d6a35bb07da87956d21ec7c49074 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sat, 22 Jul 2017 23:53:20 +0800 Subject: Use all uppercase to identify the global CONFIGS and COSMO Update to use the global CONFIGS and COSMO Signed-off-by: Aaron LI --- fg21sim/utils/cosmology.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'fg21sim/utils/cosmology.py') diff --git a/fg21sim/utils/cosmology.py b/fg21sim/utils/cosmology.py index e4979b1..e4ac4d7 100644 --- a/fg21sim/utils/cosmology.py +++ b/fg21sim/utils/cosmology.py @@ -11,7 +11,7 @@ import numpy as np from scipy import integrate from astropy.cosmology import FlatLambdaCDM -from ..configs import configs +from ..configs import CONFIGS from .units import (UnitConversions as AUC, Constants as AC) @@ -55,10 +55,10 @@ class Cosmology: _growth_factor0 = None def __init__(self, - H0=configs.cosmology["H0"], - Om0=configs.cosmology["Om0"], - Ob0=configs.cosmology["Ob0"], - sigma8=configs.cosmology["sigma8"]): + H0=CONFIGS.cosmology["H0"], + Om0=CONFIGS.cosmology["Om0"], + Ob0=CONFIGS.cosmology["Ob0"], + sigma8=CONFIGS.cosmology["sigma8"]): self.setup(H0=H0, Om0=Om0, Ob0=Ob0, sigma8=sigma8) def setup(self, **kwargs): -- cgit v1.2.2