diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-19 10:09:57 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-19 10:09:57 +0800 |
commit | e8d45dd2e8365171a9bc6b7cd7c7d6623fa5e013 (patch) | |
tree | c5eac5f3806f17929358691ce441432ddc93c10a /fg21sim/configs/20-extragalactic.conf.spec | |
parent | e8e7198c67b4c0e62cd419b1ebb8b300a853057d (diff) | |
download | fg21sim-e8d45dd2e8365171a9bc6b7cd7c7d6623fa5e013.tar.bz2 |
clusters/halo: Rewrite halos catalog and raw data save
Replace option "halos_dumpfile" with "halos_catalog_outfile", and use
option "dump_halos_data" to control whether to dump the raw data.
Diffstat (limited to 'fg21sim/configs/20-extragalactic.conf.spec')
-rw-r--r-- | fg21sim/configs/20-extragalactic.conf.spec | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/fg21sim/configs/20-extragalactic.conf.spec b/fg21sim/configs/20-extragalactic.conf.spec index 425df88..36d14c9 100644 --- a/fg21sim/configs/20-extragalactic.conf.spec +++ b/fg21sim/configs/20-extragalactic.conf.spec @@ -74,9 +74,17 @@ # to generate images at all frequencies. use_output_catalog = boolean(default=False) - # Output file for dumping the simulated cluster halos data in Python - # native *pickle* format (i.e., .pkl) - halos_dumpfile = string(default=None) + # Output CSV file of the halos catalog containing the calculated + # properties of the simulated halos. + halos_catalog_outfile = string(default=None) + + # Whether to dump the whole data of the simulated halos in Python + # native pickle format (i.e., ".pkl") to a file with the same basename + # as the above ``halos_catalog_outfile``? + # The dumped data also includes the derived electron spectrum for + # each halo, therefore this file can be reloaded back in order to + # calculate the emissions at other frequencies. + dump_halos_data = boolean(default=True) # The minimum mass for clusters when to determine the galaxy clusters # total counts and their distributions. |