From 5e4d9540a557d34664e6c5db213194857afbf3ac Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 30 Oct 2018 21:34:58 +0800 Subject: Deprecate the pointsource component --- README.rst | 11 ----------- fg21sim/foregrounds.py | 5 +---- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/README.rst b/README.rst index b695158..5960fad 100644 --- a/README.rst +++ b/README.rst @@ -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), ]) -- cgit v1.2.2