aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/extragalactic/clusters/main.py
blob: 8f7f8e7af2f94b2efda968363ce50d675e1f2bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright (c) 2017 Weitian LI <liweitianux@live.com>
# MIT license

"""
Simulate (giant) radio halos of galaxy clusters as one of the
foreground components.
"""

import logging

import numpy as np

from .halo import HaloSingle


logger = logging.getLogger(__name__)


class Halos:
    """
    Simulate (giant) radio halos of galaxy clusters as one of the
    foreground components.
    """
    pass