diff options
author | Aaron LI <aly@aaronly.me> | 2018-10-30 21:34:58 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-10-30 22:04:27 +0800 |
commit | 5e4d9540a557d34664e6c5db213194857afbf3ac (patch) | |
tree | 727f46633b8ef62397e22eb6852455706ad60403 | |
parent | 86aaceba1a64255bf3ce46b6d2ea98615e6b21af (diff) | |
download | fg21sim-5e4d9540a557d34664e6c5db213194857afbf3ac.tar.bz2 |
Deprecate the pointsource component
-rw-r--r-- | README.rst | 11 | ||||
-rw-r--r-- | fg21sim/foregrounds.py | 5 |
2 files changed, 1 insertions, 15 deletions
@@ -22,17 +22,6 @@ Features + ``extragalactic/clusters``: Emission from extragalactic galaxy clusters (*Note:* only giant radio halos) - + ``extragalactic/pointsources``: - Emission from multiple types of extragalactic discrete point sources - (*WARNING:* need updates and integration!) - - Current supported point sources types: - - - Star-forming galaxies (i.e., normal galaxies) - - Starburst galaxies - - Radio-quiet AGNs - - Fanaroff-Riley type I (FR-I) AGNs - - Fanaroff-Riley type II (FR-II) AGNs * All-sky simulation by utilizing HEALPix (*Note:* not all components are currently supported) diff --git a/fg21sim/foregrounds.py b/fg21sim/foregrounds.py index a0ef0af..b59ba10 100644 --- a/fg21sim/foregrounds.py +++ b/fg21sim/foregrounds.py @@ -10,7 +10,6 @@ Currently supported foregrounds: - Galactic free-free - Galactic supernova remnants - Extragalactic clusters of galaxies (radio halos) -- Extragalactic point sources (multiple types) """ import logging @@ -20,8 +19,7 @@ from collections import OrderedDict from .galactic import (Synchrotron as GalacticSynchrotron, FreeFree as GalacticFreeFree, SuperNovaRemnants as GalacticSNR) -from .extragalactic import (GalaxyClusters as EGGalaxyClusters, - PointSources as EGPointSources) +from .extragalactic import GalaxyClusters as EGGalaxyClusters from .products import Products @@ -33,7 +31,6 @@ COMPONENTS_ALL = OrderedDict([ ("galactic/freefree", GalacticFreeFree), ("galactic/snr", GalacticSNR), ("extragalactic/clusters", EGGalaxyClusters), - ("extragalactic/pointsources", EGPointSources), ]) |