Skip to content

Commit

Permalink
Removed the *min_move* argument from the undulator positioner.
Browse files Browse the repository at this point in the history
  • Loading branch information
canismarko committed Dec 6, 2024
1 parent 0ed8d8b commit 365f0cb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/haven/devices/xray_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(
stop_signal: Signal,
done_signal: Signal = None,
name: str = "",
min_move: float = 0.0,
):
with self.add_children_as_readables(StandardReadableFormat.HINTED_SIGNAL):
self.readback = epics_signal_rw(float, f"{prefix}M.VAL")
Expand All @@ -64,7 +63,7 @@ def __init__(
self.done = derived_signal_r(
int, derived_from={"parent_signal": done_signal}
)
super().__init__(name=name, min_move=min_move)
super().__init__(name=name)


class PlanarUndulator(StandardReadable):
Expand Down Expand Up @@ -115,7 +114,6 @@ def __init__(self, prefix: str, name: str = ""):
actuate_signal=self.start_button,
stop_signal=self.stop_button,
done_signal=self.busy,
min_move=0.010,
)
self.energy_taper = UndulatorPositioner(
prefix=f"{prefix}TaperEnergy",
Expand All @@ -128,7 +126,6 @@ def __init__(self, prefix: str, name: str = ""):
actuate_signal=self.start_button,
stop_signal=self.stop_button,
done_signal=self.busy,
min_move=0.004,
)
self.gap_taper = UndulatorPositioner(
prefix=f"{prefix}TaperGap",
Expand Down

0 comments on commit 365f0cb

Please sign in to comment.