dls-dodal 1.45.0__py3-none-any.whl → 1.47.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.
Files changed (81) hide show
  1. {dls_dodal-1.45.0.dist-info → dls_dodal-1.47.0.dist-info}/METADATA +2 -2
  2. {dls_dodal-1.45.0.dist-info → dls_dodal-1.47.0.dist-info}/RECORD +76 -64
  3. {dls_dodal-1.45.0.dist-info → dls_dodal-1.47.0.dist-info}/WHEEL +1 -1
  4. dodal/_version.py +2 -2
  5. dodal/beamlines/__init__.py +0 -1
  6. dodal/beamlines/b07.py +2 -6
  7. dodal/beamlines/b07_1.py +1 -3
  8. dodal/beamlines/i03.py +16 -19
  9. dodal/beamlines/i04.py +49 -17
  10. dodal/beamlines/i09.py +1 -3
  11. dodal/beamlines/i09_1.py +1 -3
  12. dodal/beamlines/i18.py +7 -4
  13. dodal/beamlines/i22.py +3 -3
  14. dodal/beamlines/i23.py +75 -4
  15. dodal/beamlines/p38.py +4 -4
  16. dodal/beamlines/p60.py +2 -6
  17. dodal/beamlines/p99.py +48 -4
  18. dodal/common/beamlines/beamline_parameters.py +1 -2
  19. dodal/common/beamlines/beamline_utils.py +5 -0
  20. dodal/common/data_util.py +4 -0
  21. dodal/devices/aperturescatterguard.py +47 -47
  22. dodal/devices/common_dcm.py +77 -0
  23. dodal/devices/current_amplifiers/struck_scaler_counter.py +1 -1
  24. dodal/devices/diamond_filter.py +5 -17
  25. dodal/devices/eiger.py +1 -1
  26. dodal/devices/electron_analyser/__init__.py +8 -0
  27. dodal/devices/electron_analyser/abstract/__init__.py +28 -0
  28. dodal/devices/electron_analyser/abstract/base_detector.py +210 -0
  29. dodal/devices/electron_analyser/abstract/base_driver_io.py +121 -0
  30. dodal/devices/electron_analyser/{abstract_region.py → abstract/base_region.py} +2 -9
  31. dodal/devices/electron_analyser/specs/__init__.py +11 -0
  32. dodal/devices/electron_analyser/specs/detector.py +29 -0
  33. dodal/devices/electron_analyser/specs/driver_io.py +64 -0
  34. dodal/devices/electron_analyser/{specs_region.py → specs/region.py} +1 -1
  35. dodal/devices/electron_analyser/types.py +6 -0
  36. dodal/devices/electron_analyser/util.py +13 -0
  37. dodal/devices/electron_analyser/vgscienta/__init__.py +12 -0
  38. dodal/devices/electron_analyser/vgscienta/detector.py +36 -0
  39. dodal/devices/electron_analyser/vgscienta/driver_io.py +39 -0
  40. dodal/devices/electron_analyser/{vgscienta_region.py → vgscienta/region.py} +1 -1
  41. dodal/devices/fast_grid_scan.py +7 -9
  42. dodal/devices/i03/__init__.py +3 -0
  43. dodal/devices/{dcm.py → i03/dcm.py} +8 -12
  44. dodal/devices/{undulator_dcm.py → i03/undulator_dcm.py} +6 -4
  45. dodal/devices/i04/__init__.py +3 -0
  46. dodal/devices/i04/constants.py +9 -0
  47. dodal/devices/i04/murko_results.py +195 -0
  48. dodal/devices/i10/diagnostics.py +9 -61
  49. dodal/devices/i13_1/merlin.py +3 -4
  50. dodal/devices/i13_1/merlin_controller.py +1 -1
  51. dodal/devices/i22/dcm.py +10 -12
  52. dodal/devices/i24/dcm.py +8 -17
  53. dodal/devices/i24/focus_mirrors.py +9 -13
  54. dodal/devices/i24/pilatus_metadata.py +9 -9
  55. dodal/devices/i24/pmac.py +19 -14
  56. dodal/devices/{i03 → mx_phase1}/beamstop.py +6 -12
  57. dodal/devices/oav/oav_calculations.py +2 -2
  58. dodal/devices/oav/oav_detector.py +32 -22
  59. dodal/devices/oav/utils.py +2 -2
  60. dodal/devices/p99/andor2_point.py +41 -0
  61. dodal/devices/positioner.py +49 -0
  62. dodal/devices/tetramm.py +8 -6
  63. dodal/devices/turbo_slit.py +2 -2
  64. dodal/devices/util/adjuster_plans.py +1 -1
  65. dodal/devices/zebra/zebra.py +4 -0
  66. dodal/devices/zebra/zebra_constants_mapping.py +1 -1
  67. dodal/devices/zocalo/__init__.py +0 -3
  68. dodal/devices/zocalo/zocalo_results.py +6 -32
  69. dodal/log.py +14 -14
  70. dodal/plan_stubs/data_session.py +10 -1
  71. dodal/plan_stubs/electron_analyser/__init__.py +3 -0
  72. dodal/plan_stubs/electron_analyser/{configure_controller.py → configure_driver.py} +30 -18
  73. dodal/plans/verify_undulator_gap.py +2 -2
  74. dodal/common/signal_utils.py +0 -88
  75. dodal/devices/electron_analyser/abstract_analyser_io.py +0 -47
  76. dodal/devices/electron_analyser/specs_analyser_io.py +0 -19
  77. dodal/devices/electron_analyser/vgscienta_analyser_io.py +0 -26
  78. dodal/devices/logging_ophyd_device.py +0 -17
  79. {dls_dodal-1.45.0.dist-info → dls_dodal-1.47.0.dist-info}/entry_points.txt +0 -0
  80. {dls_dodal-1.45.0.dist-info → dls_dodal-1.47.0.dist-info}/licenses/LICENSE +0 -0
  81. {dls_dodal-1.45.0.dist-info → dls_dodal-1.47.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dls-dodal
3
- Version: 1.45.0
3
+ Version: 1.47.0
4
4
  Summary: Ophyd devices and other utils that could be used across DLS beamlines
5
5
  Author-email: Dominic Oram <dominic.oram@diamond.ac.uk>
6
6
  License: Apache License
@@ -216,7 +216,7 @@ Description-Content-Type: text/markdown
216
216
  License-File: LICENSE
217
217
  Requires-Dist: click
218
218
  Requires-Dist: ophyd
219
- Requires-Dist: ophyd-async>=0.10.0a1
219
+ Requires-Dist: ophyd-async>=0.10.0a3
220
220
  Requires-Dist: bluesky
221
221
  Requires-Dist: pyepics
222
222
  Requires-Dist: dataclasses-json
@@ -1,77 +1,76 @@
1
- dls_dodal-1.45.0.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1
+ dls_dodal-1.47.0.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
2
2
  dodal/__init__.py,sha256=Ksms_WJF8LTkbm38gEpm1jBpGqcQ8NGvmb2ZJlOE1j8,198
3
3
  dodal/__main__.py,sha256=kP2S2RPitnOWpNGokjZ1Yq-1umOtp5sNOZk2B3tBPLM,111
4
- dodal/_version.py,sha256=-lvg1BmUOhOAxrHg12BxBARo342x9HFCl64fpGxLs6c,513
4
+ dodal/_version.py,sha256=Y6iZU_PznDkAHl3CGWcR9NILK6pHF1FYft0mkB-5hKM,513
5
5
  dodal/cli.py,sha256=NieWNUgLUxyck1rHoFAPJjX1xXLzHNdQ-s4wvxYFfps,3757
6
- dodal/log.py,sha256=ry8WMq1S4WMIAPqtqGeKuegMRN7Jy3qdVTJlkpKXkL8,9503
6
+ dodal/log.py,sha256=Rt5O3hFZfMnJvQueZvgagQuXnPqHrFxhponOvVkpfrk,9871
7
7
  dodal/utils.py,sha256=rqQNalufZPxUPSD2SYuUgWSCpefb8FnqvR6N0t-YcEY,19675
8
8
  dodal/beamline_specific_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  dodal/beamline_specific_utils/i03.py,sha256=P6Ls4FoVtcacH0RJM3v6ZwwGx27oMppcBdW0la-ohTY,377
10
10
  dodal/beamlines/README.md,sha256=K9MkL_GomxlsoTB7Mz-_dJA5NNSbmCfMiutchGg3C8o,404
11
- dodal/beamlines/__init__.py,sha256=Iih4-UAWUBR-SrNiNZPLpxQsn26DVngfgH9WhIGX9fQ,3194
11
+ dodal/beamlines/__init__.py,sha256=lueGFb7cW1kDB_LfFavhrgYdjqGErCwAOk5XoU3BY00,3176
12
12
  dodal/beamlines/adsim.py,sha256=uOmFYZIGyput93XHk9R5ydZdxnTrS_wA2zSEm62UCVU,1930
13
13
  dodal/beamlines/aithre.py,sha256=1q7zeMYunOBIWCm203NIkCl5tgVl_-jMWc0f5af-W_E,263
14
14
  dodal/beamlines/b01_1.py,sha256=hHv9YJtUVmxAQ0UqF00-9wUYC_OtNo9awd04RM8b_HI,1993
15
- dodal/beamlines/b07.py,sha256=OM_zdHeFO49IITT9fFHB3aOW-gDtmZTm0zrSauphQbo,799
16
- dodal/beamlines/b07_1.py,sha256=o82BW38oNH8TLTscMgQYBSNOnvAiW8B9Z9DybDbvJ_k,763
15
+ dodal/beamlines/b07.py,sha256=Fxsn9YDKySnE3zZgtpD8-LSb4IzWlb5xd6sLTCRrvFU,740
16
+ dodal/beamlines/b07_1.py,sha256=nY5fMUDoxn91OG2miVh5cXNQDH8o881yMW9RfZMRlnQ,742
17
17
  dodal/beamlines/i02_1.py,sha256=d2IyqFMgeaSEyZYm7GMSjTKr7_02SakyC_oARx-XwnY,1204
18
- dodal/beamlines/i03.py,sha256=MS91uQArCsvg92eX_AR_DsUiRPQtnKkMgKV4ca1fosw,15259
19
- dodal/beamlines/i04.py,sha256=V0fgXfEJnkh0spDXelK6zwjFChN6VaV9_CtrxJLZx2E,12100
20
- dodal/beamlines/i09.py,sha256=DTmgtjUbzFZT3vrFLnPJhFb5h6U1YEXuNewucAAGgZ8,765
21
- dodal/beamlines/i09_1.py,sha256=pxgkcKBvetwVxXAm1KmlzBiK45GDdE30eO971w9zzoI,763
18
+ dodal/beamlines/i03.py,sha256=y-E_U9Zd8_qo8mslkdVEvuUK4b1nRqBzrmPh-vxhKOk,15037
19
+ dodal/beamlines/i04.py,sha256=T5UfRuA-I7W-JdSQf2jtPJUcFHKLTjLnM401tzUjuEY,13355
20
+ dodal/beamlines/i09.py,sha256=cr75vG65pgyWkEYdpcdpuuqAhN_tkmBiBqJn76lQN3k,744
21
+ dodal/beamlines/i09_1.py,sha256=UbBn1q4L8BZXjZ1rUZQImwO0zkIYqGd5T8FptlFFMyw,742
22
22
  dodal/beamlines/i10.py,sha256=k8tnUwAb6jX2xY8hgST3ZP4jX3s4I4ispL5M6HF-M5k,11221
23
23
  dodal/beamlines/i13_1.py,sha256=RF8AXBqVKPY7rVf4j1gOxcURAToYVk-Yo9t4FWyaphU,1650
24
- dodal/beamlines/i18.py,sha256=Y5qLniqUkbYHcGGLPdBbiMILQHonPT2oz5M1hKMGqzs,3434
24
+ dodal/beamlines/i18.py,sha256=1BL5QA744ZGuCc2IXdsy_ZD2UV9SVXlUYAiMtpy0YNk,3656
25
25
  dodal/beamlines/i19_1.py,sha256=3mxRQzMQrg2ppMN19EKqEV0bMs5pNtorQYgkBBWRPks,2838
26
26
  dodal/beamlines/i19_2.py,sha256=zairZIPj1mrs9-dG19CjdMEFeqztGmlyeBmIxj7Kl5I,2329
27
27
  dodal/beamlines/i19_optics.py,sha256=RztOdru0lvPXpaIXSUfzSsPVIuwAMKZsEA8vJFU4_Mk,1184
28
28
  dodal/beamlines/i20_1.py,sha256=Xp6XXofjXh3Yibrg5wSHet-pXikprJ9oprEhJg19OkI,1825
29
- dodal/beamlines/i22.py,sha256=XCAVBkZxN9cmxfpGoWaCvo77lu8hVIJ_e3BUc_qxdu0,7664
30
- dodal/beamlines/i23.py,sha256=JI9p3IJZ4t5QdpR5TCzPO1_z5kRd09OhosgFveFMsbg,1183
29
+ dodal/beamlines/i22.py,sha256=GAS1KgRrtpdXhYb7tIO3yHHMRcffxOqcSIaCZyexnDk,7595
30
+ dodal/beamlines/i23.py,sha256=pf3KmzLZYDVqUB4LkLcNJk6z9H4qkFpTdVB8_0MYehs,3066
31
31
  dodal/beamlines/i24.py,sha256=9rBQMCWGdKiRnFbcVvmjiBWiC9WJIJCtLh5m6LkHUtU,7096
32
- dodal/beamlines/p38.py,sha256=MwxBqYe_rUIj-MCRIFZpHJmR0JtA22bSFKfBpoDI9P0,5777
32
+ dodal/beamlines/p38.py,sha256=bka6zsZfFiBAD-rrLSmIIVAOAw0FvupSkhOHGEG77xo,5708
33
33
  dodal/beamlines/p45.py,sha256=2snO895TGwf4LbNIvg4BkvAGSfvZcevdpv_82MRpXKo,2129
34
- dodal/beamlines/p60.py,sha256=ybZwKvtsUoQvRwkSZvlK9I2PfAUI72JL3syCpt79O0k,674
35
- dodal/beamlines/p99.py,sha256=k24QhYpoOHBd0188Fu3wvmpT6dsu8okiIVqVVckdBkw,1063
34
+ dodal/beamlines/p60.py,sha256=IJQdemlEkvVMYcyqp2WkyEwPAQrjor33b52wrfEVDIs,615
35
+ dodal/beamlines/p99.py,sha256=hzKgFnJnsCPnVBQ9mAiWUOztLQXnlT5019k3qiMLqr8,2317
36
36
  dodal/beamlines/training_rig.py,sha256=TzJnKAfL8Nn5nxCyyt9D9-71YnrvmS8oyGavI_N-iv4,1954
37
37
  dodal/common/__init__.py,sha256=ZC4ICKUDB0BDxRaVy8nmqclVmDBne-dPtk6UJsoFq6I,258
38
38
  dodal/common/coordination.py,sha256=OxIjDiO1-9A9KESRPFtzwkvvQlavbgA5RHemlbubBPg,1168
39
39
  dodal/common/crystal_metadata.py,sha256=XGr-X81G9SZvPx5b4nBCH4FOnywyX_zYVy6zwDxIMVM,1926
40
- dodal/common/data_util.py,sha256=y3Dy2OyDKKZ9K8CK3MoAYxzy1-L_pSHXi3fIC52rDF4,451
40
+ dodal/common/data_util.py,sha256=Z2DgxQl3AzTB940e_qYVDIHuu_9vWzpbycjKb62SFus,555
41
41
  dodal/common/maths.py,sha256=K9x7iL3xXLtWYTV-xlFHDNSTIL9a2UP3Ws7wr6Dm2rQ,1803
42
- dodal/common/signal_utils.py,sha256=o9jTKNgObrEQGJPJJO1h-lKUzqroXupGYpwhzP0nJR4,3206
43
42
  dodal/common/types.py,sha256=fkL7UOwDbe3v2_VJ5f1W5RxR98Wx-Ra-LxUZWkNDtls,486
44
43
  dodal/common/udc_directory_provider.py,sha256=v5OBaCUwjtQZAsRQUw6LlVL58UvwwDO1l2MKlilXjdk,2403
45
44
  dodal/common/visit.py,sha256=BLpr3GrP7Ij95V135hRJLgg7gWtBKXVxyOibWtcO8RE,5782
46
45
  dodal/common/beamlines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- dodal/common/beamlines/beamline_parameters.py,sha256=oIPHooqu5vTAwfqZutsKbzwdi9nvFF8568Mz7jrK5rI,3618
48
- dodal/common/beamlines/beamline_utils.py,sha256=s_9A0woipsS8wEsn4FdaKppKAKEYKbSfL6XGpfKosLI,4977
46
+ dodal/common/beamlines/beamline_parameters.py,sha256=yQdChyUTQfCRpNRJvBkZZ_dxruvrwVGX-VJRMoznryg,3559
47
+ dodal/common/beamlines/beamline_utils.py,sha256=uy-HWchyUwoIqYYUWAd4BOPPoDzqvvtgkWQGzuKStTg,5061
49
48
  dodal/common/beamlines/device_helpers.py,sha256=lh7eih7KoFiqxo8PLQIDjbpBbhHuAXSeApt7K3KF9to,1002
50
49
  dodal/devices/CTAB.py,sha256=5_261Ox6NG2cJIzzwnjWz289BG0nZoE0wKOaI5V5jqM,1998
51
50
  dodal/devices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
51
  dodal/devices/adsim.py,sha256=vCexraF4zLssHdjfPod-XuQGJE_sWoCttFdx__HDS8w,488
53
52
  dodal/devices/aperture.py,sha256=yyw2ei3gM_lmZWDQ6VTbydB58RCDTen_nqBZyoTP2IM,583
54
- dodal/devices/aperturescatterguard.py,sha256=jmtiUg9lg3Erj9KmCvMKGI97LP0-f_hWLfNh7DTqJE4,12428
53
+ dodal/devices/aperturescatterguard.py,sha256=i2hLNyf5_7UOuySdkjckb9RWMZrGcZkOF7cfDUj4V-E,12216
55
54
  dodal/devices/apple2_undulator.py,sha256=R4KDgA4HcFj9zg1rPAEP9E0mKVzE06bhyxNRUrsi3Sw,20826
56
55
  dodal/devices/backlight.py,sha256=RcgeA1hE3Z_5jA-jH8S8uLMpBfZjenRLz1lx6HTYeAo,1653
57
56
  dodal/devices/baton.py,sha256=BnakfZxx3cIIX6Kxj8-abxn8Z9LaQODhcPbStbD0as4,485
58
57
  dodal/devices/bimorph_mirror.py,sha256=D5PkrOggJRVAnv38lTdy8rErKLu_O2juLEvSqwcotxY,4825
58
+ dodal/devices/common_dcm.py,sha256=8QSRE6Z10RQjfL3g4JZhyHRNI_aCKxWlzKSsDgiJHhE,3049
59
59
  dodal/devices/cryostream.py,sha256=K-ldpredpeDTzNt4qtQMg99nKJNjBYoXBbK0WJGexzw,656
60
- dodal/devices/dcm.py,sha256=JbyxLnrS68nnnv39l9XEWgJgXUBqxX6aFo19MZnL36E,2574
61
- dodal/devices/diamond_filter.py,sha256=A--RHd7WuH-IBhvCyENcRCTP4K-mm_Kqpa0pojpHZow,1098
62
- dodal/devices/eiger.py,sha256=RN3klVASvdTT_jer2HJHUCZWZBKoOUQQdTpsKdgTPfo,15836
60
+ dodal/devices/diamond_filter.py,sha256=hySd7HnLdplpPNvBrLddLjO_3LqgD8-99Zr__Sy_GbI,689
61
+ dodal/devices/eiger.py,sha256=pQmklNX9kVCT5DE0WhRd5bAsNNKEo_vfPZG-ZunW67Q,15836
63
62
  dodal/devices/eiger_odin.py,sha256=ytUH_18YuM1nJDhplS6OTdtADloYvHpO6ppENjVd4jU,7411
64
- dodal/devices/fast_grid_scan.py,sha256=eQK8Oh1jL_jjlaXpKadCG6nLCYQwk7hjvnyrWoDTc94,12048
63
+ dodal/devices/fast_grid_scan.py,sha256=iNSPcixbgL7jAXi16uJR8Ly2KUW1_Wq9c8sfBrUHnk8,11922
65
64
  dodal/devices/fluorescence_detector_motion.py,sha256=-1qCSvW0PdT0m6BcoLxrtc0OJ5UDIBsEe11EOLr-gFw,501
66
65
  dodal/devices/flux.py,sha256=1CDsq9yU2-ho8MfYBl50Tl9ABZwpUBHnV486PQXKNoQ,462
67
66
  dodal/devices/focusing_mirror.py,sha256=vdUPkwyCAZBSR3LQ-EojDOoxVy1ZmOaD_nevETbj7BA,6592
68
67
  dodal/devices/hutch_shutter.py,sha256=UvGpsiIQcNW8IGd8ZA8Omus30bSNcVFE1poqO3yK9TE,3859
69
68
  dodal/devices/ipin.py,sha256=eq5jlKw7WGQi8VLrAWpaAIsZmfiVf-5Q0td_B22H6A4,473
70
69
  dodal/devices/linkam3.py,sha256=2sf-_heIsDg4qmqae-w9C2Py8pG8bPB3mT0TFPQIzd0,3869
71
- dodal/devices/logging_ophyd_device.py,sha256=dUVE-XhWA56WUXez0mrc4sf322CXY3MVLreTycO5j_A,668
72
70
  dodal/devices/motors.py,sha256=WSNPt9Pi7f-16yDtzAHApLOlUh1Y0aqnFICJIy2zOEs,1671
73
71
  dodal/devices/p45.py,sha256=hoBPpnj3b-njKqmhjAUFb79AyM4qFbWC9tuN6Aa47Rk,1703
74
72
  dodal/devices/pgm.py,sha256=am-AST9iTqma1PkGOKLozqAokZWbJUbM3TNcqXzB-6A,1132
73
+ dodal/devices/positioner.py,sha256=qf_1uYOI1whS0U5sPA3O3mlZYKrPuW3i0gEKI_q-up0,1289
75
74
  dodal/devices/pressure_jump_cell.py,sha256=h5nMNtr2PMG_AKM6nOB7qNTYT70GRuiGBwC-Ol2Yby0,10548
76
75
  dodal/devices/qbpm.py,sha256=FfrWWAHHtYv3fGRT1qljyPpAwoHJYfbooT9CfKg-oXI,465
77
76
  dodal/devices/robot.py,sha256=4jiWZnPBz3DmvJJdEG6mKIrrWHty2a6bdbCv8KOn1HE,6009
@@ -82,11 +81,10 @@ dodal/devices/slits.py,sha256=b_7ku2sHlzhMHTvWrwiRwee6ufrbxNX9JB_Z0lvk15o,1105
82
81
  dodal/devices/smargon.py,sha256=tOHb9fjI8ZCIrboiC4OzS2j1QJDOKkAlQ2SORbBmaGo,4708
83
82
  dodal/devices/status.py,sha256=hVrJS1yooQo6PRumRACoIEh-SKBUKxvBlQl-MtLFUMQ,327
84
83
  dodal/devices/synchrotron.py,sha256=wLfClZ1lYQWA_D--UsM3NnKLG8bY8mvVsRYER6ob-Ew,2026
85
- dodal/devices/tetramm.py,sha256=1lNXtWlmq0Pc_gVGD77XrV3ECe38TornDJUXkq3H1i0,8524
84
+ dodal/devices/tetramm.py,sha256=cvlXiKwrvVgYNb3Kt2b_YyRMT5-fqMoKJrOGFNNR150,8643
86
85
  dodal/devices/thawer.py,sha256=mYrO9klUPYcSbpoUuJ4ZuZZEPcHWWaZ2px5jh8XNQ9Y,1675
87
- dodal/devices/turbo_slit.py,sha256=-WaiXziJ3TBaOOiVqtGeUk8CI3HSsCWoPDtEIhCPLug,1421
86
+ dodal/devices/turbo_slit.py,sha256=xhcnhfbdcTYSYozogw6Li4fF4ofoPsc350rEyrRdaNE,1460
88
87
  dodal/devices/undulator.py,sha256=ZCdMQ8PKnW7mFV1BmrprOt0aSBCZMSKAH-2yyVH5Ihk,5316
89
- dodal/devices/undulator_dcm.py,sha256=olg8FrIKWqGmhJMuzuvJXH-LQTGhKytvXHPso3Br7C0,2398
90
88
  dodal/devices/watsonmarlow323_pump.py,sha256=rwU94YE6esgGLYdh-pe8nBo_3tvgp6brrrbPDrqp5_M,1406
91
89
  dodal/devices/webcam.py,sha256=mef075ynDbzZ4pNAjfxR_9tdTTqF_rM7hAOVEEOV-Do,2408
92
90
  dodal/devices/xbpm_feedback.py,sha256=j8MHhhE0feoe6R54zPKqS5EbQ0bEDR-nOpLHzHhnHHQ,1156
@@ -101,24 +99,36 @@ dodal/devices/current_amplifiers/current_amplifier.py,sha256=erDVtstLNFVb4wdSqWw
101
99
  dodal/devices/current_amplifiers/current_amplifier_detector.py,sha256=YKA769KpU1V4GyYF3ckMgE8sXnaJyzRPUbBqIo7UruM,3968
102
100
  dodal/devices/current_amplifiers/femto.py,sha256=VIGWKSPyC8iYuToI12-Q0v10DjZcX3t8Vca7vXCAckM,4462
103
101
  dodal/devices/current_amplifiers/sr570.py,sha256=rYxMLmMKr3uQkz0l0bebTpLtJzCr3w4hmtJPgY0NBZ0,7550
104
- dodal/devices/current_amplifiers/struck_scaler_counter.py,sha256=lMKClJsxsWFX-dtdDN99N6IUHMKcoGlna54wUTYVVmE,2591
102
+ dodal/devices/current_amplifiers/struck_scaler_counter.py,sha256=3xTsqOCnLwb8o_YsFGbm0PilOe8HsR4Bz_rRZMDKy-Y,2575
105
103
  dodal/devices/detector/__init__.py,sha256=-RdACL3tzc3lLArWOoGNje48UUlv2fElOmGOz9yOuO0,317
106
104
  dodal/devices/detector/det_dim_constants.py,sha256=arBWvzMwybatdSiCMAiwB4Bq1dX-wkLi54xPPfTfQhY,2772
107
105
  dodal/devices/detector/det_dist_to_beam_converter.py,sha256=nSkhiEESyuzdrWoPu6h3C05DnOhCXa6DZd-9vU5JYc0,1625
108
106
  dodal/devices/detector/det_resolution.py,sha256=aQkKp24LpRGiwzPAQM3wLVa4ANw32HdrKc2kftHfKQA,3253
109
107
  dodal/devices/detector/detector.py,sha256=DqQvlgdjIdKErrZqgM9IH7drc-r6N8nhkFk7KwlgYAk,4815
110
108
  dodal/devices/detector/detector_motion.py,sha256=UGDQriDWRluDZOZh1mDX9w_fPjMD-_BGe11kA36Kezs,1616
111
- dodal/devices/electron_analyser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- dodal/devices/electron_analyser/abstract_analyser_io.py,sha256=jCcmc7wrU1cFm8g-6HjlhqL8Z8aRdGpe1EaBEYNwZR8,1821
113
- dodal/devices/electron_analyser/abstract_region.py,sha256=eVQaip15iNO0G6MTcVxsvrWpIqQ1iuW-1veQTW_IAt4,3678
114
- dodal/devices/electron_analyser/specs_analyser_io.py,sha256=dLBEzAvcbWnSwcHYG81QX0souhAyVuJS9ezBBJ2wiJ0,653
115
- dodal/devices/electron_analyser/specs_region.py,sha256=-jbWtui8xmxEXygpinyjuwT-1e2YWbdzfdVKZxwfLsU,857
116
- dodal/devices/electron_analyser/vgscienta_analyser_io.py,sha256=q1L8G_JTjjUxfW-rgBBtYg0NuIuD-6QRawMz7hblCOg,1053
117
- dodal/devices/electron_analyser/vgscienta_region.py,sha256=GYGvsvpMulwpMc-EVQEh4ZW7M3c35oz1_waXvyZRln8,2543
118
- dodal/devices/i03/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- dodal/devices/i03/beamstop.py,sha256=sJ2i9yEgaKPIbv23NNhUDTTIKIPN9MNfmwt2XqjBT1E,2806
109
+ dodal/devices/electron_analyser/__init__.py,sha256=rggAbDOvnckJQ1Ny9ujvzKEmJQSbQopioyi5mYZUMWE,168
110
+ dodal/devices/electron_analyser/types.py,sha256=2QObyZln7pvWyLgixabGGWvfs3aIF98gVSz2B4NS1OM,120
111
+ dodal/devices/electron_analyser/util.py,sha256=prZXwwxw3F3JD7S00WLuYTKQx04xvZqzpIC8xESdxJw,437
112
+ dodal/devices/electron_analyser/abstract/__init__.py,sha256=Ebxs4diLlkJKYLgY_wW2Chk_c7IZeuWi6LvMQRx4hiQ,834
113
+ dodal/devices/electron_analyser/abstract/base_detector.py,sha256=_j0qYnRj2G2njUT0uJCp6J_z1so4AHL0lwTW3kiRzl0,6659
114
+ dodal/devices/electron_analyser/abstract/base_driver_io.py,sha256=4LAxaQ9mPhVXd2tp8hHZ1UejbMS18guVgbdjt5UvaWA,4768
115
+ dodal/devices/electron_analyser/abstract/base_region.py,sha256=PfpauNttv2Iw9jKBxcweTX_0DfAOAxNPDkxQ8r-MLPw,3476
116
+ dodal/devices/electron_analyser/specs/__init__.py,sha256=BckNUYLcpysBXz4fBvD_sX4V-ekq_f5XsU2y_4vwUNQ,281
117
+ dodal/devices/electron_analyser/specs/detector.py,sha256=iNuBMq3rsYdtdGt5127umM6T1O28YugdfEo1ot6oAVY,1078
118
+ dodal/devices/electron_analyser/specs/driver_io.py,sha256=Cj-NW7ZvShBRdv_tRLqtlMQwZMADQ70Sv95gH3fCxdk,2604
119
+ dodal/devices/electron_analyser/specs/region.py,sha256=Z39jr_d28fQ13KQq7Z3NCeHVSM73rbCkDyZNXzDzPzI,862
120
+ dodal/devices/electron_analyser/vgscienta/__init__.py,sha256=OmcRhKF0UFkuNo1dQbI_0FNwvryAI8_pejvPEanRvbU,393
121
+ dodal/devices/electron_analyser/vgscienta/detector.py,sha256=Bubsl5PF7b4sJastxx4SDDmW86RkwH9XRtx4EEalQCM,1190
122
+ dodal/devices/electron_analyser/vgscienta/driver_io.py,sha256=es0ju6N8ST-z24o02FftwUKWyMHiGoSlgmPanItQshk,1800
123
+ dodal/devices/electron_analyser/vgscienta/region.py,sha256=4zLdKxGQvfM7PeTTg6gTxlFEkBMRB8XrVnP7HClPEzo,2548
124
+ dodal/devices/i03/__init__.py,sha256=Kvukapy4a5lUQ20qaCqYCJzKNaqJn2DfXP5nKZ_Pec8,118
125
+ dodal/devices/i03/dcm.py,sha256=zDcgxOdMRVOQZBGDsLaIlr7o4UJIK2vehPWHxAxt6VA,2268
126
+ dodal/devices/i03/undulator_dcm.py,sha256=c5H-17Dpt3pIMAlU9fHCnU59lYDnmgKk3qE2qR9gg44,2594
127
+ dodal/devices/i04/__init__.py,sha256=Kvukapy4a5lUQ20qaCqYCJzKNaqJn2DfXP5nKZ_Pec8,118
128
+ dodal/devices/i04/constants.py,sha256=jHZe5Aeph0_hCDJotMx7Yi8v_a_6jyoI6p60AQ8GvGM,271
129
+ dodal/devices/i04/murko_results.py,sha256=9otfp-fa3EVCtX6FXMM2oMXFMGypqnARI0nNq0ycRxY,7276
120
130
  dodal/devices/i04/transfocator.py,sha256=sVI4Bgv-2-DH4-F1nIXMp5Aktevrm3agZnCA-WgjmW8,3780
121
- dodal/devices/i10/diagnostics.py,sha256=TYqVtrCtf-IG-1e02D2nfq1R8jcYnaX1npKxqieLRDc,7018
131
+ dodal/devices/i10/diagnostics.py,sha256=5nnf1oFKtUJZa9Pewh1VxXpFecLscqTR2VakHKr_PaQ,5432
122
132
  dodal/devices/i10/i10_apple2.py,sha256=ErObNNE59NuYssde6ojWJb8wo3SVohkQsvK0Bjnf1T8,13192
123
133
  dodal/devices/i10/i10_setting_data.py,sha256=69XWgE-YNTiW7C3t67MNcTL5JDDhOo7h-X7DCTpFE5g,164
124
134
  dodal/devices/i10/mirrors.py,sha256=E0M5keGI3LGaDHyXQkCCyj6xmixNY1xTSkIaaYwtnP8,794
@@ -127,8 +137,8 @@ dodal/devices/i10/rasor/rasor_current_amp.py,sha256=hImaPI3veKiS5YVfYwv-qrQ1AYNB
127
137
  dodal/devices/i10/rasor/rasor_motors.py,sha256=0w31rKDuzRL-9tGbLDj0JZljaDjfXvKHQyzMs6fc3sw,1653
128
138
  dodal/devices/i10/rasor/rasor_scaler_cards.py,sha256=sfWJKNx6pq342PEAlmg_Yt_Tijq7mO1XFjcCDtToQiU,467
129
139
  dodal/devices/i13_1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
130
- dodal/devices/i13_1/merlin.py,sha256=ML-AzjvvO0kgpVv1vaG2hyVwrkfXeysF-mTvj7h8AoI,1015
131
- dodal/devices/i13_1/merlin_controller.py,sha256=FwKVesrDostoKGRJYTxvcfR1Bo16KtEeFXQgMVLNwvA,1452
140
+ dodal/devices/i13_1/merlin.py,sha256=mgTFSMJftRzLL-HXAUuJkOYxtyA3Rp8YX0L46JCb30Y,1019
141
+ dodal/devices/i13_1/merlin_controller.py,sha256=XkY8E3UkSzZb9Pw_Ic4bv1DYJvBVADS_3okjHvY4nH4,1453
132
142
  dodal/devices/i18/KBMirror.py,sha256=W4R3TeulSjosUqAFIIznyWzje_Y2AoEf9f8N-NkisYM,710
133
143
  dodal/devices/i18/diode.py,sha256=q8ddVYT7yDXwURzxw5gfXlGT1tFirNfHBmiKnpvvXHk,406
134
144
  dodal/devices/i18/table.py,sha256=f6OtVSqCFIpXyoHX97CPLpaVDVXUNc2EvgSFP3qVFKo,446
@@ -139,26 +149,27 @@ dodal/devices/i19/blueapi_device.py,sha256=Tsl4vsREz7FM2d-kKJK-9tGrYbyKq4SLxnMlE
139
149
  dodal/devices/i19/hutch_access.py,sha256=hnClUWCL1qTYzuBMmhXX85jiNak7mbYfyHEh54tZ27U,377
140
150
  dodal/devices/i19/shutter.py,sha256=Z3_UO3TmSczJrB8AcU5ohk8WlDN04a00XhSyDLAHvbc,1815
141
151
  dodal/devices/i20_1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- dodal/devices/i22/dcm.py,sha256=SQDh-Sj1OvplHZ9yTWblJwv8PJrUqxseDPupZOWmcLo,4701
152
+ dodal/devices/i22/dcm.py,sha256=IbK56lSvX3PZlYKVeH7mIbRK83-mhJEIoTn1zjQfScE,4494
143
153
  dodal/devices/i22/fswitch.py,sha256=LSMoo9aDkH0SLcojbUh2NxTWIpUXHZxauTqThc3XtSk,3073
144
154
  dodal/devices/i22/nxsas.py,sha256=lFB_h6ns6yETPFZjDghOMZLg16nDnWveMOJV34TDSYk,5994
145
155
  dodal/devices/i24/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
156
  dodal/devices/i24/aperture.py,sha256=XlnOyQsvdTom1dJHVUg8CUSthq3jlBlZFOUaa9b1eZ4,837
147
157
  dodal/devices/i24/beam_center.py,sha256=m6LWsG9e_lhtPfZ8pc_hoLNyTYQQGGdRNav8J_2scTo,483
148
158
  dodal/devices/i24/beamstop.py,sha256=89ncXUisia1rn1Faf5iWg3k0QW6Rm99j1vq9A8l9Xv8,1221
149
- dodal/devices/i24/dcm.py,sha256=Q3qqlgsiLJga2cgI8L4jczjyUgQixJh6QWg7shrFpTQ,1988
159
+ dodal/devices/i24/dcm.py,sha256=9eNCGq-lpyFAftLxLxlhG_enzVmrx1nbwMxGFP_UBvU,1354
150
160
  dodal/devices/i24/dual_backlight.py,sha256=CbQ9mYUNhhozVdNXqR5ac73tEIAWT2RnEpRwXB3EFog,2049
151
- dodal/devices/i24/focus_mirrors.py,sha256=vkDUxnvGG3vqrsDR90YM84U8_fPUesmiD5XE1Fb4k2c,1863
161
+ dodal/devices/i24/focus_mirrors.py,sha256=DYiYLpDw8FJ1LYHxLOxE_om5qGfUo2itzskgqhmQZlg,1763
152
162
  dodal/devices/i24/i24_detector_motion.py,sha256=_HgdsZqFYY0tKqUgMzViHaPEUFXL3WlXXioGvDehRUw,364
153
- dodal/devices/i24/pilatus_metadata.py,sha256=PAibx6V_JU57BWkiLtvgMI6nErU-_3DwaMSfJXaqomA,1831
154
- dodal/devices/i24/pmac.py,sha256=pghm0jM24N1GZ1EOazPEoSxcn6zyizp6E4H28jnUn1s,6862
163
+ dodal/devices/i24/pilatus_metadata.py,sha256=I-AR8vd67qf6p0vZnRPTv4aNPN5T4KpSt2Iog4_jvn0,1781
164
+ dodal/devices/i24/pmac.py,sha256=UTcJdTyzr7DL5XanjtjIopsxEyAPn9pv2jwgh2ksWV4,7078
155
165
  dodal/devices/i24/vgonio.py,sha256=sxSmcYZayVJPJz_D_91j9PmNor7Tbl1RGQFRrdtESlw,533
166
+ dodal/devices/mx_phase1/beamstop.py,sha256=r2buBXGWaZ4qSRSxKog_F6bbArq4dp-5-cUPn-0wJZU,2593
156
167
  dodal/devices/oav/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
- dodal/devices/oav/oav_calculations.py,sha256=tr3Z2pFT7v_enAiNuSZV0esPsiHfRGrj7t0-g_Ix5Do,2363
158
- dodal/devices/oav/oav_detector.py,sha256=cE7gx-5Ad8JVJjsnon9Rnb2cHcEA6Et9RHBn2IorIo4,4223
168
+ dodal/devices/oav/oav_calculations.py,sha256=qoaNz4MAdbpu0XHAkWTQ3rebFwsWfa8JA1eerUgISjA,2367
169
+ dodal/devices/oav/oav_detector.py,sha256=e5OnOp3MKr2mRhrtb8imcHO-CR-2GLhFsj5mHUCNOqc,4647
159
170
  dodal/devices/oav/oav_parameters.py,sha256=gGN73TQGUiRzlIO5YKiqCRkjpTKsV6LFGo7Eu4Vs82g,6074
160
171
  dodal/devices/oav/oav_to_redis_forwarder.py,sha256=pfhaW6Uo_1wDNfywyPkS5UTrY8yhkerhjgJfRMqrJRA,6259
161
- dodal/devices/oav/utils.py,sha256=3IvSTw6Ygkaz4Hzoz0eU2l6mljpq0NO57M15e-K4jOE,3182
172
+ dodal/devices/oav/utils.py,sha256=T-xg7J38ritzXwRrKjsWZ7daC_qR7aNhlbkXx75nJ8Q,3188
162
173
  dodal/devices/oav/pin_image_recognition/__init__.py,sha256=_eCq-rEtGNXVfrpahfKMLu53lEr49q5rtVqg0GhiODQ,6534
163
174
  dodal/devices/oav/pin_image_recognition/manual_test.py,sha256=h1Rto6ZDCB3jWhjSy9N8ECxRN583iYDJr9LxrTJ8kfE,903
164
175
  dodal/devices/oav/pin_image_recognition/utils.py,sha256=L9ypluYqeOFoS7gQuws-vTNc8LqaKl2ZIDNeQ2JaNpg,8592
@@ -167,41 +178,42 @@ dodal/devices/oav/snapshots/snapshot.py,sha256=VDHYxko97sATMKvD5wClgvN7WQUtUAjcX
167
178
  dodal/devices/oav/snapshots/snapshot_image_processing.py,sha256=wDxH9WPmB0nsotr49PUpw2Ke4l4RFxirrbpPzOUF9s4,2318
168
179
  dodal/devices/oav/snapshots/snapshot_with_grid.py,sha256=KAM7KjF0BzhGxx-MXd4Zc16IBbi1BF8S_VT8T84_2OY,2309
169
180
  dodal/devices/p99/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
+ dodal/devices/p99/andor2_point.py,sha256=zBoIou7VVzs-tAq3M29XL2xYV8aYZRKPYCGKRLk7MA0,1417
170
182
  dodal/devices/p99/sample_stage.py,sha256=DvHU556Gp0wFiufZiwY3o2W4xmsCL5uSwNnhd8HPAnc,528
171
183
  dodal/devices/training_rig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
184
  dodal/devices/training_rig/sample_stage.py,sha256=jktTp837ij8wor5LidE3AajCk95L7DebJotMlO7QwTE,355
173
185
  dodal/devices/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
- dodal/devices/util/adjuster_plans.py,sha256=uwlBu-NxAOF83DLJKGk7sqHjEBhOz9wtPHMAD2VCwow,902
186
+ dodal/devices/util/adjuster_plans.py,sha256=c40PFZpXFw0YmJLh9jU4VIb8vRxHyafZlmvprTKAOhM,824
175
187
  dodal/devices/util/epics_util.py,sha256=3_d0m7BTvN19WIKvz2XSMvoPdTdccg9Z2gOAL-52q4s,4692
176
188
  dodal/devices/util/lookup_tables.py,sha256=jH9f_D8JbTSqzL-RKHUWOORLt8lEoNQL3o9HpXE98TY,3476
177
189
  dodal/devices/util/test_utils.py,sha256=KEYkqyZrAyju438VCbtQ0Ujv-9GBuIuVGCgggDHUO9M,607
178
190
  dodal/devices/xspress3/xspress3.py,sha256=75RdPuHpES4Xi-Lcywz0XUhaN2G3vZSoc-dzgcxfNvs,4636
179
191
  dodal/devices/xspress3/xspress3_channel.py,sha256=w8tAx2lz5kJ_LeJ_eb_4o--Dtt8MRijsYNgDG6oEIVg,1626
180
192
  dodal/devices/zebra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
- dodal/devices/zebra/zebra.py,sha256=UPryxnhvEb9Y2hefYWbTZShmVKULghftHyO1LVJRLpI,9248
182
- dodal/devices/zebra/zebra_constants_mapping.py,sha256=DCWMvBFvmN90rBpZ4aOVF_hbKm4K6QWubsG811R-MK8,4170
193
+ dodal/devices/zebra/zebra.py,sha256=PpgGVrtb7t5QTNchEalSG3bPeOqf6tPzOUHoOyARWLY,9290
194
+ dodal/devices/zebra/zebra_constants_mapping.py,sha256=S2iXbmO3XVY5aYsTCi8Kw1YRJg5dGrdDaZppEeZN1Vk,4169
183
195
  dodal/devices/zebra/zebra_controlled_shutter.py,sha256=tcBq2WQxST9g2VrjVWu-tOomFX-zGLHLNDhYhL0DtHc,1871
184
- dodal/devices/zocalo/__init__.py,sha256=dRAZ9o7B9TACqyE7aanT3yzvqWtt019YgV5ZJY7Ylso,517
196
+ dodal/devices/zocalo/__init__.py,sha256=P9L31CzVJjXv3TQHau5qywYGFPTyopVaHLww8MOYnzc,440
185
197
  dodal/devices/zocalo/zocalo_constants.py,sha256=vu7Xjz7UNEpBUWEEBxDvP4bVFkZIN6NLGfQDpWbCjH8,98
186
198
  dodal/devices/zocalo/zocalo_interaction.py,sha256=GFukU9xqagQtVSDg5BrL23jxl1w8wjs4b4NLLqdFfpk,3584
187
- dodal/devices/zocalo/zocalo_results.py,sha256=cmKlgu-42CAu2X2aIgjxmfdUXypF4RHRNRcYTAE3orI,17096
199
+ dodal/devices/zocalo/zocalo_results.py,sha256=1OzVrO4YavOzVZfG18ccsoQAjVo9We172P1beERSD8Y,16095
188
200
  dodal/parameters/experiment_parameter_base.py,sha256=O7JamfuJ5cYHkPf9tsHJPqn-OMHTAGouigvM1cDFehE,313
189
201
  dodal/plan_stubs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
202
  dodal/plan_stubs/check_topup.py,sha256=3gyLHfHNQBCgEWuAg4QE-ONx7y2Do1vVv5HP8ss0Z1I,5371
191
- dodal/plan_stubs/data_session.py,sha256=PsRrGceZg7M5LkjQZ8DD2FlSX1fmoyhMPgLDXTEX3m4,1873
203
+ dodal/plan_stubs/data_session.py,sha256=Syc6XKaN1usf7bNWOez8_vAH3byrcROqskmBrSUWa4Y,2132
192
204
  dodal/plan_stubs/motor_utils.py,sha256=Mf8utOA_xmxUa2dLmQ1uRkdfyDTip7D8YcKeCBCQLUQ,4458
193
205
  dodal/plan_stubs/wrapped.py,sha256=kC8HH7bx3-sLYu2oieY_502tAdT2OECF8n-fqoL5Bfc,4266
194
- dodal/plan_stubs/electron_analyser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- dodal/plan_stubs/electron_analyser/configure_controller.py,sha256=wbQJc1Z0Vlzc5d0ektkaQGyyLM-PO6BOv4hjtfpqss0,2832
206
+ dodal/plan_stubs/electron_analyser/__init__.py,sha256=CBr0ikST8OfEu26TP3etKp_MxYg-0phwWPtMaUgczNE,163
207
+ dodal/plan_stubs/electron_analyser/configure_driver.py,sha256=7hx4mhE5vthb3Y30e1EslDI6_voU4NCssvsUBDfqhCs,3199
196
208
  dodal/plans/__init__.py,sha256=nH1jNxw3DzDMg9O8Uda0kqKIalRVEWBrq07OLY6Ey38,93
197
209
  dodal/plans/save_panda.py,sha256=1fumH7Ih8uDIv8ahAtgQ_vUuR3dz0sfUs4n9TEtEbSs,3053
198
210
  dodal/plans/scanspec.py,sha256=Q0AcvTKRT401iGMRDSqK-D523UX5_ofiVMZ_rNXKOx8,2074
199
- dodal/plans/verify_undulator_gap.py,sha256=mq2fHtc5o5rSgdTM2xhULOImfjwa6x29tPpeoLw4GcU,553
211
+ dodal/plans/verify_undulator_gap.py,sha256=OcDN09-eCoMzsmhKGxvzsH5EapG2zYz0yGCqUtQxLSc,568
200
212
  dodal/plans/wrapped.py,sha256=BPMw__RcWvk9v5XnhMsi9_k4KsDEbmXogzD2n1ecbUg,2098
201
213
  dodal/plans/preprocessors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
214
  dodal/plans/preprocessors/verify_undulator_gap.py,sha256=cBZEGq8TW1jrXFXB00iClQVXSEaE_jP_rHMY9WTgYyY,1813
203
- dls_dodal-1.45.0.dist-info/METADATA,sha256=I98zoUjSqxwMan-nd3YqR1yVzZXgKv8nixs6txVNz1E,16806
204
- dls_dodal-1.45.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
205
- dls_dodal-1.45.0.dist-info/entry_points.txt,sha256=bycw_EKUzup_rxfCetOwcauXV4kLln_OPpPT8jEnr-I,94
206
- dls_dodal-1.45.0.dist-info/top_level.txt,sha256=xIozdmZk_wmMV4wugpq9-6eZs0vgADNUKz3j2UAwlhc,6
207
- dls_dodal-1.45.0.dist-info/RECORD,,
215
+ dls_dodal-1.47.0.dist-info/METADATA,sha256=_bGWkGqNchQikp-Yd_gJM62yYhYkqGSCvljp9zJQ6g4,16806
216
+ dls_dodal-1.47.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
217
+ dls_dodal-1.47.0.dist-info/entry_points.txt,sha256=bycw_EKUzup_rxfCetOwcauXV4kLln_OPpPT8jEnr-I,94
218
+ dls_dodal-1.47.0.dist-info/top_level.txt,sha256=xIozdmZk_wmMV4wugpq9-6eZs0vgADNUKz3j2UAwlhc,6
219
+ dls_dodal-1.47.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
dodal/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '1.45.0'
21
- __version_tuple__ = version_tuple = (1, 45, 0)
20
+ __version__ = version = '1.47.0'
21
+ __version_tuple__ = version_tuple = (1, 47, 0)
@@ -16,7 +16,6 @@ _BEAMLINE_NAME_OVERRIDES = {
16
16
  "i19-1": "i19_1",
17
17
  "i19-2": "i19_2",
18
18
  "i19-optics": "i19_optics",
19
- "s03": "i03",
20
19
  "p46": "training_rig",
21
20
  "p47": "training_rig",
22
21
  "p48": "training_rig",
dodal/beamlines/b07.py CHANGED
@@ -2,9 +2,7 @@ from dodal.common.beamlines.beamline_utils import (
2
2
  device_factory,
3
3
  )
4
4
  from dodal.common.beamlines.beamline_utils import set_beamline as set_utils_beamline
5
- from dodal.devices.electron_analyser.specs_analyser_io import (
6
- SpecsAnalyserDriverIO,
7
- )
5
+ from dodal.devices.electron_analyser.specs import SpecsAnalyserDriverIO
8
6
  from dodal.devices.synchrotron import Synchrotron
9
7
  from dodal.log import set_beamline as set_log_beamline
10
8
  from dodal.utils import BeamlinePrefix, get_beamline_name
@@ -22,6 +20,4 @@ def synchrotron() -> Synchrotron:
22
20
 
23
21
  @device_factory()
24
22
  def analyser_driver() -> SpecsAnalyserDriverIO:
25
- return SpecsAnalyserDriverIO(
26
- name="analyser_driver", prefix=f"{PREFIX.beamline_prefix}-EA-DET-01:CAM:"
27
- )
23
+ return SpecsAnalyserDriverIO(prefix=f"{PREFIX.beamline_prefix}-EA-DET-01:CAM:")
dodal/beamlines/b07_1.py CHANGED
@@ -2,9 +2,7 @@ from dodal.common.beamlines.beamline_utils import (
2
2
  device_factory,
3
3
  )
4
4
  from dodal.common.beamlines.beamline_utils import set_beamline as set_utils_beamline
5
- from dodal.devices.electron_analyser.specs_analyser_io import (
6
- SpecsAnalyserDriverIO,
7
- )
5
+ from dodal.devices.electron_analyser.specs import SpecsAnalyserDriverIO
8
6
  from dodal.devices.synchrotron import Synchrotron
9
7
  from dodal.log import set_beamline as set_log_beamline
10
8
  from dodal.utils import BeamlinePrefix, get_beamline_name
dodal/beamlines/i03.py CHANGED
@@ -18,14 +18,15 @@ from dodal.devices.attenuator.attenuator import BinaryFilterAttenuator
18
18
  from dodal.devices.backlight import Backlight
19
19
  from dodal.devices.baton import Baton
20
20
  from dodal.devices.cryostream import CryoStream
21
- from dodal.devices.dcm import DCM
22
21
  from dodal.devices.detector.detector_motion import DetectorMotion
23
22
  from dodal.devices.diamond_filter import DiamondFilter, I03Filters
24
23
  from dodal.devices.eiger import EigerDetector
25
24
  from dodal.devices.fast_grid_scan import PandAFastGridScan, ZebraFastGridScan
26
25
  from dodal.devices.flux import Flux
27
26
  from dodal.devices.focusing_mirror import FocusingMirrorWithStripes, MirrorVoltages
28
- from dodal.devices.i03.beamstop import Beamstop
27
+ from dodal.devices.i03 import Beamstop
28
+ from dodal.devices.i03.dcm import DCM
29
+ from dodal.devices.i03.undulator_dcm import UndulatorDCM
29
30
  from dodal.devices.motors import XYZPositioner
30
31
  from dodal.devices.oav.oav_detector import OAV
31
32
  from dodal.devices.oav.oav_parameters import OAVConfig
@@ -37,7 +38,6 @@ from dodal.devices.smargon import Smargon
37
38
  from dodal.devices.synchrotron import Synchrotron
38
39
  from dodal.devices.thawer import Thawer
39
40
  from dodal.devices.undulator import Undulator
40
- from dodal.devices.undulator_dcm import UndulatorDCM
41
41
  from dodal.devices.webcam import Webcam
42
42
  from dodal.devices.xbpm_feedback import XBPMFeedback
43
43
  from dodal.devices.xspress3.xspress3 import Xspress3
@@ -58,7 +58,7 @@ ZOOM_PARAMS_FILE = (
58
58
  DISPLAY_CONFIG = "/dls_sw/i03/software/gda_versions/var/display.configuration"
59
59
  DAQ_CONFIGURATION_PATH = "/dls_sw/i03/software/daq_configuration"
60
60
 
61
- BL = get_beamline_name("s03")
61
+ BL = get_beamline_name("i03")
62
62
  set_log_beamline(BL)
63
63
  set_utils_beamline(BL)
64
64
 
@@ -67,7 +67,6 @@ set_path_provider(PandASubpathProvider())
67
67
  I03_ZEBRA_MAPPING = ZebraMapping(
68
68
  outputs=ZebraTTLOutputs(TTL_DETECTOR=1, TTL_SHUTTER=2, TTL_XSPRESS3=3, TTL_PANDA=4),
69
69
  sources=ZebraSources(),
70
- AND_GATE_FOR_AUTO_SHUTTER=2,
71
70
  )
72
71
 
73
72
  PREFIX = BeamlinePrefix(BL)
@@ -113,12 +112,12 @@ def dcm() -> DCM:
113
112
  If this is called when already instantiated in i03, it will return the existing object.
114
113
  """
115
114
  return DCM(
116
- f"{PREFIX.beamline_prefix}-MO-DCM-01:",
117
- "dcm",
115
+ prefix=f"{PREFIX.beamline_prefix}-MO-DCM-01:",
116
+ name="dcm",
118
117
  )
119
118
 
120
119
 
121
- @device_factory(skip=BL == "s03")
120
+ @device_factory()
122
121
  def vfm() -> FocusingMirrorWithStripes:
123
122
  return FocusingMirrorWithStripes(
124
123
  prefix=f"{PREFIX.beamline_prefix}-OP-VFM-01:",
@@ -130,7 +129,7 @@ def vfm() -> FocusingMirrorWithStripes:
130
129
  )
131
130
 
132
131
 
133
- @device_factory(skip=BL == "s03")
132
+ @device_factory()
134
133
  def mirror_voltages() -> MirrorVoltages:
135
134
  return MirrorVoltages(
136
135
  name="mirror_voltages",
@@ -147,7 +146,7 @@ def backlight() -> Backlight:
147
146
  return Backlight(prefix=PREFIX.beamline_prefix, name="backlight")
148
147
 
149
148
 
150
- @device_factory(skip=BL == "s03")
149
+ @device_factory()
151
150
  def detector_motion() -> DetectorMotion:
152
151
  """Get the i03 detector motion device, instantiate it if it hasn't already been.
153
152
  If this is called when already instantiated in i03, it will return the existing object.
@@ -158,7 +157,7 @@ def detector_motion() -> DetectorMotion:
158
157
  )
159
158
 
160
159
 
161
- @device_factory(skip=BL == "s03")
160
+ @device_factory()
162
161
  def eiger(mock: bool = False) -> EigerDetector:
163
162
  """Get the i03 Eiger device, instantiate it if it hasn't already been.
164
163
  If this is called when already instantiated in i03, it will return the existing object.
@@ -196,7 +195,7 @@ def panda_fast_grid_scan() -> PandAFastGridScan:
196
195
  )
197
196
 
198
197
 
199
- @device_factory(skip=BL == "s03")
198
+ @device_factory()
200
199
  def oav(
201
200
  params: OAVConfig | None = None,
202
201
  ) -> OAV:
@@ -210,7 +209,7 @@ def oav(
210
209
  )
211
210
 
212
211
 
213
- @device_factory(skip=BL == "s03")
212
+ @device_factory()
214
213
  def pin_tip_detection() -> PinTipDetection:
215
214
  """Get the i03 pin tip detection device, instantiate it if it hasn't already been.
216
215
  If this is called when already instantiated in i03, it will return the existing object.
@@ -240,7 +239,7 @@ def s4_slit_gaps() -> S4SlitGaps:
240
239
  )
241
240
 
242
241
 
243
- @device_factory(skip=BL == "s03")
242
+ @device_factory()
244
243
  def synchrotron() -> Synchrotron:
245
244
  """Get the i03 synchrotron device, instantiate it if it hasn't already been.
246
245
  If this is called when already instantiated in i03, it will return the existing object.
@@ -316,7 +315,7 @@ def panda() -> HDFPanda:
316
315
  )
317
316
 
318
317
 
319
- @device_factory(skip=BL == "s03")
318
+ @device_factory()
320
319
  def sample_shutter() -> ZebraShutter:
321
320
  """Get the i03 sample shutter device, instantiate it if it hasn't already been.
322
321
  If this is called when already instantiated in i03, it will return the existing object.
@@ -327,7 +326,7 @@ def sample_shutter() -> ZebraShutter:
327
326
  )
328
327
 
329
328
 
330
- @device_factory(skip=BL == "s03")
329
+ @device_factory()
331
330
  def flux() -> Flux:
332
331
  """Get the i03 flux device, instantiate it if it hasn't already been.
333
332
  If this is called when already instantiated in i03, it will return the existing object.
@@ -422,9 +421,7 @@ def diamond_filter() -> DiamondFilter[I03Filters]:
422
421
  If this is called when already instantiated in i03, it will return the existing object.
423
422
  """
424
423
  return DiamondFilter[I03Filters](
425
- prefix=f"{PREFIX.beamline_prefix}-MO-FLTR-01:",
426
- name="diamond_filter",
427
- data_type=I03Filters,
424
+ f"{PREFIX.beamline_prefix}-MO-FLTR-01:Y", I03Filters
428
425
  )
429
426
 
430
427
 
dodal/beamlines/i04.py CHANGED
@@ -1,7 +1,8 @@
1
- import os
2
-
3
1
  from dodal.common.beamlines.beamline_parameters import get_beamline_parameters
4
- from dodal.common.beamlines.beamline_utils import device_factory, device_instantiation
2
+ from dodal.common.beamlines.beamline_utils import (
3
+ device_factory,
4
+ device_instantiation,
5
+ )
5
6
  from dodal.common.beamlines.beamline_utils import set_beamline as set_utils_beamline
6
7
  from dodal.devices.aperturescatterguard import (
7
8
  AperturePosition,
@@ -10,19 +11,23 @@ from dodal.devices.aperturescatterguard import (
10
11
  )
11
12
  from dodal.devices.attenuator.attenuator import BinaryFilterAttenuator
12
13
  from dodal.devices.backlight import Backlight
13
- from dodal.devices.dcm import DCM
14
14
  from dodal.devices.detector import DetectorParams
15
15
  from dodal.devices.detector.detector_motion import DetectorMotion
16
16
  from dodal.devices.diamond_filter import DiamondFilter, I04Filters
17
17
  from dodal.devices.eiger import EigerDetector
18
18
  from dodal.devices.fast_grid_scan import ZebraFastGridScan
19
19
  from dodal.devices.flux import Flux
20
+ from dodal.devices.i03.dcm import DCM
21
+ from dodal.devices.i04.constants import RedisConstants
22
+ from dodal.devices.i04.murko_results import MurkoResultsDevice
20
23
  from dodal.devices.i04.transfocator import Transfocator
21
24
  from dodal.devices.ipin import IPin
22
25
  from dodal.devices.motors import XYZPositioner
26
+ from dodal.devices.mx_phase1.beamstop import Beamstop
23
27
  from dodal.devices.oav.oav_detector import OAV
24
28
  from dodal.devices.oav.oav_parameters import OAVConfig
25
29
  from dodal.devices.oav.oav_to_redis_forwarder import OAVToRedisForwarder
30
+ from dodal.devices.oav.pin_image_recognition import PinTipDetection
26
31
  from dodal.devices.robot import BartRobot
27
32
  from dodal.devices.s4_slit_gaps import S4SlitGaps
28
33
  from dodal.devices.smargon import Smargon
@@ -37,6 +42,7 @@ from dodal.devices.zebra.zebra_constants_mapping import (
37
42
  ZebraTTLOutputs,
38
43
  )
39
44
  from dodal.devices.zebra.zebra_controlled_shutter import ZebraShutter
45
+ from dodal.devices.zocalo import ZocaloResults
40
46
  from dodal.log import set_beamline as set_log_beamline
41
47
  from dodal.utils import BeamlinePrefix, get_beamline_name
42
48
 
@@ -46,9 +52,6 @@ ZOOM_PARAMS_FILE = (
46
52
  DISPLAY_CONFIG = "/dls_sw/i04/software/gda_versions/var/display.configuration"
47
53
  DAQ_CONFIGURATION_PATH = "/dls_sw/i04/software/daq_configuration"
48
54
 
49
- REDIS_HOST = "i04-valkey-murko.diamond.ac.uk"
50
- REDIS_PASSWORD = os.environ.get("VALKEY_PASSWORD", "test_redis_password")
51
- MURKO_REDIS_DB = 7
52
55
 
53
56
  BL = get_beamline_name("s04")
54
57
  set_log_beamline(BL)
@@ -107,13 +110,13 @@ def ipin() -> IPin:
107
110
 
108
111
 
109
112
  @device_factory()
110
- def beamstop() -> XYZPositioner:
113
+ def beamstop() -> Beamstop:
111
114
  """Get the i04 beamstop device, instantiate it if it hasn't already been.
112
115
  If this is called when already instantiated in i04, it will return the existing object.
113
116
  """
114
- return XYZPositioner(
117
+ return Beamstop(
115
118
  f"{PREFIX.beamline_prefix}-MO-BS-01:",
116
- "beamstop",
119
+ beamline_parameters=get_beamline_parameters(),
117
120
  )
118
121
 
119
122
 
@@ -350,19 +353,48 @@ def oav_to_redis_forwarder() -> OAVToRedisForwarder:
350
353
  return OAVToRedisForwarder(
351
354
  f"{PREFIX.beamline_prefix}-DI-OAV-01:",
352
355
  name="oav_to_redis_forwarder",
353
- redis_host=REDIS_HOST,
354
- redis_password=REDIS_PASSWORD,
355
- redis_db=7,
356
+ redis_host=RedisConstants.REDIS_HOST,
357
+ redis_password=RedisConstants.REDIS_PASSWORD,
358
+ redis_db=RedisConstants.MURKO_REDIS_DB,
359
+ )
360
+
361
+
362
+ @device_factory()
363
+ def murko_results() -> MurkoResultsDevice:
364
+ """Get the i04 OAV to redis forwarder, instantiate it if it hasn't already been.
365
+ If this is called when already instantiated in i04, it will return the existing object.
366
+ """
367
+ return MurkoResultsDevice(
368
+ name="murko_results",
369
+ redis_host=RedisConstants.REDIS_HOST,
370
+ redis_password=RedisConstants.REDIS_PASSWORD,
371
+ redis_db=RedisConstants.MURKO_REDIS_DB,
356
372
  )
357
373
 
358
374
 
359
375
  @device_factory()
360
376
  def diamond_filter() -> DiamondFilter[I04Filters]:
361
377
  """Get the i04 diamond filter device, instantiate it if it hasn't already been.
362
- If this is called when already instantiated in i03, it will return the existing object.
378
+ If this is called when already instantiated in i04, it will return the existing object.
363
379
  """
364
380
  return DiamondFilter[I04Filters](
365
- prefix=f"{PREFIX.beamline_prefix}-MO-FLTR-01:",
366
- name="diamond_filter",
367
- data_type=I04Filters,
381
+ f"{PREFIX.beamline_prefix}-MO-FLTR-01:Y", I04Filters
382
+ )
383
+
384
+
385
+ @device_factory()
386
+ def zocalo() -> ZocaloResults:
387
+ """Get the i04 ZocaloResults device, instantiate it if it hasn't already been.
388
+ If this is called when already instantiated in i04, it will return the existing object.
389
+ """
390
+ return ZocaloResults(channel="xrc.i04")
391
+
392
+
393
+ @device_factory()
394
+ def pin_tip_detection() -> PinTipDetection:
395
+ """Get the i04 pin tip detection device, instantiate it if it hasn't already been.
396
+ If this is called when already instantiated in i04, it will return the existing object.
397
+ """
398
+ return PinTipDetection(
399
+ f"{PREFIX.beamline_prefix}-DI-OAV-01:",
368
400
  )
dodal/beamlines/i09.py CHANGED
@@ -2,9 +2,7 @@ from dodal.common.beamlines.beamline_utils import (
2
2
  device_factory,
3
3
  )
4
4
  from dodal.common.beamlines.beamline_utils import set_beamline as set_utils_beamline
5
- from dodal.devices.electron_analyser.vgscienta_analyser_io import (
6
- VGScientaAnalyserDriverIO,
7
- )
5
+ from dodal.devices.electron_analyser.vgscienta import VGScientaAnalyserDriverIO
8
6
  from dodal.devices.synchrotron import Synchrotron
9
7
  from dodal.log import set_beamline as set_log_beamline
10
8
  from dodal.utils import BeamlinePrefix, get_beamline_name