blob: 1ea6cf731c19d9b9f3eed74b5c31abaad020ffa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
"""
Realistic Foregrounds Simulation for EoR 21cm Signal Detection
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2016 Weitian LI
:license: MIT
"""
__title__ = "fg21sim"
__version__ = "0.0.1"
__author__ = "Weitian LI"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2016 Weitian LI"
__url__ = "https://github.com/liweitianux/fg21sim"
# Set default logging handle to avoid "No handler found" warnings.
import logging
from logging import NullHandler
logging.getLogger(__name__).addHandler(NullHandler())
|