mxcubecore 1.334.0__py3-none-any.whl → 1.336.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.
- mxcubecore/BaseHardwareObjects.py +1 -1
- mxcubecore/HardwareObjects/GenericDiffractometer.py +19 -1
- mxcubecore/HardwareObjects/Gphl/CollectEmulator.py +3 -12
- mxcubecore/HardwareObjects/Gphl/GphlWorkflowConnection.py +2 -0
- mxcubecore/HardwareObjects/QtGraphicsManager.py +1 -0
- mxcubecore/HardwareObjects/abstract/AbstractCollect.py +2 -2
- mxcubecore/HardwareObjects/mockup/BeamMockup.py +3 -0
- mxcubecore/HardwareObjects/mockup/DetectorMockup.py +1 -1
- mxcubecore/HardwareObjects/mockup/DiffractometerMockup.py +0 -2
- mxcubecore/HardwareObjects/mockup/FluxMockup.py +1 -6
- mxcubecore/model/queue_model_objects.py +9 -4
- {mxcubecore-1.334.0.dist-info → mxcubecore-1.336.0.dist-info}/METADATA +1 -1
- {mxcubecore-1.334.0.dist-info → mxcubecore-1.336.0.dist-info}/RECORD +16 -16
- {mxcubecore-1.334.0.dist-info → mxcubecore-1.336.0.dist-info}/COPYING +0 -0
- {mxcubecore-1.334.0.dist-info → mxcubecore-1.336.0.dist-info}/COPYING.LESSER +0 -0
- {mxcubecore-1.334.0.dist-info → mxcubecore-1.336.0.dist-info}/WHEEL +0 -0
|
@@ -881,7 +881,7 @@ class HardwareObjectMixin(CommandContainer):
|
|
|
881
881
|
def re_emit_values(self) -> None:
|
|
882
882
|
"""Update values for all internal attributes
|
|
883
883
|
|
|
884
|
-
Should be expanded in
|
|
884
|
+
Should be expanded in subclasses with more updatable attributes
|
|
885
885
|
(e.g. value, limits)
|
|
886
886
|
"""
|
|
887
887
|
self.update_state()
|
|
@@ -527,7 +527,7 @@ class GenericDiffractometer(HardwareObject):
|
|
|
527
527
|
return HardwareObject.__getattr__(self, attr)
|
|
528
528
|
|
|
529
529
|
# Contained Objects
|
|
530
|
-
# NBNB
|
|
530
|
+
# NBNB Temporary hack - should be cleaned up together with configuration
|
|
531
531
|
@property
|
|
532
532
|
def omega(self):
|
|
533
533
|
"""omega motor object
|
|
@@ -537,6 +537,24 @@ class GenericDiffractometer(HardwareObject):
|
|
|
537
537
|
"""
|
|
538
538
|
return self.motor_hwobj_dict.get("phi")
|
|
539
539
|
|
|
540
|
+
@property
|
|
541
|
+
def kappa(self):
|
|
542
|
+
"""kappa motor object
|
|
543
|
+
|
|
544
|
+
Returns:
|
|
545
|
+
AbstractActuator
|
|
546
|
+
"""
|
|
547
|
+
return self.get_object_by_role("kappa")
|
|
548
|
+
|
|
549
|
+
@property
|
|
550
|
+
def kappa_phi(self):
|
|
551
|
+
"""kappa motor object
|
|
552
|
+
|
|
553
|
+
Returns:
|
|
554
|
+
AbstractActuator
|
|
555
|
+
"""
|
|
556
|
+
return self.get_object_by_role("kappa_phi")
|
|
557
|
+
|
|
540
558
|
@property
|
|
541
559
|
def centring_x(self):
|
|
542
560
|
"""centring_x motor object
|
|
@@ -45,15 +45,6 @@ class CollectEmulator(CollectMockup):
|
|
|
45
45
|
|
|
46
46
|
self._counter = 1
|
|
47
47
|
|
|
48
|
-
# def init(self):
|
|
49
|
-
# CollectMockup.init(self)
|
|
50
|
-
# # NBNB you get an error if you use 'HWR.beamline.session'
|
|
51
|
-
# # session_hwobj = self.get_object_by_role("session")
|
|
52
|
-
# session = HWR.beamline.session
|
|
53
|
-
# if session and self.has_object("override_data_directories"):
|
|
54
|
-
# dirs = self["override_data_directories"].get_properties()
|
|
55
|
-
# session.set_base_data_directories(**dirs)
|
|
56
|
-
|
|
57
48
|
def _get_simcal_input(self, data_collect_parameters, crystal_data):
|
|
58
49
|
"""Get ordered dict with simcal input from available data"""
|
|
59
50
|
|
|
@@ -125,7 +116,7 @@ class CollectEmulator(CollectMockup):
|
|
|
125
116
|
|
|
126
117
|
# Add/overwrite parameters from emulator configuration
|
|
127
118
|
conv = conversion.convert_string_value
|
|
128
|
-
for key, val in self
|
|
119
|
+
for key, val in self.config.simcal_parameters.items():
|
|
129
120
|
setup_data[key] = conv(val)
|
|
130
121
|
|
|
131
122
|
setup_data["n_vertices"] = 0
|
|
@@ -266,7 +257,7 @@ class CollectEmulator(CollectMockup):
|
|
|
266
257
|
if GPHL_CCP4_PATH:
|
|
267
258
|
envs["GPHL_CCP4_PATH"] = GPHL_CCP4_PATH
|
|
268
259
|
text_type = conversion.text_type
|
|
269
|
-
for tag, val in self
|
|
260
|
+
for tag, val in self.config.environment_variables.items():
|
|
270
261
|
envs[text_type(tag)] = text_type(val)
|
|
271
262
|
|
|
272
263
|
# get crystal data
|
|
@@ -303,7 +294,7 @@ class CollectEmulator(CollectMockup):
|
|
|
303
294
|
hklfile,
|
|
304
295
|
]
|
|
305
296
|
|
|
306
|
-
for tag, val in self
|
|
297
|
+
for tag, val in self.config.simcal_options.items():
|
|
307
298
|
command_list.extend(conversion.command_option(tag, val, prefix="--"))
|
|
308
299
|
logging.getLogger("HWR").info("Executing command: %s", " ".join(command_list))
|
|
309
300
|
logging.getLogger("HWR").info("Executing environment: %s", sorted(envs.items()))
|
|
@@ -1031,6 +1031,8 @@ class GphlWorkflowConnection(HardwareObject):
|
|
|
1031
1031
|
for item in collectionDone.scanIdMap.items():
|
|
1032
1032
|
scanIdMap[jvm.java.util.UUID.fromString(conversion.text_type(item[0]))] = (
|
|
1033
1033
|
jvm.java.util.UUID.fromString(conversion.text_type(item[1]))
|
|
1034
|
+
if item[1]
|
|
1035
|
+
else None
|
|
1034
1036
|
)
|
|
1035
1037
|
return jvm.astra.messagebus.messages.information.CollectionDoneImpl(
|
|
1036
1038
|
proposalId,
|
|
@@ -145,6 +145,7 @@ class QtGraphicsManager(AbstractSampleView):
|
|
|
145
145
|
self.graphics_move_down_item = None
|
|
146
146
|
self.graphics_move_left_item = None
|
|
147
147
|
self.graphics_magnification_item = None
|
|
148
|
+
self.camera_hwobj = None
|
|
148
149
|
|
|
149
150
|
def init(self):
|
|
150
151
|
"""Main init function. Initiates all graphics items, hwobjs and
|
|
@@ -103,9 +103,9 @@ class AbstractCollect(HardwareObject, object):
|
|
|
103
103
|
|
|
104
104
|
undulators = []
|
|
105
105
|
try:
|
|
106
|
-
for undulator in self
|
|
106
|
+
for undulator in self.config.undulators:
|
|
107
107
|
undulators.append(undulator)
|
|
108
|
-
except
|
|
108
|
+
except Exception:
|
|
109
109
|
pass
|
|
110
110
|
|
|
111
111
|
beam_div_hor, beam_div_ver = HWR.beamline.beam.get_beam_divergence()
|
|
@@ -91,6 +91,9 @@ class BeamMockup(AbstractBeam):
|
|
|
91
91
|
if _check_beam:
|
|
92
92
|
self._check_beam = literal_eval(_check_beam)
|
|
93
93
|
|
|
94
|
+
# Needed to trigger first value setting
|
|
95
|
+
self.get_value()
|
|
96
|
+
|
|
94
97
|
self.re_emit_values()
|
|
95
98
|
self.emit("beamPosChanged", (self._beam_position_on_screen,))
|
|
96
99
|
|
|
@@ -35,7 +35,7 @@ class DetectorMockup(AbstractDetector):
|
|
|
35
35
|
)
|
|
36
36
|
self._roi_mode = 0
|
|
37
37
|
self._exposure_time_limits = eval(
|
|
38
|
-
self.get_property("exposure_time_limits", "[0.
|
|
38
|
+
self.get_property("exposure_time_limits", "[0.02, 60000]")
|
|
39
39
|
)
|
|
40
40
|
self.update_state(self.STATES.READY)
|
|
41
41
|
self.distance_motor_hwobj = self.get_object_by_role("detector_distance")
|
|
@@ -45,15 +45,10 @@ class FluxMockup(AbstractFlux):
|
|
|
45
45
|
def init(self):
|
|
46
46
|
super().init()
|
|
47
47
|
self.current_flux_dict["flux"] = self.default_value
|
|
48
|
-
gevent.spawn(self._update_flux)
|
|
49
|
-
|
|
50
|
-
def _update_flux(self):
|
|
51
|
-
while True:
|
|
52
|
-
self.measure_flux()
|
|
53
|
-
gevent.sleep(3)
|
|
54
48
|
|
|
55
49
|
def get_value(self):
|
|
56
50
|
"""Get flux at current transmission in units of photons/s"""
|
|
51
|
+
self.measure_flux()
|
|
57
52
|
return self.current_flux_dict["flux"]
|
|
58
53
|
|
|
59
54
|
def measure_flux(self) -> None:
|
|
@@ -1715,7 +1715,7 @@ class AcquisitionParameters(object):
|
|
|
1715
1715
|
self.in_queue = False
|
|
1716
1716
|
self.in_interleave = None
|
|
1717
1717
|
self.sub_wedge_size = 10
|
|
1718
|
-
|
|
1718
|
+
self.disable_processing = False
|
|
1719
1719
|
self.num_triggers = int()
|
|
1720
1720
|
self.num_images_per_trigger = int()
|
|
1721
1721
|
self.hare_num = 1
|
|
@@ -1765,6 +1765,7 @@ class AcquisitionParameters(object):
|
|
|
1765
1765
|
"mesh_center": self.mesh_center,
|
|
1766
1766
|
"cell_spacing": self.cell_spacing,
|
|
1767
1767
|
"sub_wedge_size": self.sub_wedge_size,
|
|
1768
|
+
"disable_processing": self.disable_processing,
|
|
1768
1769
|
}
|
|
1769
1770
|
|
|
1770
1771
|
def copy(self):
|
|
@@ -2054,8 +2055,6 @@ class GphlWorkflow(TaskNode):
|
|
|
2054
2055
|
"initial_strategy",
|
|
2055
2056
|
"strategy_variant",
|
|
2056
2057
|
"strategy_options",
|
|
2057
|
-
"acquisition_dose",
|
|
2058
|
-
"characterisation_dose",
|
|
2059
2058
|
):
|
|
2060
2059
|
summary[tag] = getattr(self, tag)
|
|
2061
2060
|
summary["wavelengths"] = tuple(x.wavelength for x in self.wavelengths)
|
|
@@ -2063,7 +2062,13 @@ class GphlWorkflow(TaskNode):
|
|
|
2063
2062
|
summary["orgxy"] = self.detector_setting.orgxy
|
|
2064
2063
|
summary["strategy_variant"] = self.strategy_options.get("variant", "not set")
|
|
2065
2064
|
summary["orientation_count"] = len(self.goniostat_translations)
|
|
2066
|
-
summary["
|
|
2065
|
+
summary["characterisation_dose"] = self.characterisation_dose
|
|
2066
|
+
summary["dose_per_repetition"] = self.acquisition_dose
|
|
2067
|
+
|
|
2068
|
+
summary["total_radiation_dose"] = (
|
|
2069
|
+
summary["dose_per_repetition"] * summary["repetition_count"]
|
|
2070
|
+
+ summary["characterisation_dose"]
|
|
2071
|
+
)
|
|
2067
2072
|
summary["total_dose_budget"] = self.recommended_dose_budget()
|
|
2068
2073
|
return summary
|
|
2069
2074
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
mxcubecore/BaseHardwareObjects.py,sha256=
|
|
1
|
+
mxcubecore/BaseHardwareObjects.py,sha256=LpHUEo6B5SAv1AfuPg6Ej0bNppsZxng8t9LjdwjeP5g,41287
|
|
2
2
|
mxcubecore/Command/Epics.py,sha256=b8my4qI49gTYPRu5kSmXge1KH71KnqJl0aYZ2d7SfM0,7781
|
|
3
3
|
mxcubecore/Command/Exporter.py,sha256=VL7EVAvoz01xAWQYK2xMIJL9EBU6qWwk4K7jgRqlifo,8104
|
|
4
4
|
mxcubecore/Command/Mockup.py,sha256=Q-kIR30mNnYSyy_f70PFx-ZVVTcPG1NRVqrrv3VCCcs,2075
|
|
@@ -181,12 +181,12 @@ mxcubecore/HardwareObjects/ExporterMotor.py,sha256=7XjyUcymJjJM7YVyteBxjLutgfSuT
|
|
|
181
181
|
mxcubecore/HardwareObjects/ExporterNState.py,sha256=BH9jkRoud4bHLiflj_1mgDL0Y-LmMjesfTtTGr7EzJ0,6129
|
|
182
182
|
mxcubecore/HardwareObjects/FlexHCD.py,sha256=NqfBabwNH466WmHZH--UIFZf7XEZkN7QEjO6iXsLq1g,23394
|
|
183
183
|
mxcubecore/HardwareObjects/FlexHCDMaintenance.py,sha256=0fPa-gdp_BNYwz2RawpS-2L99zsuabg8Oc5R8RIRGA8,5008
|
|
184
|
-
mxcubecore/HardwareObjects/GenericDiffractometer.py,sha256=
|
|
185
|
-
mxcubecore/HardwareObjects/Gphl/CollectEmulator.py,sha256=
|
|
184
|
+
mxcubecore/HardwareObjects/GenericDiffractometer.py,sha256=qiSbk5nlxqzkSCdrtwI2NkRMnhPf1LNBGj6zr4rOBMk,49489
|
|
185
|
+
mxcubecore/HardwareObjects/Gphl/CollectEmulator.py,sha256=iiH6EblDwEMdxl44BswHJEwK-6qjsG3tXfdq9kO2j74,13015
|
|
186
186
|
mxcubecore/HardwareObjects/Gphl/GphlMessages.py,sha256=3WSBmUGLka4gilfwpqXyc4SJMlOt9y2sRNrOiE0-DaM,35759
|
|
187
187
|
mxcubecore/HardwareObjects/Gphl/GphlQueueEntry.py,sha256=Rwu6YL8U4knibWI9yOXBoUVuayL6O0rHQWQuEP2Hu_g,2309
|
|
188
188
|
mxcubecore/HardwareObjects/Gphl/GphlWorkflow.py,sha256=vlNhXkP2Ob-bvOuRY5rYVTSgZ8ZULrSQYYhtSS9V4fA,132177
|
|
189
|
-
mxcubecore/HardwareObjects/Gphl/GphlWorkflowConnection.py,sha256=
|
|
189
|
+
mxcubecore/HardwareObjects/Gphl/GphlWorkflowConnection.py,sha256=SHBbGDJ0rIRXwsiGWF94AUXNL8BdsIT8-zHW0NoA0lc,50466
|
|
190
190
|
mxcubecore/HardwareObjects/Gphl/Transcal2MiniKappa.py,sha256=Dzf05WSRC5vtOOluZ69f5xZrr6BmT7ITu-OfrKMqemc,9777
|
|
191
191
|
mxcubecore/HardwareObjects/Gphl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
192
192
|
mxcubecore/HardwareObjects/Gphl/run_mxcube_test.csh,sha256=IvrrFiuRS7c6kYD_FflVc0WINr7oOCBEryAOtMk5zqQ,1233
|
|
@@ -259,7 +259,7 @@ mxcubecore/HardwareObjects/ProposalTypeISPyBLims.py,sha256=V55sKKQVyTTBJ0HMsW_Gk
|
|
|
259
259
|
mxcubecore/HardwareObjects/PyISPyBClient.py,sha256=K9IgwI7xBth_L0SZaZBheW6hbNCRxBJN2r2FR53b2zA,12928
|
|
260
260
|
mxcubecore/HardwareObjects/QtAxisCamera.py,sha256=mf5m-t3CoP3eHjjiQu7U0SGt7JiBzcaqo8-Gur1eipY,3159
|
|
261
261
|
mxcubecore/HardwareObjects/QtGraphicsLib.py,sha256=9VjQVAhlxBFMoYow7xgheF_BqA9X8HJkPQmreThaq80,95117
|
|
262
|
-
mxcubecore/HardwareObjects/QtGraphicsManager.py,sha256=
|
|
262
|
+
mxcubecore/HardwareObjects/QtGraphicsManager.py,sha256=Ux2-JBYFLjcteintghwX1jfTSZ9vW0WS0MmTXdH7t-k,87690
|
|
263
263
|
mxcubecore/HardwareObjects/QtInstanceServer.py,sha256=64cIL06Gzmb_OiJyzkHK9KOpKSf2O0KfaxhZeDd9HLU,45640
|
|
264
264
|
mxcubecore/HardwareObjects/QtLimaVideo.py,sha256=3gJVH9n_IXlrnRQWEQIOz9JE4iL14yfsIEcQ0hzf9XI,4574
|
|
265
265
|
mxcubecore/HardwareObjects/QtTangoLimaVideo.py,sha256=I0lM08hUAjbU_ZElnF6uIx1hLMw7IWiqukzQt4umYg8,4489
|
|
@@ -344,7 +344,7 @@ mxcubecore/HardwareObjects/abstract/AbstractAperture.py,sha256=bPaiCnFzjgjIE6EDh
|
|
|
344
344
|
mxcubecore/HardwareObjects/abstract/AbstractAuthenticator.py,sha256=F5ONnre9GEcg65hTiEYpTcj0frGojP1QrC2P8rmzcjU,1575
|
|
345
345
|
mxcubecore/HardwareObjects/abstract/AbstractBeam.py,sha256=Fvz5K3ov0Glsw8bO2oXiYbkFMK9L8CX4gldJg73lkr0,10389
|
|
346
346
|
mxcubecore/HardwareObjects/abstract/AbstractCharacterisation.py,sha256=knGIC9GVSY_mJfcpMpU9qP8OfaIngasGEc8PIVFsr_4,4990
|
|
347
|
-
mxcubecore/HardwareObjects/abstract/AbstractCollect.py,sha256=
|
|
347
|
+
mxcubecore/HardwareObjects/abstract/AbstractCollect.py,sha256=L9xyT1IgtiRCIR303Nw9fe_TN7azKcLKMGtvCN7de_0,33360
|
|
348
348
|
mxcubecore/HardwareObjects/abstract/AbstractDetector.py,sha256=p3pblv8Qu6_SASiz7fi6H8kzcFERuaJwhf--eb1hy_c,11511
|
|
349
349
|
mxcubecore/HardwareObjects/abstract/AbstractEnergy.py,sha256=zG6tICqBdWcEMz8gGh7DFvP6CHz5xNlaRdcG4Y8tFps,4553
|
|
350
350
|
mxcubecore/HardwareObjects/abstract/AbstractEnergyScan.py,sha256=OnUXHBNm5kt7Lud0UmReZzs9Jv4d1cCJTlB4JRlvBOc,6066
|
|
@@ -380,20 +380,20 @@ mxcubecore/HardwareObjects/edna_test_data.py,sha256=W7Uqm2v5sUWn-pY-nKDxEctV4qjT
|
|
|
380
380
|
mxcubecore/HardwareObjects/mockup/ActuatorMockup.py,sha256=-aUtpJCImnbFJrl0AHjM13WQQH02LTPYOLHoHBSukIw,4050
|
|
381
381
|
mxcubecore/HardwareObjects/mockup/ApertureMockup.py,sha256=8tonVXyivfTGKp18cCzJs8o4WspHCA17SNjLAfXT9cI,4167
|
|
382
382
|
mxcubecore/HardwareObjects/mockup/BeamDefinerMockup.py,sha256=E6ATeySA9IDseTBvmvTr6v6GBUiJqEsanQX2saXNtn0,4174
|
|
383
|
-
mxcubecore/HardwareObjects/mockup/BeamMockup.py,sha256=
|
|
383
|
+
mxcubecore/HardwareObjects/mockup/BeamMockup.py,sha256=qIYMSn64CfYe5JWQ2J6PDWTX10F6VK6fxJwUaEyBz64,11582
|
|
384
384
|
mxcubecore/HardwareObjects/mockup/BeamlineActionsMockup.py,sha256=UX2LqTiRZ3mIv3AVSLLVsZHalcAP_Ewx_lz7Da6H4Kg,1774
|
|
385
385
|
mxcubecore/HardwareObjects/mockup/BeamlineTestMockup.py,sha256=ZNqpoE3spG5ObC6PuSY9_mlt2DvEw5U3cQWsCFIDB6Q,11464
|
|
386
386
|
mxcubecore/HardwareObjects/mockup/BeamstopMockup.py,sha256=ylpXcHv84Xh9MkT-koOMO0V5Agz7m8OXVSd3itDkbZ8,1956
|
|
387
387
|
mxcubecore/HardwareObjects/mockup/CatsMaintMockup.py,sha256=JXjYX_V-wL_ghnawFhm1odUv3FFpbdIN8LB1GZ6w6n0,12057
|
|
388
388
|
mxcubecore/HardwareObjects/mockup/CollectMockup.py,sha256=nj_QyR_SlUDH705DENyFnkEHxl2VVZYkvnytnhREBBk,7344
|
|
389
|
-
mxcubecore/HardwareObjects/mockup/DetectorMockup.py,sha256=
|
|
390
|
-
mxcubecore/HardwareObjects/mockup/DiffractometerMockup.py,sha256=
|
|
389
|
+
mxcubecore/HardwareObjects/mockup/DetectorMockup.py,sha256=cJgQGhd6R5FEiWcnjcb7MA9nSBlBx66cwLjVeb1ai34,1960
|
|
390
|
+
mxcubecore/HardwareObjects/mockup/DiffractometerMockup.py,sha256=fAIpIJW8g5wyVuLn4QQo5sVBl07CmKn-yScdHCNXppI,12299
|
|
391
391
|
mxcubecore/HardwareObjects/mockup/DoorInterlockMockup.py,sha256=Ug8oiP3ly70fhnrvwieStAhZr0oXOLMNI9LDL02gslI,1696
|
|
392
392
|
mxcubecore/HardwareObjects/mockup/EDNACharacterisationMockup.py,sha256=agywWmr6dqNJeLymq83UOBdNGpr6436LrypgWu5x-Zg,1986
|
|
393
393
|
mxcubecore/HardwareObjects/mockup/EnergyMockup.py,sha256=Qrhkvc2SS84GIIsVbsdST48dUAscuJa3pDmErWdKbmU,2087
|
|
394
394
|
mxcubecore/HardwareObjects/mockup/EnergyScanMockup.py,sha256=uJZwCl5JalXHyEYQZT-MTonVrBAUptNEtbVz_5OikiU,14291
|
|
395
395
|
mxcubecore/HardwareObjects/mockup/ExporterNStateMockup.py,sha256=IhjRjBsejcL0nbflSYfASSjoaskIloio1-o_KaiKd1s,4018
|
|
396
|
-
mxcubecore/HardwareObjects/mockup/FluxMockup.py,sha256=
|
|
396
|
+
mxcubecore/HardwareObjects/mockup/FluxMockup.py,sha256=3MW657zojJUIh9a7qwfz7Fq8xXH0SJbv2837vcMBBBQ,3037
|
|
397
397
|
mxcubecore/HardwareObjects/mockup/HarvesterMockup.py,sha256=4mfnzx2cD8x3tORaRsLvS5XALJd9QpSyRN30JYnl61k,15880
|
|
398
398
|
mxcubecore/HardwareObjects/mockup/ISPyBClientMockup.py,sha256=XPL0fu7-vI1Gxzhs7fEerU9aO_FF78ZpUG6tUVfENkk,17506
|
|
399
399
|
mxcubecore/HardwareObjects/mockup/ISPyBRestClientMockup.py,sha256=3t_ZdLMAx7DeZnlpONZFyJr3jYwhBEZsszsrZvxgvZ8,10107
|
|
@@ -444,7 +444,7 @@ mxcubecore/model/protocols/exporter.py,sha256=uY-O7lFlRKL8A0SWB_VRI22nAxq1KqIFmE
|
|
|
444
444
|
mxcubecore/model/protocols/sardana.py,sha256=eeuqM0C4JU4mm1WPVqwAR52nWgWamJNh5KLnde_7Wqw,1260
|
|
445
445
|
mxcubecore/model/protocols/tango.py,sha256=izmX-V_rKFmwYTJToWkyBONSZdEQsHVbi6CWHTBhBFs,2241
|
|
446
446
|
mxcubecore/model/queue_model_enumerables.py,sha256=hSOp77Xn0wzUGDl5EaLtblr8ND9FXytqadtW40VFDcA,2330
|
|
447
|
-
mxcubecore/model/queue_model_objects.py,sha256=
|
|
447
|
+
mxcubecore/model/queue_model_objects.py,sha256=05QWGFdJlLBoQuOFgcnE7Jv72zZElNEAMALIA3l7_UI,100464
|
|
448
448
|
mxcubecore/protocols_config.py,sha256=0ujkNkTteeSvY3gNjsdhRzQw9FND2S8jNO_ZdrHNPR8,5703
|
|
449
449
|
mxcubecore/queue_entry/__init__.py,sha256=fQLLDdLhLlRdV_pisyb9-G4dbqrGx_iroE4048p2sR8,4087
|
|
450
450
|
mxcubecore/queue_entry/advanced_connector.py,sha256=l0GFbAu64p5mIwRL5ZEJOr08NXAdRvYLR-DXoN-DyUs,3177
|
|
@@ -465,8 +465,8 @@ mxcubecore/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
465
465
|
mxcubecore/utils/conversion.py,sha256=G1bk2Mi2ZwGbZa5pEeiFaKWxhSVXVGqu1L9_SioyUOk,4513
|
|
466
466
|
mxcubecore/utils/qt_import.py,sha256=hQkBVZLUDZtktX7DSyoH88GAK_mK9Ghlsj4k9pFJeAQ,14415
|
|
467
467
|
mxcubecore/utils/units.py,sha256=2D1QlTwe8eSs2UYRm4VVxSTosZZHeM-Pfw9KlcLbDAg,1251
|
|
468
|
-
mxcubecore-1.
|
|
469
|
-
mxcubecore-1.
|
|
470
|
-
mxcubecore-1.
|
|
471
|
-
mxcubecore-1.
|
|
472
|
-
mxcubecore-1.
|
|
468
|
+
mxcubecore-1.336.0.dist-info/COPYING,sha256=u-Mc8zCecwyo4YoP8UulmzCiZZ_MmCLROd_NBtOcRj0,35148
|
|
469
|
+
mxcubecore-1.336.0.dist-info/COPYING.LESSER,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
470
|
+
mxcubecore-1.336.0.dist-info/METADATA,sha256=i5BMTf__2MZPLYqsur4tacj7_3-hxDzz5_VGhxnGfmc,4262
|
|
471
|
+
mxcubecore-1.336.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
472
|
+
mxcubecore-1.336.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|