made K value comparison less accurate

This commit is contained in:
2023-11-28 14:44:05 +01:00
parent d757c1923e
commit 94bb279ec6

View File

@ -171,7 +171,7 @@ class Undulators(Adjustable):
class Undulator(PVAdjustable):
def __init__(self, name, accuracy=0.1):
def __init__(self, name, accuracy=0.4):
pvname_setvalue = name + ":K_SET"
pvname_readback = name + ":K_READ"
super().__init__(pvname_setvalue, pvname_readback=pvname_readback, accuracy=accuracy, active_move=True, name=name, internal=True)