dls-dodal 1.32.0__py3-none-any.whl → 1.34.1__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.
- {dls_dodal-1.32.0.dist-info → dls_dodal-1.34.1.dist-info}/METADATA +3 -3
- {dls_dodal-1.32.0.dist-info → dls_dodal-1.34.1.dist-info}/RECORD +53 -43
- {dls_dodal-1.32.0.dist-info → dls_dodal-1.34.1.dist-info}/WHEEL +1 -1
- dodal/__init__.py +8 -0
- dodal/_version.py +2 -2
- dodal/beamline_specific_utils/i03.py +6 -2
- dodal/beamlines/__init__.py +2 -3
- dodal/beamlines/b01_1.py +77 -0
- dodal/beamlines/i03.py +41 -9
- dodal/beamlines/i04.py +26 -4
- dodal/beamlines/i10.py +257 -0
- dodal/beamlines/i22.py +1 -2
- dodal/beamlines/i24.py +7 -7
- dodal/beamlines/p38.py +1 -2
- dodal/common/signal_utils.py +53 -0
- dodal/common/types.py +2 -7
- dodal/devices/aperturescatterguard.py +12 -15
- dodal/devices/apple2_undulator.py +602 -0
- dodal/devices/areadetector/plugins/CAM.py +31 -0
- dodal/devices/areadetector/plugins/MJPG.py +51 -106
- dodal/devices/backlight.py +7 -6
- dodal/devices/diamond_filter.py +47 -0
- dodal/devices/eiger.py +6 -2
- dodal/devices/eiger_odin.py +48 -39
- dodal/devices/focusing_mirror.py +14 -8
- dodal/devices/i10/i10_apple2.py +398 -0
- dodal/devices/i10/i10_setting_data.py +7 -0
- dodal/devices/i22/dcm.py +7 -8
- dodal/devices/i24/dual_backlight.py +5 -5
- dodal/devices/oav/oav_calculations.py +22 -0
- dodal/devices/oav/oav_detector.py +118 -97
- dodal/devices/oav/oav_parameters.py +50 -104
- dodal/devices/oav/oav_to_redis_forwarder.py +75 -34
- dodal/devices/oav/{grid_overlay.py → snapshots/grid_overlay.py} +0 -43
- dodal/devices/oav/snapshots/snapshot_with_beam_centre.py +64 -0
- dodal/devices/oav/snapshots/snapshot_with_grid.py +57 -0
- dodal/devices/oav/utils.py +26 -25
- dodal/devices/pgm.py +41 -0
- dodal/devices/qbpm.py +18 -0
- dodal/devices/robot.py +2 -2
- dodal/devices/smargon.py +2 -2
- dodal/devices/tetramm.py +2 -2
- dodal/devices/undulator.py +2 -1
- dodal/devices/util/adjuster_plans.py +1 -1
- dodal/devices/util/lookup_tables.py +4 -5
- dodal/devices/zebra.py +5 -2
- dodal/devices/zocalo/zocalo_results.py +13 -10
- dodal/plans/data_session_metadata.py +2 -2
- dodal/plans/motor_util_plans.py +11 -9
- dodal/utils.py +7 -0
- dodal/beamlines/i04_1.py +0 -140
- dodal/devices/oav/oav_errors.py +0 -35
- {dls_dodal-1.32.0.dist-info → dls_dodal-1.34.1.dist-info}/LICENSE +0 -0
- {dls_dodal-1.32.0.dist-info → dls_dodal-1.34.1.dist-info}/entry_points.txt +0 -0
- {dls_dodal-1.32.0.dist-info → dls_dodal-1.34.1.dist-info}/top_level.txt +0 -0
dodal/devices/oav/oav_errors.py
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Module for containing errors in operation of the OAV.
|
|
3
|
-
"""
|
|
4
|
-
|
|
5
|
-
from dodal.log import LOGGER
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class OAVError_ZoomLevelNotFound(Exception):
|
|
9
|
-
def __init__(self, errmsg):
|
|
10
|
-
LOGGER.error(errmsg)
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class OAVError_BeamPositionNotFound(Exception):
|
|
14
|
-
def __init__(self, errmsg):
|
|
15
|
-
LOGGER.error(errmsg)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
class OAVError_WaveformAllZero(Exception):
|
|
19
|
-
def __init__(self, errmsg):
|
|
20
|
-
LOGGER.error(errmsg)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
class OAVError_NoRotationsPassValidityTest(Exception):
|
|
24
|
-
def __init__(self, errmsg):
|
|
25
|
-
LOGGER.error(errmsg)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
class OAVError_MissingRotations(Exception):
|
|
29
|
-
def __init__(self, errmsg):
|
|
30
|
-
LOGGER.error(errmsg)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
class OAVError_TipDistanceExceedsMax(Exception):
|
|
34
|
-
def __init__(self, errmsg):
|
|
35
|
-
LOGGER.error(errmsg)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|