mxcubecore 1.379.0__py3-none-any.whl → 1.381.0__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 mxcubecore might be problematic. Click here for more details.
- mxcubecore/HardwareObjects/ICATLIMS.py +5 -0
- mxcubecore/HardwareObjects/abstract/AbstractSampleChanger.py +6 -14
- {mxcubecore-1.379.0.dist-info → mxcubecore-1.381.0.dist-info}/METADATA +1 -1
- {mxcubecore-1.379.0.dist-info → mxcubecore-1.381.0.dist-info}/RECORD +7 -7
- {mxcubecore-1.379.0.dist-info → mxcubecore-1.381.0.dist-info}/COPYING +0 -0
- {mxcubecore-1.379.0.dist-info → mxcubecore-1.381.0.dist-info}/COPYING.LESSER +0 -0
- {mxcubecore-1.379.0.dist-info → mxcubecore-1.381.0.dist-info}/WHEEL +0 -0
|
@@ -1112,6 +1112,11 @@ class ICATLIMS(AbstractLims):
|
|
|
1112
1112
|
collection_parameters.get("blSampleId")
|
|
1113
1113
|
)
|
|
1114
1114
|
|
|
1115
|
+
try:
|
|
1116
|
+
metadata["lims"] = HWR.beamline.lims.get_active_lims()
|
|
1117
|
+
except Exception:
|
|
1118
|
+
logger.exception("Failed to read get_active_lims.")
|
|
1119
|
+
|
|
1115
1120
|
try:
|
|
1116
1121
|
metadata["InstrumentSource_current"] = (
|
|
1117
1122
|
HWR.beamline.machine_info.get_value().get("current")
|
|
@@ -816,22 +816,14 @@ class SampleChanger(Container, HardwareObject):
|
|
|
816
816
|
self._trigger_loaded_sample_changed_event(None)
|
|
817
817
|
|
|
818
818
|
def _set_loaded_sample(self, sample):
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
if smp.is_loaded():
|
|
823
|
-
previous_loaded = smp
|
|
824
|
-
break
|
|
825
|
-
|
|
826
|
-
for smp in self.get_sample_list():
|
|
827
|
-
if smp != sample:
|
|
828
|
-
smp._set_loaded(False)
|
|
819
|
+
for s in self.get_sample_list():
|
|
820
|
+
if s != sample:
|
|
821
|
+
s._set_loaded(False)
|
|
829
822
|
else:
|
|
830
|
-
if self.get_loaded_sample()
|
|
831
|
-
|
|
823
|
+
if self.get_loaded_sample() != s:
|
|
824
|
+
s._set_loaded(True)
|
|
832
825
|
|
|
833
|
-
|
|
834
|
-
self._trigger_loaded_sample_changed_event(sample)
|
|
826
|
+
self._trigger_loaded_sample_changed_event(sample)
|
|
835
827
|
|
|
836
828
|
def _set_selected_sample(self, sample):
|
|
837
829
|
cur = self.get_selected_sample()
|
|
@@ -198,7 +198,7 @@ mxcubecore/HardwareObjects/GrobMotor.py,sha256=l5A9Us_ceLXlhEF6RNwyXQsI56fJiobWh
|
|
|
198
198
|
mxcubecore/HardwareObjects/GrobSampleChanger.py,sha256=LMetcL45fWrwP4C8rtENrEDNydelLpJ77SD1JC5C3go,8113
|
|
199
199
|
mxcubecore/HardwareObjects/Harvester.py,sha256=0TYUXmz-Pmfd7Dhz7ToUGHzJRuJmnga8-4BK4B0KGQA,26524
|
|
200
200
|
mxcubecore/HardwareObjects/HarvesterMaintenance.py,sha256=8s4yHDEFG-C1WYyW_RlwrFPSpc8o5hGi14aQuFQFrHs,9405
|
|
201
|
-
mxcubecore/HardwareObjects/ICATLIMS.py,sha256=
|
|
201
|
+
mxcubecore/HardwareObjects/ICATLIMS.py,sha256=IUaH_ddqxELDGRsWmw9o2y4vEvhqRBMamvTxDbbs6l8,51290
|
|
202
202
|
mxcubecore/HardwareObjects/ISARAMaint.py,sha256=I8LHXK6wCfzixsxWmmcqWlrdaL3AOX91XmVeAwT7GPk,8959
|
|
203
203
|
mxcubecore/HardwareObjects/LNLS/EPICSActuator.py,sha256=3dDj6aXyTz03m8osdA6udq_a4bch-KNcUMrXSNvbG5Q,2587
|
|
204
204
|
mxcubecore/HardwareObjects/LNLS/EPICSMotor.py,sha256=lRTc1t32rJKNTIcnKCECrqo2m9BhlYvLq9NWg4Y0w0Q,3576
|
|
@@ -361,7 +361,7 @@ mxcubecore/HardwareObjects/abstract/AbstractNState.py,sha256=JZvD_ZpQu5U8ycaWFii
|
|
|
361
361
|
mxcubecore/HardwareObjects/abstract/AbstractOnlineProcessing.py,sha256=vs_fJsDDLwivu1kYHA7RKJXj1aTH5V6G2tEy7MYGw4c,34104
|
|
362
362
|
mxcubecore/HardwareObjects/abstract/AbstractProcedure.py,sha256=kW2SzN5kYYCeOS2IzpzQ9VAjYAoRU7ZtyDxqrOb8Pbg,7849
|
|
363
363
|
mxcubecore/HardwareObjects/abstract/AbstractResolution.py,sha256=eLoymf-i637FbwfZwOtTmKOeSqCQjE2OnpSMdl8oIEg,8524
|
|
364
|
-
mxcubecore/HardwareObjects/abstract/AbstractSampleChanger.py,sha256=
|
|
364
|
+
mxcubecore/HardwareObjects/abstract/AbstractSampleChanger.py,sha256=h9j7XF8KrRtVQpthF_424fsEIR2LqsEZLNPrLaQB4TI,26718
|
|
365
365
|
mxcubecore/HardwareObjects/abstract/AbstractSampleView.py,sha256=-E9cTMW-gw2vY91OeL2V5wg1icduLeYFOX50vo2_NEA,7774
|
|
366
366
|
mxcubecore/HardwareObjects/abstract/AbstractShutter.py,sha256=OeHSr3N9x-a9QmGdQEu3usN23TYspJGDnZjAkShqk3w,2798
|
|
367
367
|
mxcubecore/HardwareObjects/abstract/AbstractSlits.py,sha256=1fymQFlxJ9naOVT9A8THszEkHm7VxQSGJJWPQV0v3Hs,3839
|
|
@@ -469,8 +469,8 @@ mxcubecore/utils/conversion.py,sha256=G1bk2Mi2ZwGbZa5pEeiFaKWxhSVXVGqu1L9_SioyUO
|
|
|
469
469
|
mxcubecore/utils/qt_import.py,sha256=0lPmqok_oYQZ059kJCq7RWdg490T8YKyRvoZGyWDy4M,14486
|
|
470
470
|
mxcubecore/utils/tango.py,sha256=vwEVrIrWKEFaeaJUz3xbaC7XWHY8ZeJ-pfcSrTfZPIE,2114
|
|
471
471
|
mxcubecore/utils/units.py,sha256=Gh7ovTUN00XBMUoyDG5W7akCx1pROL-M6pK2z1ouemg,1361
|
|
472
|
-
mxcubecore-1.
|
|
473
|
-
mxcubecore-1.
|
|
474
|
-
mxcubecore-1.
|
|
475
|
-
mxcubecore-1.
|
|
476
|
-
mxcubecore-1.
|
|
472
|
+
mxcubecore-1.381.0.dist-info/COPYING,sha256=u-Mc8zCecwyo4YoP8UulmzCiZZ_MmCLROd_NBtOcRj0,35148
|
|
473
|
+
mxcubecore-1.381.0.dist-info/COPYING.LESSER,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
474
|
+
mxcubecore-1.381.0.dist-info/METADATA,sha256=UYzNglby5VrZiVEIAIuLHm2H7yZFTsmWRTNc8Qcqvaw,4259
|
|
475
|
+
mxcubecore-1.381.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
476
|
+
mxcubecore-1.381.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|