dls-dodal 1.39.0__tar.gz → 1.41.0__tar.gz
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.41.0/.github/scripts/check_test_durations.py +30 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_test.yml +14 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.gitignore +4 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/PKG-INFO +5 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/conftest.py +1 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/pyproject.toml +7 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dls_dodal.egg-info/PKG-INFO +5 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dls_dodal.egg-info/SOURCES.txt +16 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dls_dodal.egg-info/requires.txt +4 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/_version.py +9 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/__init__.py +2 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/adsim.py +3 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/b01_1.py +3 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i03.py +141 -292
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i04.py +112 -198
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i13_1.py +5 -4
- dls_dodal-1.41.0/src/dodal/beamlines/i18.py +124 -0
- dls_dodal-1.41.0/src/dodal/beamlines/i19_1.py +74 -0
- dls_dodal-1.41.0/src/dodal/beamlines/i19_2.py +61 -0
- dls_dodal-1.41.0/src/dodal/beamlines/i20_1.py +58 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i22.py +7 -7
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i23.py +8 -11
- dls_dodal-1.41.0/src/dodal/beamlines/i24.py +228 -0
- dls_dodal-1.41.0/src/dodal/beamlines/p38.py +210 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/p45.py +5 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/training_rig.py +4 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/beamlines/beamline_utils.py +2 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/beamlines/device_helpers.py +3 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/aperturescatterguard.py +150 -64
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/apple2_undulator.py +89 -114
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/attenuator/attenuator.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/backlight.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/bimorph_mirror.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/eiger.py +3 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/fast_grid_scan.py +26 -19
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/hutch_shutter.py +26 -13
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i10/i10_apple2.py +3 -3
- dls_dodal-1.41.0/src/dodal/devices/i10/rasor/rasor_scaler_cards.py +12 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i13_1/merlin.py +4 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i13_1/merlin_controller.py +2 -7
- dls_dodal-1.41.0/src/dodal/devices/i18/KBMirror.py +19 -0
- dls_dodal-1.41.0/src/dodal/devices/i18/diode.py +17 -0
- dls_dodal-1.41.0/src/dodal/devices/i18/table.py +14 -0
- dls_dodal-1.41.0/src/dodal/devices/i18/thor_labs_stage.py +12 -0
- dls_dodal-1.41.0/src/dodal/devices/i19/shutter.py +57 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i22/nxsas.py +4 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/pmac.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/motors.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/oav_detector.py +10 -19
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/pressure_jump_cell.py +43 -19
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/robot.py +31 -12
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/tetramm.py +8 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/thawer.py +4 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/turbo_slit.py +7 -6
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/undulator.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/undulator_dcm.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/util/epics_util.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zebra/zebra.py +4 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zebra/zebra_controlled_shutter.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zocalo/zocalo_results.py +21 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plan_stubs/wrapped.py +10 -12
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plans/save_panda.py +30 -14
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/utils.py +55 -21
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_aperturescatterguard_system.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_oav_system.py +3 -10
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_oav_to_redis_system.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_undulator_system.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/beamlines/unit_tests/test_i24.py +0 -14
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/beamlines/unit_tests/test_mapping.py +1 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/beamlines/test_beamline_utils.py +4 -24
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/conftest.py +14 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i04/test_transfocator.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/test_i10Apple2.py +9 -9
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i13_1/test_merlin.py +6 -6
- dls_dodal-1.41.0/tests/devices/i18/test_kb_mirror.py +64 -0
- dls_dodal-1.41.0/tests/devices/i18/test_table.py +124 -0
- dls_dodal-1.41.0/tests/devices/i18/test_thor_labs_stage.py +62 -0
- dls_dodal-1.41.0/tests/devices/i19/test_shutter.py +76 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i22/test_dcm.py +38 -39
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i22/test_fswitch.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i22/test_metadataholder.py +6 -5
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/test_diamond_filter.py +5 -5
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/training_rig/test_sample_stage.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/conftest.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/current_amplifier/test_femto.py +4 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/current_amplifier/test_sr570.py +4 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/conftest.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/test_oav.py +0 -9
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/test_oav_to_redis_forwarder.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/test_snapshots.py +3 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/p99/test_p99_stage.py +3 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_aperture_scatterguard.py +145 -43
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_apple2_undulator.py +24 -16
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_attenuator.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_backlight.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_bart_robot.py +59 -10
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_bimorph_mirror.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_dcm.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_focusing_mirror.py +5 -5
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_gridscan.py +24 -4
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_hutch_shutter.py +20 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_linkam3.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_pressure_jump_cell.py +21 -16
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_qbpm.py +3 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_shutter.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_slits.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_smargon.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_synchrotron.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_tetramm.py +8 -8
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_thawer.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_undulator.py +17 -12
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_undulator_dcm.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_watsonmarlow323_pump.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_webcam.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_xbpm_feedback.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_xspress3.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_zebra_constants_mapping.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_zocalo_results.py +70 -33
- dls_dodal-1.41.0/tests/devices/unit_tests/util/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/util/test_save_panda.py +69 -21
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline.py +10 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_device_factory_beamline.py +14 -2
- dls_dodal-1.41.0/tests/fake_zocalo/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_zocalo/__main__.py +27 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plan_stubs/test_motor_util_plans.py +3 -3
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plan_stubs/test_topup_plan.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plan_stubs/test_wrapped_stubs.py +12 -8
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plans/conftest.py +5 -5
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plans/test_scanspec.py +1 -1
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/preprocessors/test_filesystem_metadata.py +2 -2
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_utils.py +170 -32
- dls_dodal-1.41.0/tests/unit_tests/__init__.py +0 -0
- dls_dodal-1.39.0/src/dodal/beamlines/i20_1.py +0 -43
- dls_dodal-1.39.0/src/dodal/beamlines/i24.py +0 -273
- dls_dodal-1.39.0/src/dodal/beamlines/p38.py +0 -346
- dls_dodal-1.39.0/src/dodal/devices/i10/rasor/rasor_scaler_cards.py +0 -12
- dls_dodal-1.39.0/tests/beamlines/unit_tests/test_i03.py +0 -14
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.copier-answers.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.devcontainer/devcontainer.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/CODEOWNERS +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/CONTRIBUTING.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/ISSUE_TEMPLATE/issue_template.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/actions/install_requirements/action.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/dependabot.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/pages/index.html +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/pages/make_switcher.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_check.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_dist.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_docs.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_pypi.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_release.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/_tox.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/ci.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.github/workflows/periodic.yml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.pre-commit-config.yaml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.vscode/extensions.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.vscode/launch.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.vscode/settings.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/.vscode/tasks.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/Dockerfile +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/LICENSE +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/README.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/catalog-info.yaml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/_templates/autosummary/class.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/_templates/autosummary/module.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/_templates/custom-module-template.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/assets/zocalo.png +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/conf.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/decisions/0001-record-architecture-decisions.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/decisions/0002-switched-to-python-copier-template.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/decisions/0003-codeowners.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/decisions/0003-make-devices-factory.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/decisions/COPYME +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/decisions.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations/reviews.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/explanations.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/genindex.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/build-docs.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/contribute.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/coverage.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/create-beamline.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/dev-install.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/excalidraw.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/lint.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/lock-requirements.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/make-new-ophyd-async-device.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/make-release.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/move-code.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/pypi.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/run-tests.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/static-analysis.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/update-template.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/write-tests.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to/zocalo.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/how-to.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/images/dls-logo.svg +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/images/excalidraw-example.svg +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/index.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/reference/api.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/reference/device-standards.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/reference/standards.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/reference.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/tutorials/get_started.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/tutorials/installation.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/docs/tutorials.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/pull_request_template.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/setup.cfg +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dls_dodal.egg-info/dependency_links.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dls_dodal.egg-info/entry_points.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dls_dodal.egg-info/top_level.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/__main__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamline_specific_utils/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamline_specific_utils/i03.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/README.md +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i02_1.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/i10.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/beamlines/p99.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/cli.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/beamlines/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/beamlines/beamline_parameters.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/coordination.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/crystal_metadata.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/maths.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/signal_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/types.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/udc_directory_provider.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/common/visit.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/CTAB.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/adsim.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/aperture.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/areadetector/plugins/CAM.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/areadetector/plugins/MJPG.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/attenuator/filter.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/attenuator/filter_selections.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/cryostream.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/current_amplifiers/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/current_amplifiers/current_amplifier.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/current_amplifiers/current_amplifier_detector.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/current_amplifiers/femto.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/current_amplifiers/sr570.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/current_amplifiers/struck_scaler_counter.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/dcm.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/detector/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/detector/det_dim_constants.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/detector/det_dist_to_beam_converter.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/detector/det_resolution.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/detector/detector.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/detector/detector_motion.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/diamond_filter.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/eiger_odin.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/fluorescence_detector_motion.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/flux.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/focusing_mirror.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i03/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i03/beamstop.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i04/transfocator.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i10/i10_setting_data.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i10/mirrors.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i10/rasor/rasor_current_amp.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i10/rasor/rasor_motors.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i10/slits.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i13_1/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i13_1/merlin_io.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/i20_1 → dls_dodal-1.41.0/src/dodal/devices/i19}/__init__.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/i24 → dls_dodal-1.41.0/src/dodal/devices/i20_1}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i22/dcm.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i22/fswitch.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/oav → dls_dodal-1.41.0/src/dodal/devices/i24}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/aperture.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/beam_center.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/beamstop.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/dcm.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/dual_backlight.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/focus_mirrors.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/i24_detector_motion.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/pilatus_metadata.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/i24/vgonio.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/ipin.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/linkam3.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/logging_ophyd_device.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/p99 → dls_dodal-1.41.0/src/dodal/devices/oav}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/microns_for_zoom_levels.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/oav_calculations.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/oav_parameters.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/oav_to_redis_forwarder.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/pin_image_recognition/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/pin_image_recognition/manual_test.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/pin_image_recognition/utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/snapshots/grid_overlay.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/snapshots/snapshot_with_beam_centre.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/snapshots/snapshot_with_grid.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/oav/utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/p45.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/training_rig → dls_dodal-1.41.0/src/dodal/devices/p99}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/p99/sample_stage.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/pgm.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/qbpm.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/s4_slit_gaps.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/scatterguard.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/scintillator.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/slits.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/smargon.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/status.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/synchrotron.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/util → dls_dodal-1.41.0/src/dodal/devices/training_rig}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/training_rig/sample_stage.py +0 -0
- {dls_dodal-1.39.0/src/dodal/devices/zebra → dls_dodal-1.41.0/src/dodal/devices/util}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/util/adjuster_plans.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/util/lookup_tables.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/util/motor_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/util/test_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/watsonmarlow323_pump.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/webcam.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/xbpm_feedback.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/xspress3/xspress3.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/xspress3/xspress3_channel.py +0 -0
- {dls_dodal-1.39.0/src/dodal/plan_stubs → dls_dodal-1.41.0/src/dodal/devices/zebra}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zebra/zebra_constants_mapping.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zocalo/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zocalo/zocalo_constants.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/devices/zocalo/zocalo_interaction.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/log.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/parameters/experiment_parameter_base.py +0 -0
- {dls_dodal-1.39.0/system_tests → dls_dodal-1.41.0/src/dodal/plan_stubs}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plan_stubs/check_topup.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plan_stubs/data_session.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plan_stubs/motor_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plans/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plans/scanspec.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/src/dodal/plans/wrapped.py +0 -0
- {dls_dodal-1.39.0/tests → dls_dodal-1.41.0/system_tests}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_adsim.py +0 -0
- {dls_dodal-1.39.0/tests → dls_dodal-1.41.0/system_tests}/test_cli.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_eiger_system.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_gridscan_system.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_slit_gaps_system.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_smargon_system.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_synchrotron_system.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_zebra_system.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/system_tests/test_zocalo_results.py +0 -0
- {dls_dodal-1.39.0/tests/beamlines → dls_dodal-1.41.0/tests}/__init__.py +0 -0
- {dls_dodal-1.39.0/tests/beamlines/unit_tests → dls_dodal-1.41.0/tests/beamlines}/__init__.py +0 -0
- {dls_dodal-1.39.0/tests/common → dls_dodal-1.41.0/tests/beamlines/unit_tests}/__init__.py +0 -0
- /dls_dodal-1.39.0/tests/common/beamlines/__init__.py → /dls_dodal-1.41.0/tests/beamlines/unit_tests/test_i03.py +0 -0
- {dls_dodal-1.39.0/tests/devices → dls_dodal-1.41.0/tests/common}/__init__.py +0 -0
- {dls_dodal-1.39.0/tests/devices/i03 → dls_dodal-1.41.0/tests/common/beamlines}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/beamlines/test_beamline_parameters.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/beamlines/test_device_helpers.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/beamlines/test_device_instantiation.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/test_coordination.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/test_crystal_metadata.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/test_maths.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/test_udc_directory_provider.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/common/test_visit.py +0 -0
- {dls_dodal-1.39.0/tests/devices/i04 → dls_dodal-1.41.0/tests/devices}/__init__.py +0 -0
- {dls_dodal-1.39.0/tests/devices/unit_tests → dls_dodal-1.41.0/tests/devices/i03}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i03/test_beamstop.py +0 -0
- {dls_dodal-1.39.0/tests/devices/unit_tests/i24 → dls_dodal-1.41.0/tests/devices/i04}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/lookupTables/IDEnergy2GapCalibrations.csv +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/lookupTables/IDEnergy2PhaseCalibrations.csv +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/lookupTables/expectedIDEnergy2GapCalibrationsIdd.pkl +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/lookupTables/expectedIDEnergy2GapCalibrationsIdu.pkl +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/lookupTables/expectedIDEnergy2PhaseCalibrationsidd.pkl +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/i10/lookupTables/expectedIDEnergy2PhaseCalibrationsidu.pkl +0 -0
- {dls_dodal-1.39.0/tests/devices/unit_tests/oav → dls_dodal-1.41.0/tests/devices/i19}/__init__.py +0 -0
- {dls_dodal-1.39.0/tests/devices/unit_tests/util → dls_dodal-1.41.0/tests/devices/unit_tests}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/detector/test_det_dim_constants.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/detector/test_det_resolution.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/detector/test_detector.py +0 -0
- {dls_dodal-1.39.0/tests/fake_zocalo → dls_dodal-1.41.0/tests/devices/unit_tests/i24}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/i24/test_dual_backlight.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/i24/test_focus_mirrors.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/i24/test_pilatus_metadata.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/i24/test_pmac.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/i24/test_vgonio.py +0 -0
- {dls_dodal-1.39.0/tests/unit_tests → dls_dodal-1.41.0/tests/devices/unit_tests/oav}/__init__.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/image_recognition/test_pin_tip_detect.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/image_recognition/test_pin_tip_detect_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/test_grid_overlay.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/test_oav_parameters.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/oav/test_oav_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_OAVCentring.json +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_aperture.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_beam_converter.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_beamline_undulator_to_gap_lookup_table.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_daq_configuration/domain/beamlineParameters +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_daq_configuration/lookup/BeamLineEnergy_DCM_Pitch_converter.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_daq_configuration/lookup/BeamLineEnergy_DCM_Roll_converter.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_display.configuration +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_eiger.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_jCameraManZoomLevels.xml +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_lookup_table.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_lookup_table_2.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_odin.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_status.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_zebra.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/test_zocalo_interaction.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/util/test_adjuster_plans.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/util/test_beamline_specific_utils.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/devices/unit_tests/util/test_lookup_tables.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline_all_devices_raise_exception.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline_broken_dependency.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline_dependencies.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline_disordered_dependencies.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline_misbehaving_builtins.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_beamline_some_devices_working.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_zocalo/README.rst +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/fake_zocalo/dls_start_fake_zocalo.sh +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plans/test_compliance.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/plans/test_wrapped.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/bad_beamlineParameters +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/i04_beamlineParameters +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_beamline_dcm_roll_converter.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_beamline_dcm_roll_converter_non_monotonic.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_beamline_dcm_roll_converter_reversed.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_beamline_parameters.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_det_dist_converter.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_images/oav_snapshot_expected.png +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/test_images/oav_snapshot_test.png +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/topup_long_delay.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/test_data/topup_short_params.txt +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/unit_tests/test_cli.py +0 -0
- {dls_dodal-1.39.0 → dls_dodal-1.41.0}/tests/unit_tests/test_log.py +0 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
# Get report filename and threshold from command-line arguments
|
|
5
|
+
REPORT_FILE = sys.argv[1] if len(sys.argv) > 1 else "report.json"
|
|
6
|
+
THRESHOLD = float(sys.argv[2]) if len(sys.argv) > 2 else 1.0
|
|
7
|
+
|
|
8
|
+
try:
|
|
9
|
+
with open(REPORT_FILE) as f:
|
|
10
|
+
data = json.load(f)
|
|
11
|
+
except FileNotFoundError:
|
|
12
|
+
print(f"❌ Error: Report file '{REPORT_FILE}' not found.")
|
|
13
|
+
sys.exit(1)
|
|
14
|
+
except json.JSONDecodeError:
|
|
15
|
+
print(f"❌ Error: Failed to parse JSON in '{REPORT_FILE}'.")
|
|
16
|
+
sys.exit(1)
|
|
17
|
+
|
|
18
|
+
slow_tests = [
|
|
19
|
+
(t["nodeid"], t["call"]["duration"])
|
|
20
|
+
for t in data.get("tests", [])
|
|
21
|
+
if "call" in t and t["call"]["duration"] > THRESHOLD
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
if slow_tests:
|
|
25
|
+
print(f"❌ The following tests exceeded the {THRESHOLD:.2f}s threshold:")
|
|
26
|
+
for test, duration in slow_tests:
|
|
27
|
+
print(f" - {test}: {duration:.2f}s")
|
|
28
|
+
sys.exit(1)
|
|
29
|
+
|
|
30
|
+
print("✅ All tests ran within the acceptable time limit.")
|
|
@@ -50,13 +50,24 @@ jobs:
|
|
|
50
50
|
python-version: ${{ inputs.python-version }}
|
|
51
51
|
pip-install: ".[dev]"
|
|
52
52
|
|
|
53
|
-
- name: Run tests
|
|
54
|
-
run: tox -e
|
|
53
|
+
- name: Run unit tests
|
|
54
|
+
run: tox -e unit-report
|
|
55
|
+
|
|
56
|
+
- name: Check unit test durations
|
|
57
|
+
run: |
|
|
58
|
+
python .github/scripts/check_test_durations.py unit-report.json 1
|
|
59
|
+
|
|
60
|
+
- name: Run system tests
|
|
61
|
+
run: tox -e system-report
|
|
62
|
+
|
|
63
|
+
- name: Check system test durations
|
|
64
|
+
run: |
|
|
65
|
+
python .github/scripts/check_test_durations.py system-report.json 5
|
|
55
66
|
|
|
56
67
|
- name: Upload coverage to Codecov
|
|
57
68
|
uses: codecov/codecov-action@v4
|
|
58
69
|
with:
|
|
59
70
|
name: ${{ inputs.python-version }}/${{ inputs.runs-on }}
|
|
60
|
-
files:
|
|
71
|
+
files: ./unit_cov.xml,./system_cov.xml
|
|
61
72
|
env:
|
|
62
73
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: dls-dodal
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.41.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
|
|
219
|
+
Requires-Dist: ophyd-async>=0.9.0a2
|
|
220
220
|
Requires-Dist: bluesky
|
|
221
221
|
Requires-Dist: pyepics
|
|
222
222
|
Requires-Dist: dataclasses-json
|
|
@@ -238,6 +238,7 @@ Provides-Extra: dev
|
|
|
238
238
|
Requires-Dist: black; extra == "dev"
|
|
239
239
|
Requires-Dist: diff-cover; extra == "dev"
|
|
240
240
|
Requires-Dist: import-linter; extra == "dev"
|
|
241
|
+
Requires-Dist: ispyb; extra == "dev"
|
|
241
242
|
Requires-Dist: mypy; extra == "dev"
|
|
242
243
|
Requires-Dist: myst-parser; extra == "dev"
|
|
243
244
|
Requires-Dist: ophyd_async[sim]; extra == "dev"
|
|
@@ -245,10 +246,11 @@ Requires-Dist: pipdeptree; extra == "dev"
|
|
|
245
246
|
Requires-Dist: pre-commit; extra == "dev"
|
|
246
247
|
Requires-Dist: psutil; extra == "dev"
|
|
247
248
|
Requires-Dist: pydata-sphinx-theme>=0.12; extra == "dev"
|
|
248
|
-
Requires-Dist: pyright; extra == "dev"
|
|
249
|
+
Requires-Dist: pyright==1.1.394; extra == "dev"
|
|
249
250
|
Requires-Dist: pytest; extra == "dev"
|
|
250
251
|
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
251
252
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
253
|
+
Requires-Dist: pytest-json-report; extra == "dev"
|
|
252
254
|
Requires-Dist: pytest-random-order; extra == "dev"
|
|
253
255
|
Requires-Dist: ruff; extra == "dev"
|
|
254
256
|
Requires-Dist: sphinx<7.4.6; extra == "dev"
|
|
@@ -15,7 +15,7 @@ description = "Ophyd devices and other utils that could be used across DLS beaml
|
|
|
15
15
|
dependencies = [
|
|
16
16
|
"click",
|
|
17
17
|
"ophyd",
|
|
18
|
-
"ophyd-async
|
|
18
|
+
"ophyd-async >= 0.9.0a2",
|
|
19
19
|
"bluesky",
|
|
20
20
|
"pyepics",
|
|
21
21
|
"dataclasses-json",
|
|
@@ -45,6 +45,7 @@ dev = [
|
|
|
45
45
|
"black",
|
|
46
46
|
"diff-cover",
|
|
47
47
|
"import-linter",
|
|
48
|
+
"ispyb",
|
|
48
49
|
"mypy",
|
|
49
50
|
# Commented out due to dependency version conflict with pydantic 1.x
|
|
50
51
|
# "copier",
|
|
@@ -54,10 +55,11 @@ dev = [
|
|
|
54
55
|
"pre-commit",
|
|
55
56
|
"psutil",
|
|
56
57
|
"pydata-sphinx-theme>=0.12",
|
|
57
|
-
"pyright",
|
|
58
|
+
"pyright==1.1.394", # See https://github.com/DiamondLightSource/dodal/issues/1079
|
|
58
59
|
"pytest",
|
|
59
60
|
"pytest-asyncio",
|
|
60
61
|
"pytest-cov",
|
|
62
|
+
"pytest-json-report",
|
|
61
63
|
"pytest-random-order",
|
|
62
64
|
"ruff",
|
|
63
65
|
"sphinx<7.4.6", # pinned due to https://github.com/sphinx-doc/sphinx/issues/12660
|
|
@@ -141,7 +143,7 @@ legacy_tox_ini = """
|
|
|
141
143
|
[tox]
|
|
142
144
|
skipsdist=True
|
|
143
145
|
|
|
144
|
-
[testenv:{pre-commit,type-checking,tests,docs}]
|
|
146
|
+
[testenv:{pre-commit,type-checking,tests,docs,unit-report,system-report}]
|
|
145
147
|
# Don't create a virtualenv for the command, requires tox-direct plugin
|
|
146
148
|
direct = True
|
|
147
149
|
passenv = *
|
|
@@ -156,6 +158,8 @@ commands =
|
|
|
156
158
|
type-checking: pyright src tests {posargs}
|
|
157
159
|
pre-commit: pre-commit run --all-files --show-diff-on-failure {posargs}
|
|
158
160
|
docs: sphinx-{posargs:build -E} -T docs build/html
|
|
161
|
+
unit-report: pytest -m 'not (s03 or adsim)' --cov=dodal --cov-report term --cov-report xml:unit_cov.xml --json-report --json-report-file=unit-report.json tests {posargs}
|
|
162
|
+
system-report: pytest -m 'not (s03 or adsim)' --cov=dodal --cov-report term --cov-report xml:system_cov.xml --json-report --json-report-file=system-report.json system_tests {posargs}
|
|
159
163
|
"""
|
|
160
164
|
|
|
161
165
|
[tool.ruff]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: dls-dodal
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.41.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
|
|
219
|
+
Requires-Dist: ophyd-async>=0.9.0a2
|
|
220
220
|
Requires-Dist: bluesky
|
|
221
221
|
Requires-Dist: pyepics
|
|
222
222
|
Requires-Dist: dataclasses-json
|
|
@@ -238,6 +238,7 @@ Provides-Extra: dev
|
|
|
238
238
|
Requires-Dist: black; extra == "dev"
|
|
239
239
|
Requires-Dist: diff-cover; extra == "dev"
|
|
240
240
|
Requires-Dist: import-linter; extra == "dev"
|
|
241
|
+
Requires-Dist: ispyb; extra == "dev"
|
|
241
242
|
Requires-Dist: mypy; extra == "dev"
|
|
242
243
|
Requires-Dist: myst-parser; extra == "dev"
|
|
243
244
|
Requires-Dist: ophyd_async[sim]; extra == "dev"
|
|
@@ -245,10 +246,11 @@ Requires-Dist: pipdeptree; extra == "dev"
|
|
|
245
246
|
Requires-Dist: pre-commit; extra == "dev"
|
|
246
247
|
Requires-Dist: psutil; extra == "dev"
|
|
247
248
|
Requires-Dist: pydata-sphinx-theme>=0.12; extra == "dev"
|
|
248
|
-
Requires-Dist: pyright; extra == "dev"
|
|
249
|
+
Requires-Dist: pyright==1.1.394; extra == "dev"
|
|
249
250
|
Requires-Dist: pytest; extra == "dev"
|
|
250
251
|
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
251
252
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
253
|
+
Requires-Dist: pytest-json-report; extra == "dev"
|
|
252
254
|
Requires-Dist: pytest-random-order; extra == "dev"
|
|
253
255
|
Requires-Dist: ruff; extra == "dev"
|
|
254
256
|
Requires-Dist: sphinx<7.4.6; extra == "dev"
|
|
@@ -16,6 +16,7 @@ pyproject.toml
|
|
|
16
16
|
.github/actions/install_requirements/action.yml
|
|
17
17
|
.github/pages/index.html
|
|
18
18
|
.github/pages/make_switcher.py
|
|
19
|
+
.github/scripts/check_test_durations.py
|
|
19
20
|
.github/workflows/_check.yml
|
|
20
21
|
.github/workflows/_dist.yml
|
|
21
22
|
.github/workflows/_docs.yml
|
|
@@ -95,6 +96,9 @@ src/dodal/beamlines/i03.py
|
|
|
95
96
|
src/dodal/beamlines/i04.py
|
|
96
97
|
src/dodal/beamlines/i10.py
|
|
97
98
|
src/dodal/beamlines/i13_1.py
|
|
99
|
+
src/dodal/beamlines/i18.py
|
|
100
|
+
src/dodal/beamlines/i19_1.py
|
|
101
|
+
src/dodal/beamlines/i19_2.py
|
|
98
102
|
src/dodal/beamlines/i20_1.py
|
|
99
103
|
src/dodal/beamlines/i22.py
|
|
100
104
|
src/dodal/beamlines/i23.py
|
|
@@ -188,6 +192,12 @@ src/dodal/devices/i13_1/__init__.py
|
|
|
188
192
|
src/dodal/devices/i13_1/merlin.py
|
|
189
193
|
src/dodal/devices/i13_1/merlin_controller.py
|
|
190
194
|
src/dodal/devices/i13_1/merlin_io.py
|
|
195
|
+
src/dodal/devices/i18/KBMirror.py
|
|
196
|
+
src/dodal/devices/i18/diode.py
|
|
197
|
+
src/dodal/devices/i18/table.py
|
|
198
|
+
src/dodal/devices/i18/thor_labs_stage.py
|
|
199
|
+
src/dodal/devices/i19/__init__.py
|
|
200
|
+
src/dodal/devices/i19/shutter.py
|
|
191
201
|
src/dodal/devices/i20_1/__init__.py
|
|
192
202
|
src/dodal/devices/i22/dcm.py
|
|
193
203
|
src/dodal/devices/i22/fswitch.py
|
|
@@ -249,6 +259,7 @@ src/dodal/plans/wrapped.py
|
|
|
249
259
|
system_tests/__init__.py
|
|
250
260
|
system_tests/test_adsim.py
|
|
251
261
|
system_tests/test_aperturescatterguard_system.py
|
|
262
|
+
system_tests/test_cli.py
|
|
252
263
|
system_tests/test_eiger_system.py
|
|
253
264
|
system_tests/test_gridscan_system.py
|
|
254
265
|
system_tests/test_oav_system.py
|
|
@@ -269,7 +280,6 @@ tests/fake_beamline_disordered_dependencies.py
|
|
|
269
280
|
tests/fake_beamline_misbehaving_builtins.py
|
|
270
281
|
tests/fake_beamline_some_devices_working.py
|
|
271
282
|
tests/fake_device_factory_beamline.py
|
|
272
|
-
tests/test_cli.py
|
|
273
283
|
tests/test_utils.py
|
|
274
284
|
tests/beamlines/__init__.py
|
|
275
285
|
tests/beamlines/unit_tests/__init__.py
|
|
@@ -301,6 +311,11 @@ tests/devices/i10/lookupTables/expectedIDEnergy2GapCalibrationsIdu.pkl
|
|
|
301
311
|
tests/devices/i10/lookupTables/expectedIDEnergy2PhaseCalibrationsidd.pkl
|
|
302
312
|
tests/devices/i10/lookupTables/expectedIDEnergy2PhaseCalibrationsidu.pkl
|
|
303
313
|
tests/devices/i13_1/test_merlin.py
|
|
314
|
+
tests/devices/i18/test_kb_mirror.py
|
|
315
|
+
tests/devices/i18/test_table.py
|
|
316
|
+
tests/devices/i18/test_thor_labs_stage.py
|
|
317
|
+
tests/devices/i19/__init__.py
|
|
318
|
+
tests/devices/i19/test_shutter.py
|
|
304
319
|
tests/devices/i22/test_dcm.py
|
|
305
320
|
tests/devices/i22/test_fswitch.py
|
|
306
321
|
tests/devices/i22/test_metadataholder.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
click
|
|
2
2
|
ophyd
|
|
3
|
-
ophyd-async
|
|
3
|
+
ophyd-async>=0.9.0a2
|
|
4
4
|
bluesky
|
|
5
5
|
pyepics
|
|
6
6
|
dataclasses-json
|
|
@@ -23,6 +23,7 @@ scanspec>=0.7.3
|
|
|
23
23
|
black
|
|
24
24
|
diff-cover
|
|
25
25
|
import-linter
|
|
26
|
+
ispyb
|
|
26
27
|
mypy
|
|
27
28
|
myst-parser
|
|
28
29
|
ophyd_async[sim]
|
|
@@ -30,10 +31,11 @@ pipdeptree
|
|
|
30
31
|
pre-commit
|
|
31
32
|
psutil
|
|
32
33
|
pydata-sphinx-theme>=0.12
|
|
33
|
-
pyright
|
|
34
|
+
pyright==1.1.394
|
|
34
35
|
pytest
|
|
35
36
|
pytest-asyncio
|
|
36
37
|
pytest-cov
|
|
38
|
+
pytest-json-report
|
|
37
39
|
pytest-random-order
|
|
38
40
|
ruff
|
|
39
41
|
sphinx<7.4.6
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
# file generated by
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
2
|
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
|
5
|
+
|
|
3
6
|
TYPE_CHECKING = False
|
|
4
7
|
if TYPE_CHECKING:
|
|
5
|
-
from typing import Tuple
|
|
8
|
+
from typing import Tuple
|
|
9
|
+
from typing import Union
|
|
10
|
+
|
|
6
11
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
12
|
else:
|
|
8
13
|
VERSION_TUPLE = object
|
|
@@ -12,5 +17,5 @@ __version__: str
|
|
|
12
17
|
__version_tuple__: VERSION_TUPLE
|
|
13
18
|
version_tuple: VERSION_TUPLE
|
|
14
19
|
|
|
15
|
-
__version__ = version = '1.
|
|
16
|
-
__version_tuple__ = version_tuple = (1,
|
|
20
|
+
__version__ = version = '1.41.0'
|
|
21
|
+
__version_tuple__ = version_tuple = (1, 41, 0)
|
|
@@ -8,6 +8,7 @@ from dodal.common.beamlines.beamline_utils import (
|
|
|
8
8
|
set_path_provider,
|
|
9
9
|
)
|
|
10
10
|
from dodal.common.beamlines.beamline_utils import set_beamline as set_utils_beamline
|
|
11
|
+
from dodal.common.beamlines.device_helpers import DET_SUFFIX, HDF5_SUFFIX
|
|
11
12
|
from dodal.common.visit import LocalDirectoryServiceClient, StaticVisitPathProvider
|
|
12
13
|
from dodal.devices.adsim import SimStage
|
|
13
14
|
from dodal.log import set_beamline as set_log_beamline
|
|
@@ -70,6 +71,6 @@ def det() -> SimDetector:
|
|
|
70
71
|
return SimDetector(
|
|
71
72
|
f"{PREFIX.beamline_prefix}-DI-CAM-01:",
|
|
72
73
|
path_provider=get_path_provider(),
|
|
73
|
-
drv_suffix=
|
|
74
|
-
|
|
74
|
+
drv_suffix=DET_SUFFIX,
|
|
75
|
+
fileio_suffix=HDF5_SUFFIX,
|
|
75
76
|
)
|
|
@@ -9,7 +9,7 @@ from dodal.common.beamlines.beamline_utils import (
|
|
|
9
9
|
set_path_provider,
|
|
10
10
|
)
|
|
11
11
|
from dodal.common.beamlines.beamline_utils import set_beamline as set_utils_beamline
|
|
12
|
-
from dodal.common.beamlines.device_helpers import
|
|
12
|
+
from dodal.common.beamlines.device_helpers import CAM_SUFFIX, HDF5_SUFFIX
|
|
13
13
|
from dodal.common.visit import LocalDirectoryServiceClient, StaticVisitPathProvider
|
|
14
14
|
from dodal.devices.synchrotron import Synchrotron
|
|
15
15
|
from dodal.log import set_beamline as set_log_beamline
|
|
@@ -57,6 +57,6 @@ def manta() -> AravisDetector:
|
|
|
57
57
|
return AravisDetector(
|
|
58
58
|
f"{PREFIX.beamline_prefix}-DI-DCAM-02:",
|
|
59
59
|
path_provider=get_path_provider(),
|
|
60
|
-
drv_suffix=
|
|
61
|
-
|
|
60
|
+
drv_suffix=CAM_SUFFIX,
|
|
61
|
+
fileio_suffix=HDF5_SUFFIX,
|
|
62
62
|
)
|