# 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