From e8ec101f5399ac7be2aeb1b1d69d6866d6d2f69b Mon Sep 17 00:00:00 2001 From: appel_c Date: Fri, 17 Nov 2023 08:22:03 +0100 Subject: [PATCH] fix: add User_access to cSAXS falcon and eiger --- ophyd_devices/epics/devices/eiger9m_csaxs.py | 5 +++++ ophyd_devices/epics/devices/falcon_csaxs.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ophyd_devices/epics/devices/eiger9m_csaxs.py b/ophyd_devices/epics/devices/eiger9m_csaxs.py index de7d3b3..cb90450 100644 --- a/ophyd_devices/epics/devices/eiger9m_csaxs.py +++ b/ophyd_devices/epics/devices/eiger9m_csaxs.py @@ -394,6 +394,11 @@ class Eiger9McSAXS(PSIDetectorBase): """ + # Specify which functions are revealed to the user in BEC client + USER_ACCESS = [ + "describe", + ] + custom_prepare_cls = Eiger9MSetup cam = ADCpt(SLSDetectorCam, "cam1:") MIN_READOUT = 3e-3 diff --git a/ophyd_devices/epics/devices/falcon_csaxs.py b/ophyd_devices/epics/devices/falcon_csaxs.py index 4caa645..9c9cab9 100644 --- a/ophyd_devices/epics/devices/falcon_csaxs.py +++ b/ophyd_devices/epics/devices/falcon_csaxs.py @@ -314,6 +314,11 @@ class FalconcSAXS(PSIDetectorBase): MIN_READOUT (float) : Minimum readout time for the detector """ + # Specify which functions are revealed to the user in BEC client + USER_ACCESS = [ + "describe", + ] + custom_prepare_cls = FalconSetup MIN_READOUT = 3e-3