From f56334e8f2206798fad8e48a29651cbf3c3bcdfd Mon Sep 17 00:00:00 2001 From: appel_c Date: Sun, 30 Nov 2025 16:04:17 +0100 Subject: [PATCH] w --- superxas_bec/devices/timepix/timepix.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superxas_bec/devices/timepix/timepix.py b/superxas_bec/devices/timepix/timepix.py index 4a0b2f4..81d2385 100644 --- a/superxas_bec/devices/timepix/timepix.py +++ b/superxas_bec/devices/timepix/timepix.py @@ -177,6 +177,7 @@ class Timepix(PSIDeviceBase, TimePixControl): "get_pixel_map", "set_pixel_map", "set_pixel_map_from_json_file", + "set_enable_xes", ] xes_data = Cpt( @@ -401,6 +402,7 @@ class Timepix(PSIDeviceBase, TimePixControl): def enable_xes(self, value: bool): """Set whether XES data acquisition is enabled.""" self._enable_xes = value + self._enable_xes_settings(value) # Update device manager config if available if self.device_manager is not None: dev_obj = self.device_manager.devices.get(self.name, None)