diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-16 00:14:34 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-17 14:55:10 +0800 |
commit | 7506a5b37699f27fbfabd104501dc2c6b7e2ad5c (patch) | |
tree | 422be95de3b5f9e63e3791c12bc1cd52cb8fb432 /fg21sim | |
parent | a2ac8897247ff0c2be7b725111a5d8ccd9a7eb15 (diff) | |
download | fg21sim-7506a5b37699f27fbfabd104501dc2c6b7e2ad5c.tar.bz2 |
configs: Add new section "[galactic][snr]" for SNRs simulation
NOTE: very preliminary and may change at any time!
Diffstat (limited to 'fg21sim')
-rw-r--r-- | fg21sim/configs/10-galactic.conf.spec | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/fg21sim/configs/10-galactic.conf.spec b/fg21sim/configs/10-galactic.conf.spec index 216bc42..c1b2c4e 100644 --- a/fg21sim/configs/10-galactic.conf.spec +++ b/fg21sim/configs/10-galactic.conf.spec @@ -35,7 +35,7 @@ # Output directory to save the simulated results output_dir = string(default=None) - # free-free bremsstrahlung emission component + # Free-free bremsstrahlung emission component [[freefree]] # The H{\alpha} map used as the free-free emission template halphamap = string(default=None) @@ -53,3 +53,21 @@ save = boolean(default=True) # Output directory to save the simulated results output_dir = string(default=None) + + # Supernova remnants emission + [[snr]] + # The Galactic SNRs catalog data (CSV file) + catalog = string(default=None) + # Output the effective/inuse SNRs catalog data (CSV file) + catalog_outfile = string(default=None) + + # Resolution (unit: arcmin) for simulating each SNR, which are finally + # mapped to the HEALPix map of Nside specified in "[common]" section. + resolution = float(default=1.0) + + # Filename prefix for this component + prefix = string(default="gsnr") + # Whether save this component to disk + save = boolean(default=True) + # Output directory to save the simulated results + output_dir = string(default=None) |