Adding classes for trigger enum signals

This commit is contained in:
gac-x01da
2025-03-10 11:02:10 +01:00
committed by appel_c
parent 3e36274f55
commit 87ab69b335

View File

@@ -36,6 +36,18 @@ from debye_bec.devices.utils.mo1_bragg_utils import compute_spline
logger = bec_logger.logger
class TriggerControlSource(int, enum.Enum):
"""Enum class for the trigger control source of the trigger generator"""
EPICS = 0
INPOS = 1
class TriggerControlMode(int, enum.Enum):
"""Enum class for the trigger control mode of the trigger generator"""
PULSE = 0
CONDITION = 1
class ScanControlScanStatus(int, enum.Enum):
"""Enum class for the scan status of the Bragg positioner"""