diff options
author | Aaron LI <aly@aaronly.me> | 2018-10-30 21:41:20 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-10-30 22:04:27 +0800 |
commit | 802985804b795d97aacb7b701fd0aba02cff31f8 (patch) | |
tree | c5293a1b540bb2f13ca550086466797bb52784cc /fg21sim | |
parent | 5e4d9540a557d34664e6c5db213194857afbf3ac (diff) | |
download | fg21sim-802985804b795d97aacb7b701fd0aba02cff31f8.tar.bz2 |
Deprecate the pointsource component (2)
Diffstat (limited to 'fg21sim')
-rw-r--r-- | fg21sim/configs/config.spec | 49 | ||||
-rw-r--r-- | fg21sim/extragalactic/__init__.py | 3 |
2 files changed, 1 insertions, 51 deletions
diff --git a/fg21sim/configs/config.spec b/fg21sim/configs/config.spec index 6b871e4..5f9a512 100644 --- a/fg21sim/configs/config.spec +++ b/fg21sim/configs/config.spec @@ -8,20 +8,13 @@ [foregrounds] # Diffuse Galactic synchrotron emission (unpolarized) galactic/synchrotron = boolean(default=False) - # Diffuse Galactic free-free emission galactic/freefree = boolean(default=False) - # Galactic supernova remnants emission galactic/snr = boolean(default=False) - # Extragalactic clusters of galaxies emission extragalactic/clusters = boolean(default=False) -# 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) - # Simulation sky/region configurations [sky] @@ -448,45 +441,3 @@ stream = option("stderr", "stdout", "", default="stderr") # the acceleration is turned off and only leaves energy loss mechanisms. # Unit: [Gyr] time_init = float(default=1.0, min=0) - - - # - # Extragalactic point sources - # - [[pointsources]] - # Output directory to save the simulated catalog - output_dir = string(default="PS_tables") - # PS components to be simulated - pscomponents = string_list(default=list()) - # Resolution [arcmin] - resolution = float(default=0.6, min=0.0) - - [[[starforming]]] - # Number of samples - numps = integer(default=1000) - # Prefix - prefix = string(default="SF") - - [[[starbursting]]] - # Number of samples - numps = integer(default=1000) - # Prefix - prefix = string(default="SB") - - [[[radioquiet]]] - # Number of samples - numps = integer(default=1000) - # Prefix - prefix = string(default="RQ") - - [[[FRI]]] - # Number of samples - numps = integer(default=1000) - # Prefix - prefix = string(default="FRI") - - [[[FRII]]] - # Number of samples - numps = integer(default=1000) - # Prefix - prefix = string(default="FRII") diff --git a/fg21sim/extragalactic/__init__.py b/fg21sim/extragalactic/__init__.py index 0935e03..9d3c1d9 100644 --- a/fg21sim/extragalactic/__init__.py +++ b/fg21sim/extragalactic/__init__.py @@ -1,5 +1,4 @@ -# Copyright (c) 2016-2017 Weitian LI <weitian@aaronly.me> +# Copyright (c) 2016-2018 Weitian LI <weitian@aaronly.me> # MIT license from .clusters import GalaxyClusters -from .pointsources import PointSources |