Files
x12sa-eiger/script/devices/Detector.py
gac-x12sa 1809c74aef Closedown
2023-01-05 11:34:00 +01:00

16 lines
363 B
Python

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