From 1f120458658f131b19ee400fbf34de9e16aee30b Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sun, 12 Feb 2017 18:41:56 +0800 Subject: calc_coolfunc.py: Fix a minor typo --- calc_coolfunc.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/calc_coolfunc.py b/calc_coolfunc.py index cf49afd..f589621 100755 --- a/calc_coolfunc.py +++ b/calc_coolfunc.py @@ -4,9 +4,11 @@ # # Aaron LI # Created: 2016-06-19 -# Updated: 2016-07-13 +# Updated: 2017-02-09 # # Change logs: +# 2017-02-09: +# * Fix a minor error of the default 'energy_high' value # 2016-07-13: # * Error on missing user config file # * Add check of the existence of t_profile @@ -204,7 +206,7 @@ def main(): "redshift": redshift, "nh": config.as_float("nh"), "energy_low": float(config.get("energy_low", 0.7)), - "energy_high": float(config.get("energy_high", 0.7)), + "energy_high": float(config.get("energy_high", 7.0)), "xspec_script": config["xspec_script"], "coolfunc": config["coolfunc"], "apec_norm": calc_apec_norm(z=redshift), -- cgit v1.2.2