diff options
author | Aaron LI <aly@aaronly.me> | 2019-02-26 21:24:23 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-02-26 21:24:23 +0800 |
commit | 12113be5f66bbfb048cc49b47c8df96d44a57807 (patch) | |
tree | cde2e1ff4e1070b04b1a8dfa375dfcbb4ff1cfbb /fg21sim/configs/config.spec | |
parent | e405b8dbb8b8bd4c9eda80cb49235979e7500a3f (diff) | |
download | fg21sim-12113be5f66bbfb048cc49b47c8df96d44a57807.tar.bz2 |
clusters/main: Allow to disable map generation
New configuration option 'extragalactic/clusters/make_maps' is added to
control whether or not to make and save the simulated maps.
Diffstat (limited to 'fg21sim/configs/config.spec')
-rw-r--r-- | fg21sim/configs/config.spec | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fg21sim/configs/config.spec b/fg21sim/configs/config.spec index 5d13bed..e3d0aa5 100644 --- a/fg21sim/configs/config.spec +++ b/fg21sim/configs/config.spec @@ -373,6 +373,10 @@ stream = option("stderr", "stdout", "", default="stderr") # Unit: [keV] kT_out = float(default=0, min=0) + # Whether to make the simulated sky maps? It is useful to disable the + # map generation during the parameter tuning. + make_maps = boolean(default=True) + # Filename prefix for this component prefix = string(default="cluster") # Output directory to save the simulated results |