nxs-analysis-tools 0.0.35__py3-none-any.whl → 0.0.36__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 +1 -1
- nxs_analysis_tools/__init__.py +2 -1
- nxs_analysis_tools/chess.py +274 -70
- nxs_analysis_tools/datareduction.py +247 -122
- nxs_analysis_tools/fitting.py +2 -1
- nxs_analysis_tools/pairdistribution.py +1082 -126
- {nxs_analysis_tools-0.0.35.dist-info → nxs_analysis_tools-0.0.36.dist-info}/METADATA +21 -21
- nxs_analysis_tools-0.0.36.dist-info/RECORD +11 -0
- {nxs_analysis_tools-0.0.35.dist-info → nxs_analysis_tools-0.0.36.dist-info}/WHEEL +1 -1
- nxs_analysis_tools-0.0.35.dist-info/RECORD +0 -11
- {nxs_analysis_tools-0.0.35.dist-info → nxs_analysis_tools-0.0.36.dist-info}/LICENSE +0 -0
- {nxs_analysis_tools-0.0.35.dist-info → nxs_analysis_tools-0.0.36.dist-info}/top_level.txt +0 -0
nxs_analysis_tools/fitting.py
CHANGED
|
@@ -111,7 +111,8 @@ class LinecutModel:
|
|
|
111
111
|
Parameters
|
|
112
112
|
----------
|
|
113
113
|
model_components : Model or list of Models
|
|
114
|
-
The model component(s) to be used for fitting,
|
|
114
|
+
The model component(s) to be used for fitting,
|
|
115
|
+
which will be combined into a CompositeModel.
|
|
115
116
|
"""
|
|
116
117
|
|
|
117
118
|
# If the model only has one component, then use it as the model
|