diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-05-16 14:21:58 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-05-16 15:26:46 +0800 |
commit | 02d9b9bc2263d4eabee8a07bbf8c7606255fa761 (patch) | |
tree | c3f05984a124d16f8251b3b68131663b2aaf054a /fg21sim/configs/00-general.conf.spec | |
parent | d19f16e0d5a2f753fbc323fa13c438327ff3e058 (diff) | |
download | fg21sim-02d9b9bc2263d4eabee8a07bbf8c7606255fa761.tar.bz2 |
configs: Use separate section "foregrounds" to config components
Also update copyright information.
Diffstat (limited to 'fg21sim/configs/00-general.conf.spec')
-rw-r--r-- | fg21sim/configs/00-general.conf.spec | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/fg21sim/configs/00-general.conf.spec b/fg21sim/configs/00-general.conf.spec index 4779f6c..aa2a29a 100644 --- a/fg21sim/configs/00-general.conf.spec +++ b/fg21sim/configs/00-general.conf.spec @@ -19,19 +19,24 @@ nside = integer(min=1, default=1024) lmin = integer(min=0, default=10) lmax = integer(min=1, default=3071) -# List of foreground components to be simulated: -# + galactic/synchrotron: -# Diffuse Galactic synchrotron emission (unpolarized) -# + galactic/freefree: -# Diffuse Galactic free-free emission -# + galactic/snr: -# Galactic supernova remnants emission -# + extragalactic/clusters: -# Extragalactic clusters of galaxies emission -# + extragalactic/pointsources: -# Emission from multiple types of extragalactic point sources -# NOTE: This component is not well integrated and tested at the moment -components = force_list(default=list("galactic/synchrotron", "galactic/freefree", "galactic/snr", "extragalactic/clusters")) + +# Foreground components to be simulated +[foregrounds] +# Diffuse Galactic synchrotron emission (unpolarized) +galactic/synchrotron = boolean(default=True) + +# Diffuse Galactic free-free emission +galactic/freefree = boolean(default=True) + +# Galactic supernova remnants emission +galactic/snr = boolean(default=True) + +# Extragalactic clusters of galaxies emission +extragalactic/clusters = boolean(default=True) + +# Emission from multiple types of extragalactic point sources +# NOTE: This component is not well integrated and tested at the moment +extragalactic/pointsources = boolean(default=False) # Frequencies specification of the simulation products |