nxs-analysis-tools 0.0.29__py3-none-any.whl → 0.0.31__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.
Potentially problematic release.
This version of nxs-analysis-tools might be problematic. Click here for more details.
- _meta/__init__.py +10 -10
- nxs_analysis_tools/__init__.py +12 -12
- nxs_analysis_tools/chess.py +363 -363
- nxs_analysis_tools/datareduction.py +887 -887
- nxs_analysis_tools/fitting.py +262 -262
- nxs_analysis_tools/pairdistribution.py +515 -515
- {nxs_analysis_tools-0.0.29.dist-info → nxs_analysis_tools-0.0.31.dist-info}/LICENSE +21 -21
- {nxs_analysis_tools-0.0.29.dist-info → nxs_analysis_tools-0.0.31.dist-info}/METADATA +1 -1
- nxs_analysis_tools-0.0.31.dist-info/RECORD +11 -0
- nxs_analysis_tools-0.0.29.dist-info/RECORD +0 -11
- {nxs_analysis_tools-0.0.29.dist-info → nxs_analysis_tools-0.0.31.dist-info}/WHEEL +0 -0
- {nxs_analysis_tools-0.0.29.dist-info → nxs_analysis_tools-0.0.31.dist-info}/top_level.txt +0 -0
_meta/__init__.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
'''nxs-analysis-tools package metadata.'''
|
|
2
|
-
|
|
3
|
-
# keep consistent with pyproject.toml
|
|
4
|
-
__project__ = 'nxs-analysis-tools'
|
|
5
|
-
__author__ = 'Steven J. Gomez Alvarado'
|
|
6
|
-
__email__ = 'stevenjgomez@ucsb.edu'
|
|
7
|
-
__copyright__ = f"2023, {__author__}"
|
|
8
|
-
__license__ = 'MIT'
|
|
9
|
-
__version__= '0.0.
|
|
10
|
-
__repo_url__ = 'https://github.com/stevenjgomez/nxs_analysis_tools'
|
|
1
|
+
'''nxs-analysis-tools package metadata.'''
|
|
2
|
+
|
|
3
|
+
# keep consistent with pyproject.toml
|
|
4
|
+
__project__ = 'nxs-analysis-tools'
|
|
5
|
+
__author__ = 'Steven J. Gomez Alvarado'
|
|
6
|
+
__email__ = 'stevenjgomez@ucsb.edu'
|
|
7
|
+
__copyright__ = f"2023, {__author__}"
|
|
8
|
+
__license__ = 'MIT'
|
|
9
|
+
__version__= '0.0.31'
|
|
10
|
+
__repo_url__ = 'https://github.com/stevenjgomez/nxs_analysis_tools'
|
nxs_analysis_tools/__init__.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
'''
|
|
2
|
-
Reduce and transform nexus format (.nxs) scattering data.
|
|
3
|
-
'''
|
|
4
|
-
|
|
5
|
-
import numpy as np
|
|
6
|
-
from _meta import __author__, __copyright__, __license__, __version__
|
|
7
|
-
from .datareduction import load_data, plot_slice, reciprocal_lattice_params, Scissors, rotate_data
|
|
8
|
-
from .chess import TempDependence
|
|
9
|
-
|
|
10
|
-
# What to import when running "from nxs_analysis_tools import *"
|
|
11
|
-
__all__ = ['load_data', 'plot_slice', 'Scissors', 'TempDependence',
|
|
12
|
-
'reciprocal_lattice_params', 'rotate_data']
|
|
1
|
+
'''
|
|
2
|
+
Reduce and transform nexus format (.nxs) scattering data.
|
|
3
|
+
'''
|
|
4
|
+
|
|
5
|
+
import numpy as np
|
|
6
|
+
from _meta import __author__, __copyright__, __license__, __version__
|
|
7
|
+
from .datareduction import load_data, plot_slice, reciprocal_lattice_params, Scissors, rotate_data
|
|
8
|
+
from .chess import TempDependence
|
|
9
|
+
|
|
10
|
+
# What to import when running "from nxs_analysis_tools import *"
|
|
11
|
+
__all__ = ['load_data', 'plot_slice', 'Scissors', 'TempDependence',
|
|
12
|
+
'reciprocal_lattice_params', 'rotate_data']
|