nxs-analysis-tools 0.0.32__tar.gz → 0.0.34__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.
- {nxs-analysis-tools-0.0.32/src/nxs_analysis_tools.egg-info → nxs_analysis_tools-0.0.34}/PKG-INFO +1 -1
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/pyproject.toml +1 -1
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/_meta/__init__.py +1 -1
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools/__init__.py +2 -2
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools/chess.py +413 -363
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools/datareduction.py +989 -887
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools/fitting.py +258 -262
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools/pairdistribution.py +585 -515
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34/src/nxs_analysis_tools.egg-info}/PKG-INFO +1 -1
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/LICENSE +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/MANIFEST.in +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/README.md +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/setup.cfg +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/setup.py +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools.egg-info/SOURCES.txt +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools.egg-info/dependency_links.txt +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools.egg-info/requires.txt +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/src/nxs_analysis_tools.egg-info/top_level.txt +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/tests/test_chess.py +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/tests/test_chess_fitting.py +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/tests/test_datareduction.py +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/tests/test_fitting.py +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/tests/test_lmfit.py +0 -0
- {nxs-analysis-tools-0.0.32 → nxs_analysis_tools-0.0.34}/tests/test_pairdistribution.py +0 -0
|
@@ -4,9 +4,9 @@ Reduce and transform nexus format (.nxs) scattering data.
|
|
|
4
4
|
|
|
5
5
|
import numpy as np
|
|
6
6
|
from _meta import __author__, __copyright__, __license__, __version__
|
|
7
|
-
from .datareduction import load_data, plot_slice, reciprocal_lattice_params, Scissors, rotate_data
|
|
7
|
+
from .datareduction import load_data, load_transform, plot_slice, reciprocal_lattice_params, Scissors, rotate_data
|
|
8
8
|
from .chess import TempDependence
|
|
9
9
|
|
|
10
10
|
# What to import when running "from nxs_analysis_tools import *"
|
|
11
|
-
__all__ = ['load_data', 'plot_slice', 'Scissors', 'TempDependence',
|
|
11
|
+
__all__ = ['load_data', 'load_transform', 'plot_slice', 'Scissors', 'TempDependence',
|
|
12
12
|
'reciprocal_lattice_params', 'rotate_data']
|