nxs-analysis-tools 0.0.28__py3-none-any.whl → 0.0.29__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 CHANGED
@@ -6,5 +6,5 @@ __author__ = 'Steven J. Gomez Alvarado'
6
6
  __email__ = 'stevenjgomez@ucsb.edu'
7
7
  __copyright__ = f"2023, {__author__}"
8
8
  __license__ = 'MIT'
9
- __version__= '0.0.28'
9
+ __version__= '0.0.29'
10
10
  __repo_url__ = 'https://github.com/stevenjgomez/nxs_analysis_tools'
@@ -120,7 +120,11 @@ class LinecutModel:
120
120
  # Else, combine the components into a composite model and use that as the
121
121
  else:
122
122
  self.model_components = model_components
123
- self.model = CompositeModel(*model_components, operator.add)
123
+ self.model = model_components[0]
124
+
125
+ # Combine remaining components into the composite model
126
+ for component in model_components[1:]:
127
+ self.model = CompositeModel(self.model, component, operator.add)
124
128
 
125
129
  def set_param_hint(self, *args, **kwargs):
126
130
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nxs-analysis-tools
3
- Version: 0.0.28
3
+ Version: 0.0.29
4
4
  Summary: Reduce and transform nexus format (.nxs) scattering data.
5
5
  Author-email: "Steven J. Gomez Alvarado" <stevenjgomez@ucsb.edu>
6
6
  License: MIT License
@@ -0,0 +1,11 @@
1
+ _meta/__init__.py,sha256=jtcXSNzQFbWDoq-6ootCIfg8pBynwgynZP9FHNbtaVc,351
2
+ nxs_analysis_tools/__init__.py,sha256=HAdFMaImTfd2nCP1XzeSwreAv-wK6CeJbTn92aDQ-Bc,490
3
+ nxs_analysis_tools/chess.py,sha256=tNWc5xiwEjdtVPq0FFm2dCP2xvtkuv4IkMLur7Qeqjs,14079
4
+ nxs_analysis_tools/datareduction.py,sha256=Gvx9QyTyhqvu56PgiA9k7PzeGYtq71lTaofNESbg7xA,32616
5
+ nxs_analysis_tools/fitting.py,sha256=FBAlswyh-tASOVUx1HQ4F50NbQcDasc497PBkZ6AStU,9065
6
+ nxs_analysis_tools/pairdistribution.py,sha256=-_ULgC1XA9UKposzk51-64Y3cPWqdnBNAK7sdVTGHXM,20972
7
+ nxs_analysis_tools-0.0.29.dist-info/LICENSE,sha256=tdnoYVH1-ogW_5-gGs9bK-IkCamH1ATJqrdL37kWTHk,1102
8
+ nxs_analysis_tools-0.0.29.dist-info/METADATA,sha256=khCozYcLg4RkY2KWFx_rr8dR46lAx3D37gdAdNUOTGI,3837
9
+ nxs_analysis_tools-0.0.29.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
10
+ nxs_analysis_tools-0.0.29.dist-info/top_level.txt,sha256=8U000GNPzo6T6pOMjRdgOSO5heMzLMGjkxa1CDtyMHM,25
11
+ nxs_analysis_tools-0.0.29.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- _meta/__init__.py,sha256=DLByNE6kFgVyGa5nMLQDHCMDsPiHXYCq-IE4ylqppoo,351
2
- nxs_analysis_tools/__init__.py,sha256=HAdFMaImTfd2nCP1XzeSwreAv-wK6CeJbTn92aDQ-Bc,490
3
- nxs_analysis_tools/chess.py,sha256=tNWc5xiwEjdtVPq0FFm2dCP2xvtkuv4IkMLur7Qeqjs,14079
4
- nxs_analysis_tools/datareduction.py,sha256=Gvx9QyTyhqvu56PgiA9k7PzeGYtq71lTaofNESbg7xA,32616
5
- nxs_analysis_tools/fitting.py,sha256=f0wUn2uLwT6a2Yg8QgzzSdR0zgqjjeNMj-H_HJh7D6o,8888
6
- nxs_analysis_tools/pairdistribution.py,sha256=-_ULgC1XA9UKposzk51-64Y3cPWqdnBNAK7sdVTGHXM,20972
7
- nxs_analysis_tools-0.0.28.dist-info/LICENSE,sha256=tdnoYVH1-ogW_5-gGs9bK-IkCamH1ATJqrdL37kWTHk,1102
8
- nxs_analysis_tools-0.0.28.dist-info/METADATA,sha256=BaIPL7hH0X7uUwFg3BUjrzh0UDVSD_HpTRuyk5xmtAY,3837
9
- nxs_analysis_tools-0.0.28.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
10
- nxs_analysis_tools-0.0.28.dist-info/top_level.txt,sha256=8U000GNPzo6T6pOMjRdgOSO5heMzLMGjkxa1CDtyMHM,25
11
- nxs_analysis_tools-0.0.28.dist-info/RECORD,,