diff options
| -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),  ])  | 
