backgrounds 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- backgrounds-0.1.0/PKG-INFO +34 -0
- backgrounds-0.1.0/README.md +24 -0
- backgrounds-0.1.0/backgrounds/__init__.py +9 -0
- backgrounds-0.1.0/backgrounds/analysis.py +1369 -0
- backgrounds-0.1.0/backgrounds/core.py +587 -0
- backgrounds-0.1.0/backgrounds/expectations.py +247 -0
- backgrounds-0.1.0/backgrounds/instru.py +202 -0
- backgrounds-0.1.0/backgrounds/loadings.py +498 -0
- backgrounds-0.1.0/backgrounds/noise.py +1642 -0
- backgrounds-0.1.0/backgrounds/plotting.py +453 -0
- backgrounds-0.1.0/backgrounds/priors.py +1698 -0
- backgrounds-0.1.0/backgrounds/psd.py +836 -0
- backgrounds-0.1.0/backgrounds/sampling.py +82 -0
- backgrounds-0.1.0/backgrounds/signal.py +887 -0
- backgrounds-0.1.0/backgrounds/tdi.py +346 -0
- backgrounds-0.1.0/backgrounds/utils.py +1115 -0
- backgrounds-0.1.0/backgrounds.egg-info/PKG-INFO +34 -0
- backgrounds-0.1.0/backgrounds.egg-info/SOURCES.txt +26 -0
- backgrounds-0.1.0/backgrounds.egg-info/dependency_links.txt +1 -0
- backgrounds-0.1.0/backgrounds.egg-info/requires.txt +6 -0
- backgrounds-0.1.0/backgrounds.egg-info/top_level.txt +1 -0
- backgrounds-0.1.0/pyproject.toml +23 -0
- backgrounds-0.1.0/setup.cfg +4 -0
- backgrounds-0.1.0/setup.py +29 -0
- backgrounds-0.1.0/tests/test_likelihoods.py +118 -0
- backgrounds-0.1.0/tests/test_noises.py +100 -0
- backgrounds-0.1.0/tests/test_responses.py +126 -0
- backgrounds-0.1.0/tests/test_tdi.py +78 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: backgrounds
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Tools for the detection of stochastic gravitational-wave backgrounds based on J.B. Bayle's LISA GW Response.
|
|
5
|
+
Home-page: https://gitlab.in2p3.fr/qbaghi/backgrounds
|
|
6
|
+
Author: Quentin Baghi
|
|
7
|
+
Author-email: quentin.baghi@protonmail.com
|
|
8
|
+
Requires-Python: >=3.7
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# backgrounds
|
|
12
|
+
|
|
13
|
+
Principal component analysis application to stochastic gravitational wave detection.
|
|
14
|
+
|
|
15
|
+
## Dependencies
|
|
16
|
+
|
|
17
|
+
Backgrounds requires LISA Constants and LISA GW Response from the LISA Simulation suite, which can be installed as
|
|
18
|
+
```
|
|
19
|
+
pip install git+https://@gitlab.in2p3.fr/lisa-simulation/constants.git@latest
|
|
20
|
+
pip install git+https://gitlab.in2p3.fr/lisa-simulation/gw-response.git@latest
|
|
21
|
+
```
|
|
22
|
+
To run the scripts in the tests folder it is recommanded to install the packages listed in the requirements:
|
|
23
|
+
```
|
|
24
|
+
pip install --no-cache-dir -r requirements.txt
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
Please clone the repository and do a manual installation:
|
|
30
|
+
```
|
|
31
|
+
git clone git@gitlab.in2p3.fr:qbaghi/backgrounds.git
|
|
32
|
+
cd backgrounds
|
|
33
|
+
python3 setup.py install
|
|
34
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# backgrounds
|
|
2
|
+
|
|
3
|
+
Principal component analysis application to stochastic gravitational wave detection.
|
|
4
|
+
|
|
5
|
+
## Dependencies
|
|
6
|
+
|
|
7
|
+
Backgrounds requires LISA Constants and LISA GW Response from the LISA Simulation suite, which can be installed as
|
|
8
|
+
```
|
|
9
|
+
pip install git+https://@gitlab.in2p3.fr/lisa-simulation/constants.git@latest
|
|
10
|
+
pip install git+https://gitlab.in2p3.fr/lisa-simulation/gw-response.git@latest
|
|
11
|
+
```
|
|
12
|
+
To run the scripts in the tests folder it is recommanded to install the packages listed in the requirements:
|
|
13
|
+
```
|
|
14
|
+
pip install --no-cache-dir -r requirements.txt
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
Please clone the repository and do a manual installation:
|
|
20
|
+
```
|
|
21
|
+
git clone git@gitlab.in2p3.fr:qbaghi/backgrounds.git
|
|
22
|
+
cd backgrounds
|
|
23
|
+
python3 setup.py install
|
|
24
|
+
```
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Author: Quentin Baghi 2021 <quentin.baghi@protonmail.com>
|
|
3
|
+
"""backgrounds module."""
|
|
4
|
+
|
|
5
|
+
from .core import Response
|
|
6
|
+
from .core import StochasticBackgroundResponse, StochasticPointSourceResponse
|
|
7
|
+
from .signal import SignalPSD
|
|
8
|
+
from .signal import sgwb_psd
|
|
9
|
+
from .noise import SplineNoiseModel
|