aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim
diff options
context:
space:
mode:
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),
])