aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2018-10-30 21:34:58 +0800
committerAaron LI <aly@aaronly.me>2018-10-30 22:04:27 +0800
commit5e4d9540a557d34664e6c5db213194857afbf3ac (patch)
tree727f46633b8ef62397e22eb6852455706ad60403 /fg21sim
parent86aaceba1a64255bf3ce46b6d2ea98615e6b21af (diff)
downloadfg21sim-5e4d9540a557d34664e6c5db213194857afbf3ac.tar.bz2
Deprecate the pointsource component
Diffstat (limited to 'fg21sim')
-rw-r--r--fg21sim/foregrounds.py5
1 files changed, 1 insertions, 4 deletions
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),
])