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