mxcubecore 1.394.0__py3-none-any.whl → 1.396.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/Command/Sardana.py +3 -15
- mxcubecore/HardwareObjects/ALBA/ALBADataAnalysis.py +1 -3
- mxcubecore/HardwareObjects/ALBA/ALBAEpsActuator.py +1 -3
- mxcubecore/HardwareObjects/ALBA/ALBAFastShutter.py +1 -3
- mxcubecore/HardwareObjects/Cats90.py +1 -3
- mxcubecore/HardwareObjects/CatsMaint.py +2 -5
- mxcubecore/HardwareObjects/DESY/MjpgStreamVideo.py +0 -2
- mxcubecore/HardwareObjects/DESY/P11Collect.py +2 -3
- mxcubecore/HardwareObjects/DESY/P11EDNACharacterisation.py +1 -3
- mxcubecore/HardwareObjects/EDNACharacterisation.py +1 -4
- mxcubecore/HardwareObjects/QueueManager.py +1 -2
- mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Collect.py +2 -6
- mxcubecore/HardwareObjects/SOLEIL/PX1/PX1EnergyScan.py +2 -8
- mxcubecore/HardwareObjects/SOLEIL/PX1/PX1MiniDiff.py +1 -3
- mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Diffractometer.py +4 -6
- mxcubecore/HardwareObjects/SOLEIL/SOLEILEnergyScan.py +4 -13
- mxcubecore/HardwareObjects/SOLEIL/SOLEILISPyBClient.py +1 -4
- mxcubecore/HardwareObjects/SOLEIL/SOLEILSafetyShutter.py +1 -4
- mxcubecore/HardwareObjects/SOLEIL/SOLEILqueue_entry.py +1 -1
- mxcubecore/HardwareObjects/SOLEIL/TangoDCMotor.py +0 -2
- mxcubecore/HardwareObjects/SecureXMLRpcRequestHandler.py +2 -9
- mxcubecore/HardwareObjects/XMLRPCServer.py +1 -1
- mxcubecore/saferef.py +3 -10
- {mxcubecore-1.394.0.dist-info → mxcubecore-1.396.0.dist-info}/METADATA +1 -1
- {mxcubecore-1.394.0.dist-info → mxcubecore-1.396.0.dist-info}/RECORD +28 -28
- {mxcubecore-1.394.0.dist-info → mxcubecore-1.396.0.dist-info}/COPYING +0 -0
- {mxcubecore-1.394.0.dist-info → mxcubecore-1.396.0.dist-info}/COPYING.LESSER +0 -0
- {mxcubecore-1.394.0.dist-info → mxcubecore-1.396.0.dist-info}/WHEEL +0 -0
mxcubecore/Command/Sardana.py
CHANGED
|
@@ -181,9 +181,6 @@ class SardanaMacro(CommandObject, SardanaObject, ChannelObject):
|
|
|
181
181
|
try:
|
|
182
182
|
fullcmd = self.macro_format + " " + " ".join([str(a) for a in args])
|
|
183
183
|
except Exception:
|
|
184
|
-
import traceback
|
|
185
|
-
|
|
186
|
-
logging.getLogger("HWR").info(traceback.format_exc())
|
|
187
184
|
logging.getLogger("HWR").info(
|
|
188
185
|
" - Wrong format for macro arguments. Macro is %s / args are (%s)"
|
|
189
186
|
% (self.macro_format, str(args))
|
|
@@ -294,12 +291,7 @@ class SardanaMacro(CommandObject, SardanaObject, ChannelObject):
|
|
|
294
291
|
logging.getLogger("HWR").debug("Cannot connect to door %s" % self.doorname)
|
|
295
292
|
self.emit("commandFailed", (-1, str(self.name())))
|
|
296
293
|
except Exception:
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
logging.getLogger("HWR").debug(
|
|
300
|
-
"SardanaMacro / event handling problem. Uggh. %s"
|
|
301
|
-
% traceback.format_exc()
|
|
302
|
-
)
|
|
294
|
+
logging.getLogger("HWR").exception("SardanaMacro / event handling problem.")
|
|
303
295
|
self.emit("commandFailed", (-1, str(self.name())))
|
|
304
296
|
|
|
305
297
|
def abort(self):
|
|
@@ -421,10 +413,8 @@ class SardanaChannel(ChannelObject, SardanaObject):
|
|
|
421
413
|
self.info.maxval = maxval.magnitude
|
|
422
414
|
|
|
423
415
|
except Exception:
|
|
424
|
-
import traceback
|
|
425
|
-
|
|
426
416
|
logging.getLogger("HWR").info("info initialized. Cannot get limits")
|
|
427
|
-
logging.getLogger("HWR").
|
|
417
|
+
logging.getLogger("HWR").exception("")
|
|
428
418
|
|
|
429
419
|
# prepare polling
|
|
430
420
|
# if the polling value is a number set it as the taurus polling period
|
|
@@ -454,9 +444,7 @@ class SardanaChannel(ChannelObject, SardanaObject):
|
|
|
454
444
|
self.info.minval = limits[0].magnitude
|
|
455
445
|
self.info.maxval = limits[1].magnitude
|
|
456
446
|
except Exception:
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
logging.getLogger("HWR").info("%s" % traceback.format_exc())
|
|
447
|
+
logging.getLogger("HWR").exception("")
|
|
460
448
|
return self.info
|
|
461
449
|
|
|
462
450
|
def update(self, event):
|
|
@@ -122,10 +122,8 @@ class ALBADataAnalysis(EDNACharacterisation):
|
|
|
122
122
|
state = self.job.state
|
|
123
123
|
self.log.debug("Job / is %s" % str(state))
|
|
124
124
|
except Exception:
|
|
125
|
-
import traceback
|
|
126
|
-
|
|
127
125
|
self.log.debug("Polling for Job state 3. exception happened")
|
|
128
|
-
self.log.
|
|
126
|
+
self.log.exception("")
|
|
129
127
|
|
|
130
128
|
while state in ["RUNNING", "PENDING"]:
|
|
131
129
|
self.log.debug("Job / is %s" % state)
|
|
@@ -88,9 +88,7 @@ class ALBAEpsActuator(BaseHardwareObjects.HardwareObject):
|
|
|
88
88
|
states = state_string.split(",")
|
|
89
89
|
self.state_strings = states[1].strip(), states[0].strip()
|
|
90
90
|
except Exception:
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
self.log.warning(traceback.format_exc())
|
|
91
|
+
self.log.exception()
|
|
94
92
|
self.state_strings = self.default_state_strings
|
|
95
93
|
|
|
96
94
|
def get_state(self):
|
|
@@ -99,9 +99,7 @@ class ALBAFastShutter(BaseHardwareObjects.HardwareObject):
|
|
|
99
99
|
states = state_string.split(",")
|
|
100
100
|
self.state_strings = states[1].strip(), states[0].strip()
|
|
101
101
|
except Exception:
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
self.log.warning(traceback.format_exc())
|
|
102
|
+
self.log.exception("")
|
|
105
103
|
self.state_strings = self.default_state_strings
|
|
106
104
|
|
|
107
105
|
def get_state(self):
|
|
@@ -1084,10 +1084,8 @@ class Cats90(SampleChanger):
|
|
|
1084
1084
|
try:
|
|
1085
1085
|
task_id = method(*args)
|
|
1086
1086
|
except Exception:
|
|
1087
|
-
import traceback
|
|
1088
|
-
|
|
1089
1087
|
self.log.debug("Cats90. exception while executing server task")
|
|
1090
|
-
self.log.
|
|
1088
|
+
self.log.exception("")
|
|
1091
1089
|
task_id = None
|
|
1092
1090
|
|
|
1093
1091
|
waitsafe = kwargs.get("waitsafe", False)
|
|
@@ -824,11 +824,8 @@ class CatsMaint(HardwareObject):
|
|
|
824
824
|
ret = cmd()
|
|
825
825
|
return ret
|
|
826
826
|
except Exception as exc:
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
traceback.print_exc()
|
|
830
|
-
msg = exc[0].desc
|
|
831
|
-
raise Exception(msg)
|
|
827
|
+
self.log.exception("")
|
|
828
|
+
raise
|
|
832
829
|
|
|
833
830
|
|
|
834
831
|
def test_hwo(hwo):
|
|
@@ -25,7 +25,6 @@ __email__ = "jan.meyer@desy.de"
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
import json
|
|
28
|
-
import traceback
|
|
29
28
|
|
|
30
29
|
import gevent
|
|
31
30
|
|
|
@@ -39,7 +38,6 @@ try:
|
|
|
39
38
|
|
|
40
39
|
redis_flag = True
|
|
41
40
|
except ImportError:
|
|
42
|
-
traceback.print_exc()
|
|
43
41
|
redis_flag = False
|
|
44
42
|
|
|
45
43
|
from mxcubecore.HardwareObjects.abstract.AbstractVideoDevice import AbstractVideoDevice
|
|
@@ -29,7 +29,6 @@ import socket
|
|
|
29
29
|
import subprocess
|
|
30
30
|
import sys
|
|
31
31
|
import time
|
|
32
|
-
import traceback
|
|
33
32
|
|
|
34
33
|
import gevent
|
|
35
34
|
import h5py
|
|
@@ -329,7 +328,7 @@ class P11Collect(AbstractCollect):
|
|
|
329
328
|
)
|
|
330
329
|
|
|
331
330
|
except RuntimeError:
|
|
332
|
-
self.log.
|
|
331
|
+
self.log.exception("")
|
|
333
332
|
finally:
|
|
334
333
|
self.acquisition_cleanup()
|
|
335
334
|
|
|
@@ -783,7 +782,7 @@ class P11Collect(AbstractCollect):
|
|
|
783
782
|
HWR.beamline.diffractometer.stop_motion()
|
|
784
783
|
|
|
785
784
|
except RuntimeError:
|
|
786
|
-
self.log.
|
|
785
|
+
self.log.exception("")
|
|
787
786
|
|
|
788
787
|
def get_or_create_group(self, parent_group, group_name):
|
|
789
788
|
"""Gets or creates a group within a parent group.
|
|
@@ -244,10 +244,8 @@ class P11EDNACharacterisation(EDNACharacterisation):
|
|
|
244
244
|
transmission = HWR.beamline.transmission.get_value()
|
|
245
245
|
beam.setTransmission(XSDataDouble(transmission))
|
|
246
246
|
except AttributeError:
|
|
247
|
-
import traceback
|
|
248
|
-
|
|
249
247
|
self.log.debug("EDNACharacterisation. transmission not saved ")
|
|
250
|
-
self.log.
|
|
248
|
+
self.log.exception("")
|
|
251
249
|
|
|
252
250
|
try:
|
|
253
251
|
wavelength = HWR.beamline.energy.get_wavelength()
|
|
@@ -140,10 +140,7 @@ class EDNACharacterisation(AbstractCharacterisation):
|
|
|
140
140
|
transmission = HWR.beamline.transmission.get_value()
|
|
141
141
|
beam.setTransmission(XSDataDouble(transmission))
|
|
142
142
|
except AttributeError:
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
self.log.debug("EDNACharacterisation. transmission not saved ")
|
|
146
|
-
self.log.debug(traceback.format_exc())
|
|
143
|
+
self.log.exception("EDNACharacterisation. transmission not saved ")
|
|
147
144
|
|
|
148
145
|
try:
|
|
149
146
|
wavelength = HWR.beamline.energy.get_wavelength()
|
|
@@ -9,7 +9,6 @@ documentation for the queue_entry module for more information.
|
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
11
|
import logging
|
|
12
|
-
import traceback
|
|
13
12
|
|
|
14
13
|
import gevent
|
|
15
14
|
|
|
@@ -250,7 +249,7 @@ class QueueManager(HardwareObject, QueueEntryContainer):
|
|
|
250
249
|
self.emit("queue_entry_execute_finished", (entry, "Failed"))
|
|
251
250
|
self.emit("statusMessage", ("status", "Queue execution failed", "error"))
|
|
252
251
|
except:
|
|
253
|
-
self.log.
|
|
252
|
+
self.log.exception("")
|
|
254
253
|
raise
|
|
255
254
|
else:
|
|
256
255
|
entry.post_execute()
|
|
@@ -450,10 +450,8 @@ class PX1Collect(AbstractCollect, HardwareObject):
|
|
|
450
450
|
)
|
|
451
451
|
return False
|
|
452
452
|
except Exception:
|
|
453
|
-
import traceback
|
|
454
|
-
|
|
455
453
|
logging.error("PX1Collect: Cannot generate thumbnails for %s" % filename)
|
|
456
|
-
logging.
|
|
454
|
+
logging.exception("")
|
|
457
455
|
return False
|
|
458
456
|
|
|
459
457
|
## generate snapshots and data thumbnails (END) ##
|
|
@@ -487,12 +485,10 @@ class PX1Collect(AbstractCollect, HardwareObject):
|
|
|
487
485
|
try:
|
|
488
486
|
os.chmod(process_dir, 0o777)
|
|
489
487
|
except Exception:
|
|
490
|
-
import traceback
|
|
491
|
-
|
|
492
488
|
self.log.error(
|
|
493
489
|
"PX1Collect: Error changing permissions for PROCESS directory"
|
|
494
490
|
)
|
|
495
|
-
self.log.
|
|
491
|
+
self.log.exception()
|
|
496
492
|
|
|
497
493
|
self.create_goimg_file(process_dir)
|
|
498
494
|
|
|
@@ -313,11 +313,7 @@ class PX1EnergyScan(AbstractEnergyScan, Equipment):
|
|
|
313
313
|
|
|
314
314
|
self.scanCommandFinished()
|
|
315
315
|
except Exception:
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
self.log.error(
|
|
319
|
-
"EnergyScan: problem starting energy scan. %s" % traceback.format_exc()
|
|
320
|
-
)
|
|
316
|
+
self.log.exception("EnergyScan: problem starting energy scan.")
|
|
321
317
|
self.scanCommandFailed()
|
|
322
318
|
self.scanStatusChanged("error starting energy scan")
|
|
323
319
|
return False
|
|
@@ -497,9 +493,7 @@ class PX1EnergyScan(AbstractEnergyScan, Equipment):
|
|
|
497
493
|
# pk, fppPeak, fpPeak, ip, fppInfl, fpInfl, chooch_graph_data = \
|
|
498
494
|
# result
|
|
499
495
|
except Exception:
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
self.log.debug(traceback.format_exc())
|
|
496
|
+
self.log.exception("")
|
|
503
497
|
self.store_energy_scan()
|
|
504
498
|
self.log.error("Energy scan: Chooch failed")
|
|
505
499
|
return
|
|
@@ -226,12 +226,10 @@ class PX1MiniDiff(GenericDiffractometer):
|
|
|
226
226
|
try:
|
|
227
227
|
motor.set_value(position, timeout=None)
|
|
228
228
|
except Exception:
|
|
229
|
-
import traceback
|
|
230
|
-
|
|
231
229
|
self.log.debug(
|
|
232
230
|
" / error moving motor on diffractometer. state is %s"
|
|
233
231
|
% (self.smargon_state)
|
|
234
232
|
)
|
|
235
|
-
self.log.
|
|
233
|
+
self.log.exception("")
|
|
236
234
|
|
|
237
235
|
self.wait_device_ready(timeout)
|
|
@@ -23,7 +23,6 @@ import logging
|
|
|
23
23
|
import os
|
|
24
24
|
import pickle
|
|
25
25
|
import time
|
|
26
|
-
import traceback
|
|
27
26
|
from math import sqrt
|
|
28
27
|
|
|
29
28
|
import beam_align
|
|
@@ -812,7 +811,6 @@ class PX2Diffractometer(GenericDiffractometer):
|
|
|
812
811
|
# motors[motor_role] = motor_pos[motor_obj]
|
|
813
812
|
# except KeyError:
|
|
814
813
|
|
|
815
|
-
# self.log.exception('convert_from_obj_to_name %s' % traceback.format_exc())
|
|
816
814
|
# if motor_obj:
|
|
817
815
|
# motors[motor_role] = motor_obj.get_value()
|
|
818
816
|
|
|
@@ -912,7 +910,7 @@ class PX2Diffractometer(GenericDiffractometer):
|
|
|
912
910
|
c[key] = self.motor_hwobj_dict[key].get_value()
|
|
913
911
|
except Exception:
|
|
914
912
|
# self.log.info('motor_positions_to_screen exception key %s' % key)
|
|
915
|
-
self.log.
|
|
913
|
+
self.log.exception("")
|
|
916
914
|
|
|
917
915
|
if "kappa" in c and c["kappa"] is None:
|
|
918
916
|
kappa = self.motor_hwobj_dict["kappa"].get_value()
|
|
@@ -1402,14 +1400,14 @@ class PX2Diffractometer(GenericDiffractometer):
|
|
|
1402
1400
|
try:
|
|
1403
1401
|
self.nclicks = int(nclicks)
|
|
1404
1402
|
except Exception:
|
|
1405
|
-
self.log.exception(
|
|
1403
|
+
self.log.exception("")
|
|
1406
1404
|
|
|
1407
1405
|
def set_step(self, step):
|
|
1408
1406
|
self.log.info("PX2Diffractometer: centring step changed: %s" % step)
|
|
1409
1407
|
try:
|
|
1410
1408
|
self.step = float(step)
|
|
1411
1409
|
except Exception:
|
|
1412
|
-
self.log.exception(
|
|
1410
|
+
self.log.exception("")
|
|
1413
1411
|
|
|
1414
1412
|
def set_centring_method(self, centring_method):
|
|
1415
1413
|
self.log.info(
|
|
@@ -1418,7 +1416,7 @@ class PX2Diffractometer(GenericDiffractometer):
|
|
|
1418
1416
|
try:
|
|
1419
1417
|
self.centring_method = centring_method
|
|
1420
1418
|
except Exception:
|
|
1421
|
-
self.log.exception(
|
|
1419
|
+
self.log.exception("")
|
|
1422
1420
|
|
|
1423
1421
|
def is_ready(self):
|
|
1424
1422
|
"""
|
|
@@ -285,11 +285,7 @@ class SOLEILEnergyScan(HardwareObject):
|
|
|
285
285
|
self.xanes.scan() # start() #scan()
|
|
286
286
|
self.scanCommandFinished("success")
|
|
287
287
|
except Exception:
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
self.log.error(
|
|
291
|
-
"EnergyScan: problem calling sequence %s" % traceback.format_exc()
|
|
292
|
-
)
|
|
288
|
+
self.log.exception("EnergyScan: problem calling sequence")
|
|
293
289
|
self.emit("scanStatusChanged", ("Error problem spec macro",))
|
|
294
290
|
return False
|
|
295
291
|
return True
|
|
@@ -509,12 +505,9 @@ class SOLEILEnergyScan(HardwareObject):
|
|
|
509
505
|
)
|
|
510
506
|
return None
|
|
511
507
|
except Exception:
|
|
512
|
-
|
|
508
|
+
self.user_log.error("Error creating archive path")
|
|
509
|
+
self.log.exception("Error creating archive path")
|
|
513
510
|
|
|
514
|
-
logging.getLogger("user_level_log").error(
|
|
515
|
-
"Error creating archive path (%s) \n %s"
|
|
516
|
-
% (dirname, traceback.format_exc())
|
|
517
|
-
)
|
|
518
511
|
return None
|
|
519
512
|
else:
|
|
520
513
|
if not os.path.isdir(dirname):
|
|
@@ -528,9 +521,7 @@ class SOLEILEnergyScan(HardwareObject):
|
|
|
528
521
|
fi = open(scanFile)
|
|
529
522
|
fo = open(archiveEfsFile, "w")
|
|
530
523
|
except Exception:
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
logging.getLogger("user_level_log").error(traceback.format_exc())
|
|
524
|
+
self.user_log.exception("")
|
|
534
525
|
self.storeEnergyScan()
|
|
535
526
|
self.emit("energyScanFailed", ())
|
|
536
527
|
return None
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
import os
|
|
3
|
-
import traceback
|
|
4
3
|
from collections import namedtuple
|
|
5
4
|
|
|
6
5
|
import urllib2
|
|
@@ -95,11 +94,9 @@ class SOLEILISPyBClient(ISPyBClient):
|
|
|
95
94
|
"SOLEILISPyBClient: extracted from ISPyB values for shipping, collection and tools"
|
|
96
95
|
)
|
|
97
96
|
except Exception:
|
|
98
|
-
|
|
99
|
-
logging.exception("SOLEILISPyBClient: %s" % _CONNECTION_ERROR_MSG)
|
|
97
|
+
self.log.exception("SOLEILISPyBClient: %s" % _CONNECTION_ERROR_MSG)
|
|
100
98
|
return
|
|
101
99
|
except Exception:
|
|
102
|
-
print(traceback.print_exc())
|
|
103
100
|
self.log.exception(_CONNECTION_ERROR_MSG)
|
|
104
101
|
return
|
|
105
102
|
try:
|
|
@@ -19,10 +19,7 @@ class SOLEILSafetyShutter(HardwareObject):
|
|
|
19
19
|
self.connect(self.shutter, "shutterStateChanged", self.shutterStateChanged)
|
|
20
20
|
self.connect(self.pss, "wagoStateChanged", self.shutterStateChanged)
|
|
21
21
|
except Exception:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
print(traceback.print_exc())
|
|
25
|
-
logging.debug(traceback.format_exc())
|
|
22
|
+
logging.exception("")
|
|
26
23
|
logging.getLogger().warning("pss device not configured")
|
|
27
24
|
|
|
28
25
|
def getShutterState(self):
|
|
@@ -92,7 +92,7 @@ class PX2DataCollectionQueueEntry(DataCollectionQueueEntry):
|
|
|
92
92
|
list_item.setText(1, "Stopped")
|
|
93
93
|
raise QueueAbortedException("queue stopped by user", self)
|
|
94
94
|
except Exception as ex:
|
|
95
|
-
|
|
95
|
+
self.log.exception("")
|
|
96
96
|
raise QueueExecutionException(ex.message, self)
|
|
97
97
|
else:
|
|
98
98
|
log.error(
|
|
@@ -128,8 +128,6 @@ class TangoDCMotor(HardwareObject):
|
|
|
128
128
|
if numpy.inf in limits:
|
|
129
129
|
limits = numpy.array([-10000, 10000])
|
|
130
130
|
except Exception:
|
|
131
|
-
# import traceback
|
|
132
|
-
# self.log.info("TangoDCMotor.get_limits: Cannot get limits for %s.\nException %s " % (self.motor_name, traceback.print_exc()))
|
|
133
131
|
if self.motor_name in [
|
|
134
132
|
"detector_distance",
|
|
135
133
|
"detector_horizontal",
|
|
@@ -83,17 +83,10 @@ class SecureXMLRpcRequestHandler(SimpleXMLRPCRequestHandler):
|
|
|
83
83
|
response = self.server._marshaled_dispatch(
|
|
84
84
|
data, getattr(self, "_dispatch", None)
|
|
85
85
|
)
|
|
86
|
-
except Exception
|
|
86
|
+
except Exception: # This should only happen if the module is buggy
|
|
87
87
|
# internal error, report as HTTP server error
|
|
88
88
|
self.send_response(500)
|
|
89
|
-
|
|
90
|
-
# Send information about the exception if requested
|
|
91
|
-
if (
|
|
92
|
-
hasattr(self.server, "_send_traceback_header")
|
|
93
|
-
and self.server._send_traceback_header
|
|
94
|
-
):
|
|
95
|
-
self.send_header("X-exception", str(e))
|
|
96
|
-
self.send_header("X-traceback", traceback.format_exc())
|
|
89
|
+
logging.getLogger("HWR").exception("Exception during request.")
|
|
97
90
|
|
|
98
91
|
self.end_headers()
|
|
99
92
|
else:
|
|
@@ -689,7 +689,7 @@ class XMLRPCServer(HardwareObject):
|
|
|
689
689
|
module_name + "." + sub_module[1], recurse=False, prefix=prefix
|
|
690
690
|
)
|
|
691
691
|
except StopIteration:
|
|
692
|
-
|
|
692
|
+
pass
|
|
693
693
|
|
|
694
694
|
def set_token(self, token):
|
|
695
695
|
SecureXMLRpcRequestHandler.setReferenceToken(token)
|
mxcubecore/saferef.py
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
import collections
|
|
4
4
|
import logging
|
|
5
|
-
import traceback
|
|
6
5
|
import weakref
|
|
7
6
|
|
|
8
7
|
|
|
@@ -122,15 +121,9 @@ class BoundMethodWeakref(object):
|
|
|
122
121
|
if isinstance(function, collections.abc.Callable):
|
|
123
122
|
function(self)
|
|
124
123
|
except Exception:
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
print(
|
|
129
|
-
(
|
|
130
|
-
"Exception during saferef %s "
|
|
131
|
-
"cleanup function %s: %s" % (self, function, e)
|
|
132
|
-
)
|
|
133
|
-
)
|
|
124
|
+
logging.getLogger("HWR").exception(
|
|
125
|
+
f"Exception during `saferef` {self} cleanup function {function}"
|
|
126
|
+
)
|
|
134
127
|
|
|
135
128
|
self.deletion_methods = [on_delete]
|
|
136
129
|
self.key = self.calculate_key(target)
|
|
@@ -3,7 +3,7 @@ mxcubecore/Command/Epics.py,sha256=osz7DBv_R21gcxQiXfQKPm-zNfZOQEx_wrfXAJyOuDs,7
|
|
|
3
3
|
mxcubecore/Command/Exporter.py,sha256=HL6hncI_EUjjVX7frOsmxGa2Gyc-3PwUPXLUBJk4B20,8076
|
|
4
4
|
mxcubecore/Command/Mockup.py,sha256=OrGAJC0JjTTjGSMZl7NiWJmVUQeEThMYdSQzuBD-bEc,1949
|
|
5
5
|
mxcubecore/Command/Pool.py,sha256=ZS8sRafNSAo2Da_F-m-NOpJ1kmHi_l2SidZsdCxa7fY,9274
|
|
6
|
-
mxcubecore/Command/Sardana.py,sha256=
|
|
6
|
+
mxcubecore/Command/Sardana.py,sha256=6iKxdG4rwyDzvjxSmK1mnkUIZQNNrEgXMYVyJHromvk,15578
|
|
7
7
|
mxcubecore/Command/Spec.py,sha256=a3dqqXhwq1FNOo5zD9DSnVv5FgCU3jyW-lJ_QT8SNlo,3636
|
|
8
8
|
mxcubecore/Command/Taco.py,sha256=3MULNnns4fGvpunBvTvKCTK_4bmK3bJb1qXglwgBfYE,5556
|
|
9
9
|
mxcubecore/Command/Tango.py,sha256=S0M3wBVDoEf3HmUONOPVCC2fs30s9GYu5T4_Tr5zaEo,10494
|
|
@@ -24,10 +24,10 @@ mxcubecore/HardwareObjects/ALBA/ALBACats.py,sha256=IIv4raiq-rnoTFBK3z5bRA4z5hXw0
|
|
|
24
24
|
mxcubecore/HardwareObjects/ALBA/ALBACatsMaint.py,sha256=Tay4jYWkyAND7bzhK6sKXJWR1E4OfiV9Ix1Gd2m5pjI,1606
|
|
25
25
|
mxcubecore/HardwareObjects/ALBA/ALBAClusterJob.py,sha256=Cr94Uu0gjuHkg0Ya_ulSBCr5-fbH27eWqnTQkyF25W0,3220
|
|
26
26
|
mxcubecore/HardwareObjects/ALBA/ALBACollect.py,sha256=hmCDOn5C8o_PyrmV3ZtbXdkJ2_7n7Y76DsJFlIwD2ng,29755
|
|
27
|
-
mxcubecore/HardwareObjects/ALBA/ALBADataAnalysis.py,sha256=
|
|
27
|
+
mxcubecore/HardwareObjects/ALBA/ALBADataAnalysis.py,sha256=P8wt9cqwphyx9jGK9hqOfkInKjrn0oONWr9gzCeZyt0,5913
|
|
28
28
|
mxcubecore/HardwareObjects/ALBA/ALBAEnergy.py,sha256=OJ2gyDyYQjxk7r6jAixyXh-j8qKl12dnkBqx63rMNNQ,2280
|
|
29
|
-
mxcubecore/HardwareObjects/ALBA/ALBAEpsActuator.py,sha256=
|
|
30
|
-
mxcubecore/HardwareObjects/ALBA/ALBAFastShutter.py,sha256=
|
|
29
|
+
mxcubecore/HardwareObjects/ALBA/ALBAEpsActuator.py,sha256=J1Z6qSmTG3gfyZN7ots5U2AqhSZO917ZDlY2Yx4mH8o,3861
|
|
30
|
+
mxcubecore/HardwareObjects/ALBA/ALBAFastShutter.py,sha256=tQK7WR67yEh2RFRzXNeH-csRgJM46A2vl9BB2doyfuc,6253
|
|
31
31
|
mxcubecore/HardwareObjects/ALBA/ALBAFlux.py,sha256=FK-d8MAYvQ3yzEPOX535Bib3ls88R6YCRQaYfyOs1dw,1185
|
|
32
32
|
mxcubecore/HardwareObjects/ALBA/ALBAFrontEnd.py,sha256=qBq0-gaZEKTZepDGLeP7_OfsJUZeHvKS5aFPQ0InSsQ,1404
|
|
33
33
|
mxcubecore/HardwareObjects/ALBA/ALBAFrontLight.py,sha256=6sCAz0p69CDofgnnM75WU2PmLvIroaY89bEd_UPU9Bc,3925
|
|
@@ -59,23 +59,23 @@ mxcubecore/HardwareObjects/BlissMotorWPositions.py,sha256=jB3j6ScQJt4IGyBjUT_IOq
|
|
|
59
59
|
mxcubecore/HardwareObjects/BlissNState.py,sha256=F_0lZjhlw2viAqqf2bl18Z2rv9nn2IyBsB2ZScNhKNs,6280
|
|
60
60
|
mxcubecore/HardwareObjects/BlissRontecMCA.py,sha256=NcRgBR4HY7r7TBC33qwZ_1g0_c0N4Xwnj8f0EmNVHS0,2027
|
|
61
61
|
mxcubecore/HardwareObjects/BlissShutter.py,sha256=2bdRZvWDCnajHcTLUAYFgS_HUqDA7fBqp7D1wadTB0w,4536
|
|
62
|
-
mxcubecore/HardwareObjects/Cats90.py,sha256=
|
|
62
|
+
mxcubecore/HardwareObjects/Cats90.py,sha256=LrR-cBW9Lir7y2fmUrF4AGWB2CUZ8LZe_3UoFtgUAYQ,52743
|
|
63
63
|
mxcubecore/HardwareObjects/CatsBessy.py,sha256=KUsdEzENWg8SoWHy-qAkfayKdUQnEaxCpA2Jhfl7Cyc,18413
|
|
64
|
-
mxcubecore/HardwareObjects/CatsMaint.py,sha256=
|
|
64
|
+
mxcubecore/HardwareObjects/CatsMaint.py,sha256=xgSDKUVS-EZHL-7ZW4yt0lopCDIqhIdPgkt3pRzCi74,25356
|
|
65
65
|
mxcubecore/HardwareObjects/CentringMath.py,sha256=RLuoZgpFBM041FcgmHQHEx6waes8Tjl8HACSoDcoOkY,10149
|
|
66
66
|
mxcubecore/HardwareObjects/DESY/Centring.py,sha256=IPTixihuc5d4XoI9AEgk22sVfTQoMJOILpsKUKXaQ4E,5855
|
|
67
67
|
mxcubecore/HardwareObjects/DESY/DigitalZoomMotor.py,sha256=MM5Re8oEGH8yBd2RX2X1VNn4Fb5_Lr9BFTu3fBxEIUg,4611
|
|
68
|
-
mxcubecore/HardwareObjects/DESY/MjpgStreamVideo.py,sha256=
|
|
68
|
+
mxcubecore/HardwareObjects/DESY/MjpgStreamVideo.py,sha256=P4AuwpbD3mHNSA18xUoZW4XjJrGf2fUntv6hAvRqA_A,35588
|
|
69
69
|
mxcubecore/HardwareObjects/DESY/P11AlbulaView.py,sha256=7IIj3F690Si1UHAJUEcLUCmI8B99pGUTRiQH05BkCsA,7159
|
|
70
70
|
mxcubecore/HardwareObjects/DESY/P11BackLight.py,sha256=YR2hFpWlKq5eWeuyWioFnBeSvEtSX9eUJk2omzX8KrI,3619
|
|
71
71
|
mxcubecore/HardwareObjects/DESY/P11Beam.py,sha256=XoJxS2GF0jEfiH1rjO-93JEerGzTW5VKLa4h7LyqkTs,5176
|
|
72
72
|
mxcubecore/HardwareObjects/DESY/P11BeamStop.py,sha256=M3kcbOecXdnnVgmbVnC_7GFXm8mKGGC7BI7fXV6TKX8,4652
|
|
73
|
-
mxcubecore/HardwareObjects/DESY/P11Collect.py,sha256=
|
|
73
|
+
mxcubecore/HardwareObjects/DESY/P11Collect.py,sha256=HNxzcEA8FnP9YsFg4EOTQKzQapwU9bQs5e1S13M3mfE,50995
|
|
74
74
|
mxcubecore/HardwareObjects/DESY/P11Collimator.py,sha256=tMhl9bdroZGynku6mbF2swOAeIiGANvgcipBdvcneJ4,5400
|
|
75
75
|
mxcubecore/HardwareObjects/DESY/P11DetectorCover.py,sha256=doujc008LIgsm_CKUuFuMw5wlTm_UfRRvivCqwwx5w4,6129
|
|
76
76
|
mxcubecore/HardwareObjects/DESY/P11DetectorDistance.py,sha256=T_16zuOV6OTUCF2VN5p-xvJ2GK2M3ERiq3B_Nny0c9o,5927
|
|
77
77
|
mxcubecore/HardwareObjects/DESY/P11DoorInterlock.py,sha256=pYO9LWEqcuga1MNLzVFTNqgxPnjjB076oUBLZQ7gTEk,3145
|
|
78
|
-
mxcubecore/HardwareObjects/DESY/P11EDNACharacterisation.py,sha256=
|
|
78
|
+
mxcubecore/HardwareObjects/DESY/P11EDNACharacterisation.py,sha256=C7AMVBtGW570UHsGoI-5SuUykLNTB7I2w0PCKN7NV6I,25444
|
|
79
79
|
mxcubecore/HardwareObjects/DESY/P11EigerDetector.py,sha256=8JvH79IvHnkMH9QpqeBfvbs7EJuIq3A8i6Z2Y91MlD4,10487
|
|
80
80
|
mxcubecore/HardwareObjects/DESY/P11Energy.py,sha256=jUCsm8c5FPcBRB5K4M8Olkf_Hn-A3diR-4VYugnqYzo,4842
|
|
81
81
|
mxcubecore/HardwareObjects/DESY/P11FastShutter.py,sha256=IlXDUWWe2d24-vO__8gEUO7THMLsgOnr7lW-jPVK9Pg,3063
|
|
@@ -94,7 +94,7 @@ mxcubecore/HardwareObjects/DESY/ValueStateChannel.py,sha256=zWFcd3KtM-qSrtmp5NW_
|
|
|
94
94
|
mxcubecore/HardwareObjects/DESY/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
95
|
mxcubecore/HardwareObjects/DataPublisher.py,sha256=eknx7rddeZVXFmAHzcNC3qzvaEbBnp9tAjwNuIwsVkQ,10934
|
|
96
96
|
mxcubecore/HardwareObjects/DozorOnlineProcessing.py,sha256=ofas-B18kDXNR9Yuedt2UJxi76UPpC-2BwNN3E0mUNc,3244
|
|
97
|
-
mxcubecore/HardwareObjects/EDNACharacterisation.py,sha256=
|
|
97
|
+
mxcubecore/HardwareObjects/EDNACharacterisation.py,sha256=vDXCkCqcgu1J9078caiK47ozKYRdHseGQdSZTOVMis4,18893
|
|
98
98
|
mxcubecore/HardwareObjects/EMBL/EMBLAperture.py,sha256=iGsWF7LS-D8Wir_o1IazVESlz6R1Y_-egy_YuU35Uak,5217
|
|
99
99
|
mxcubecore/HardwareObjects/EMBL/EMBLBSD.py,sha256=iRkneY9eer-RnqWKNsyy4rT4H8mgQ9A22k_2haZtv9c,9685
|
|
100
100
|
mxcubecore/HardwareObjects/EMBL/EMBLBeam.py,sha256=jC_XBWCoh8i40WNIr89H_679hqYgpTOpgguNjDua51k,12616
|
|
@@ -264,7 +264,7 @@ mxcubecore/HardwareObjects/QtGraphicsManager.py,sha256=b1ZvROpez3Ypv0rtQOcvRMnAG
|
|
|
264
264
|
mxcubecore/HardwareObjects/QtInstanceServer.py,sha256=CJabKEFGaY9XuEu4_bL1Eauv4mIaGivNqnw2Cx8Zewg,44732
|
|
265
265
|
mxcubecore/HardwareObjects/QtLimaVideo.py,sha256=RxBCXpBg-asNaEUrsFYDAU5QEUJyvH2uFNhMXOD4rjo,4512
|
|
266
266
|
mxcubecore/HardwareObjects/QtTangoLimaVideo.py,sha256=I0lM08hUAjbU_ZElnF6uIx1hLMw7IWiqukzQt4umYg8,4489
|
|
267
|
-
mxcubecore/HardwareObjects/QueueManager.py,sha256=
|
|
267
|
+
mxcubecore/HardwareObjects/QueueManager.py,sha256=kwSWpJMD5lQ31iwFPIWbZr1bQdSh-6uQb-jJo5M-Bdw,14951
|
|
268
268
|
mxcubecore/HardwareObjects/QueueModel.py,sha256=wS247qcYIvqdvMKCiqxjg9a0P6dxTIjzS5uJVj0NIZI,18728
|
|
269
269
|
mxcubecore/HardwareObjects/RedisClient.py,sha256=b2X3gGYxdTgx-dfFuraoY_tyC_Lv86H7OMalUGPhbYE,7310
|
|
270
270
|
mxcubecore/HardwareObjects/Resolution.py,sha256=5-wAnHOp4geFCdEYmal8H8lc1js20mOTlJSnUp6zjq0,1914
|
|
@@ -272,14 +272,14 @@ mxcubecore/HardwareObjects/SC3.py,sha256=Z_YmzmlECmIEt9WlBDCYkze6UALk0YANfDfXuBe
|
|
|
272
272
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Attenuator.py,sha256=uCf3QaO4mkrLcrgT6Atuj0V9ojK4DUY7KVdk0EtH8TQ,1987
|
|
273
273
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1BeamInfo.py,sha256=Gn9XqVufwInI3uiCdJcqPAVAOIEFH9xq7dTT07NhWoQ,4419
|
|
274
274
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1CatsMaint.py,sha256=nhTig6lKb0ZUR_eLX3VEiAOqc1sVXp4Wx_RcX5SeF-o,1909
|
|
275
|
-
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Collect.py,sha256=
|
|
275
|
+
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Collect.py,sha256=PnglNIxy4PL8OcmoW4NK-ie0hM4PsTryzR0Xpo9PKcI,31279
|
|
276
276
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Configuration.py,sha256=QWHiuy5nfqxIQQGcxufTgpplsftCl4-BS9Tm0YUbWd4,2530
|
|
277
277
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Cryotong.py,sha256=IHSlMIHNM9BFRKrLltU9fip01cYl2SXb-uXXUwyYgHU,10838
|
|
278
278
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1DetectorDistance.py,sha256=gD2W2aTn89w9pk0eyVTv9N3kEwYNTfpV3NRB32rZbHE,4953
|
|
279
279
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Energy.py,sha256=K2LLXLdPOtYBWJuf0Hv6ALbRgxvkHYjdTD9Fj32BrqQ,8211
|
|
280
|
-
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1EnergyScan.py,sha256=
|
|
280
|
+
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1EnergyScan.py,sha256=TGejmuRF_ThfI-zHWEuH-lKl-ddbEzyK4rw_26FaorA,24338
|
|
281
281
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Environment.py,sha256=opDKuK3Cd-zg6GxUrweCk6RDtt9cd1aN2i4W_qmObrw,10329
|
|
282
|
-
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1MiniDiff.py,sha256=
|
|
282
|
+
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1MiniDiff.py,sha256=DIt9hkz_GgMMcch0Utog3YnEww4qtS0-f56qmPqbcVE,8502
|
|
283
283
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Pilatus.py,sha256=tZqA_zGneTEE-7_IahVOjLPLEyMDgsK-iXoUvQ9lD0M,8762
|
|
284
284
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Pss.py,sha256=2MkKL5XhmteS8KzJ9KwOKLbwBIZIFdLwFGqXXMEx8bs,800
|
|
285
285
|
mxcubecore/HardwareObjects/SOLEIL/PX1/PX1Resolution.py,sha256=YxFEM4j58XjmhOnxOc-LAWkHFVb4dTOD-_KWM9JTIus,5187
|
|
@@ -288,7 +288,7 @@ mxcubecore/HardwareObjects/SOLEIL/PX1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
288
288
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Attenuator.py,sha256=OaIGz5hddVlng7bFofjDQ9GFvkJVlcd5NeS9hIhCyIM,8008
|
|
289
289
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2BeamInfo.py,sha256=J0ydfc1KGt5no-in1b8_e39zldQ6FmpV6Ong5zfPVOE,6151
|
|
290
290
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Collect.py,sha256=7oRpin0WCTycCWw5NI5nnSmE79q1KohIiy1inL-l8j4,14131
|
|
291
|
-
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Diffractometer.py,sha256=
|
|
291
|
+
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Diffractometer.py,sha256=TYpLFJJByGSQtdQyH4tu3rM2dfADoqJfNhObZZ4zb9M,50498
|
|
292
292
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Energy.py,sha256=VgpFsmS__YjCv9AwOLhjhe6Co5OYgHLiqc5Naw2B_FI,4120
|
|
293
293
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Guillotine.py,sha256=b1f1wxfcL4ANGDbRnFausX7aadAWXom9Oy1IxV1oGz8,8074
|
|
294
294
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Qt4_LimaVideo.py,sha256=KZY3YJZCG8a6Z7Pgzyz8ju7rZV2bzoaFdqyDFXZyXao,3579
|
|
@@ -296,22 +296,22 @@ mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Resolution.py,sha256=unwwW083X7HDRMBsRE
|
|
|
296
296
|
mxcubecore/HardwareObjects/SOLEIL/PX2/PX2Video.py,sha256=_LOdRi_heDQbYIzzy7TDPWmxu_IP9KXMqkZU5wbH1Eg,3561
|
|
297
297
|
mxcubecore/HardwareObjects/SOLEIL/PX2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
298
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILCatsMaint.py,sha256=DAcSv5IZIYI-l9xH4xgshepQOOpxM22owG90PCF5mwE,15145
|
|
299
|
-
mxcubecore/HardwareObjects/SOLEIL/SOLEILEnergyScan.py,sha256=
|
|
299
|
+
mxcubecore/HardwareObjects/SOLEIL/SOLEILEnergyScan.py,sha256=UJwkKp01jEaoqrmtIaInaCFO3Fdc3UM2tubkMf-pgdw,30973
|
|
300
300
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILFlux.py,sha256=P_Qh2UlyqaBUaE4CBLEWPU76LU5ktAwDmIW6hQPuR0g,647
|
|
301
301
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILGuillotine.py,sha256=JARz7fJ2x_5uEzdmuEh5tjrSYwPep43MRbYgx78rGU0,8220
|
|
302
|
-
mxcubecore/HardwareObjects/SOLEIL/SOLEILISPyBClient.py,sha256=
|
|
302
|
+
mxcubecore/HardwareObjects/SOLEIL/SOLEILISPyBClient.py,sha256=AYBcz8xCbfT_sE_8sAgJpE5vBmJIvUVmqVTeU8mJysQ,8155
|
|
303
303
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILMachineInfo.py,sha256=vF5mrBFJE4TZcrbOqHKfmo-nARw2x3xJpOtR3zvntpY,16696
|
|
304
304
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILPss.py,sha256=CzpKmaN57n8hrNUrJ1vvdcRtU-n2P94GAeHuI_tS_fc,1551
|
|
305
305
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILRuche.py,sha256=WfhySX6qfEFyOmOwUzHg8uUNlurMaJml0nLMEp-D_CQ,2194
|
|
306
|
-
mxcubecore/HardwareObjects/SOLEIL/SOLEILSafetyShutter.py,sha256=
|
|
306
|
+
mxcubecore/HardwareObjects/SOLEIL/SOLEILSafetyShutter.py,sha256=_nyRGjsYF0b5sve46lqIoQ9DkUcT2o_ZhglbDAcUwi4,1958
|
|
307
307
|
mxcubecore/HardwareObjects/SOLEIL/SOLEILSession.py,sha256=4gGLhHR_5sWAh-LsrdCC5MIiNJkQZjzk7C8IeIzg9lw,5270
|
|
308
|
-
mxcubecore/HardwareObjects/SOLEIL/SOLEILqueue_entry.py,sha256=
|
|
309
|
-
mxcubecore/HardwareObjects/SOLEIL/TangoDCMotor.py,sha256=
|
|
308
|
+
mxcubecore/HardwareObjects/SOLEIL/SOLEILqueue_entry.py,sha256=3IONTd5RMA66pKroWysXm3YLEevkOuxPczNFps6drOo,7170
|
|
309
|
+
mxcubecore/HardwareObjects/SOLEIL/TangoDCMotor.py,sha256=I0dbN64gxtxX5lEBummNotQNadnF5GuZ8kwRxrDZI-4,8451
|
|
310
310
|
mxcubecore/HardwareObjects/SOLEIL/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
311
|
mxcubecore/HardwareObjects/SampleStage.py,sha256=GykGZfus7B_0qeHvMT7pU0MZ8CBjVaAir0JiF_v39YM,641
|
|
312
312
|
mxcubecore/HardwareObjects/SampleView.py,sha256=zTgn15AXgzKw0RtxQCl-sLqwqTWyJGgPsiJ8FPQfJZY,19418
|
|
313
313
|
mxcubecore/HardwareObjects/SardanaMotor.py,sha256=3KLkvnFPg_kGkmyglpJ3A63CxDmwYnPW6dRuYqOVnvo,7391
|
|
314
|
-
mxcubecore/HardwareObjects/SecureXMLRpcRequestHandler.py,sha256=
|
|
314
|
+
mxcubecore/HardwareObjects/SecureXMLRpcRequestHandler.py,sha256=Y_OarAExH6eg-Pc8NMCEkZeL7m3sKjA3o12nfb2sKQ0,3919
|
|
315
315
|
mxcubecore/HardwareObjects/Session.py,sha256=FcWZI3HmEPZ0C1y4NMtjEw513ZGlrMovPuuuw73xhmU,13095
|
|
316
316
|
mxcubecore/HardwareObjects/SimpleHTML.py,sha256=OOGN4ljwn2QtM9ZESDUHSTYvj7xsOOlMyrYs6p2XVDU,9175
|
|
317
317
|
mxcubecore/HardwareObjects/SpecMotor.py,sha256=J-92iDpbUK7Odm1ZBMF3ywUtCR3q-9_-s8AfyWkJ-us,2134
|
|
@@ -331,7 +331,7 @@ mxcubecore/HardwareObjects/Transmission.py,sha256=XWG4mkSj8wGXYSfRg0ExH49_GhtPUI
|
|
|
331
331
|
mxcubecore/HardwareObjects/UnitTest.py,sha256=TuhMcLiQ97v7Vyl0PyDxlDZaLVuhi-nvn9IMQHdhO74,3362
|
|
332
332
|
mxcubecore/HardwareObjects/UserTypeISPyBLims.py,sha256=T6dBxmPpl9midpKCQymmt7qf-89g2j9eKp6ueGfA3AI,10954
|
|
333
333
|
mxcubecore/HardwareObjects/VimbaVideo.py,sha256=Ll_8NwRm4kHWxg44AN5JjAyrYMDzU6AaPAR-7g2v8W4,3158
|
|
334
|
-
mxcubecore/HardwareObjects/XMLRPCServer.py,sha256=
|
|
334
|
+
mxcubecore/HardwareObjects/XMLRPCServer.py,sha256=L7HRVFIYOIKtDLWner_YylPc0dORWz8WWvKiyqkYsGE,25587
|
|
335
335
|
mxcubecore/HardwareObjects/XRFSpectrum.py,sha256=6-EF30kvymaV9yKdYCRR-dTXkkTX0LrWtcWs1vfxLGc,15962
|
|
336
336
|
mxcubecore/HardwareObjects/XSDataAutoprocv1_0.py,sha256=3SBTdJT2oWtOAdBf59K6AHQVXI19Ww9vPQeMJpho2vA,314090
|
|
337
337
|
mxcubecore/HardwareObjects/XSDataCommon.py,sha256=o7-xhEoDABuVlQ7Q3ZztfiKURTfmw9WruPm3hYhtLzs,210266
|
|
@@ -461,14 +461,14 @@ mxcubecore/queue_entry/test_collection.py,sha256=KidatI31KJ11FGrBNxG9SOvDEdLYaoC
|
|
|
461
461
|
mxcubecore/queue_entry/xray_centering.py,sha256=bicHc3ShlSakQ7xIdCw8rqrwec6PMt7JDqN6k38tMuE,4150
|
|
462
462
|
mxcubecore/queue_entry/xray_centering2.py,sha256=ZAwpmb39LGTNeBeZegzNcl-_x0yXWciqNxn4DiC-gms,2976
|
|
463
463
|
mxcubecore/queue_entry/xrf_spectrum.py,sha256=bZc9Ju-BW34pNSL9RN00bvT8ZVcdG9744N2M36Rvkps,5298
|
|
464
|
-
mxcubecore/saferef.py,sha256=
|
|
464
|
+
mxcubecore/saferef.py,sha256=0ORlWs-VsGaUxVCVkF9u1qP_4aOL5bwMcwaIh8Bmqzs,6984
|
|
465
465
|
mxcubecore/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
466
|
mxcubecore/utils/conversion.py,sha256=G1bk2Mi2ZwGbZa5pEeiFaKWxhSVXVGqu1L9_SioyUOk,4513
|
|
467
467
|
mxcubecore/utils/qt_import.py,sha256=sfuzul_J1Jw3by40KulRzAOceoS4tOnkms_1s1BzTKQ,14739
|
|
468
468
|
mxcubecore/utils/tango.py,sha256=vwEVrIrWKEFaeaJUz3xbaC7XWHY8ZeJ-pfcSrTfZPIE,2114
|
|
469
469
|
mxcubecore/utils/units.py,sha256=Gh7ovTUN00XBMUoyDG5W7akCx1pROL-M6pK2z1ouemg,1361
|
|
470
|
-
mxcubecore-1.
|
|
471
|
-
mxcubecore-1.
|
|
472
|
-
mxcubecore-1.
|
|
473
|
-
mxcubecore-1.
|
|
474
|
-
mxcubecore-1.
|
|
470
|
+
mxcubecore-1.396.0.dist-info/COPYING,sha256=u-Mc8zCecwyo4YoP8UulmzCiZZ_MmCLROd_NBtOcRj0,35148
|
|
471
|
+
mxcubecore-1.396.0.dist-info/COPYING.LESSER,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
472
|
+
mxcubecore-1.396.0.dist-info/METADATA,sha256=L9EP6bsfJK_Ih5cLSpMgs3JE0kUMihck2gEknDt2yKQ,4259
|
|
473
|
+
mxcubecore-1.396.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
474
|
+
mxcubecore-1.396.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|