Files
x12sa-eiger/script/devices/Detector.py
gac-x12sa da21349113 Closedown
2023-01-05 11:46:17 +01:00

15 lines
320 B
Python

class Detector(DeviceBase):
def __init__(self, name):
DeviceBase.__init__(self, name)
def doInitialize(self):
pass
def start(self):
setState(State.Busy)
def stop(self):
setState(State.Ready)
def doClose(self):
pass