ACID-code 0.0.0__py3-none-any.whl → 1.5.0a2__py3-none-any.whl
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.
- ACID_code/__init__.py +12 -1
- ACID_code/acid.py +1244 -0
- ACID_code/data.py +932 -0
- ACID_code/load.py +107 -0
- ACID_code/lsd.py +696 -0
- ACID_code/mcmc.py +287 -0
- ACID_code/profiles.py +326 -0
- ACID_code/result.py +877 -0
- ACID_code/utils.py +480 -0
- acid_code-1.5.0a2.dist-info/METADATA +54 -0
- acid_code-1.5.0a2.dist-info/RECORD +14 -0
- {ACID_code-0.0.0.dist-info → acid_code-1.5.0a2.dist-info}/WHEEL +1 -1
- ACID/ACID.py +0 -839
- ACID/LSD_func_faster.py +0 -1054
- ACID/__init__.py +0 -1
- ACID/easy_test.py +0 -44
- ACID_code/ACID.py +0 -839
- ACID_code/LSD_func_faster.py +0 -1054
- ACID_code/easy_test.py +0 -44
- ACID_code-0.0.0.dist-info/METADATA +0 -12
- ACID_code-0.0.0.dist-info/RECORD +0 -13
- {ACID_code-0.0.0.dist-info → acid_code-1.5.0a2.dist-info/licenses}/LICENSE +0 -0
- {ACID_code-0.0.0.dist-info → acid_code-1.5.0a2.dist-info}/top_level.txt +0 -0
ACID_code/__init__.py
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
from .acid import ACID, ACID_HARPS, Acid
|
|
2
|
+
from .lsd import LSD
|
|
3
|
+
from .result import Result
|
|
4
|
+
from . import utils
|
|
5
|
+
from .profiles import Profiles
|
|
6
|
+
from .mcmc import MCMC
|
|
7
|
+
from .utils import calc_deltav # for legacy reasons
|
|
8
|
+
from .data import Data, DataList, Config, LineList, MaskingLines
|
|
9
|
+
|
|
10
|
+
__all__ = ['ACID', 'ACID_HARPS', 'Acid', 'LSD', 'MCMC', 'Result', 'Profiles',
|
|
11
|
+
'utils', 'calc_deltav', 'Data', 'Config', 'LineList', 'MaskingLines',
|
|
12
|
+
'DataList']
|