From 4778cf94a08c31c44c552f3c106a48ca72d76200 Mon Sep 17 00:00:00 2001 From: gac-x03da Date: Wed, 22 Jun 2022 18:11:42 +0200 Subject: [PATCH] Script execution --- script/optics/FocusYRotScan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/optics/FocusYRotScan.py b/script/optics/FocusYRotScan.py index 5119ed8b..dcb5f632 100644 --- a/script/optics/FocusYRotScan.py +++ b/script/optics/FocusYRotScan.py @@ -52,9 +52,9 @@ try: print "speed: ", SPEED print "scan time: ", fly_time - cscan(MOTOR, SENSORS, STARTPOS, ENDPOS, STEPS, LATENCY, fly_time, RELATIVE, before_read=before_readout, after_read = after_readout, check_positions = False) + cscan(MOTORS, SENSORS, STARTPOS, ENDPOS, STEPS, LATENCY, fly_time, RELATIVE, before_read=before_readout, after_read = after_readout, check_positions = False) else: - lscan(MOTOR, SENSORS, STARTPOS, ENDPOS, STEPS, LATENCY, RELATIVE, before_read=before_readout, after_read = after_readout) + lscan(MOTORS, SENSORS, STARTPOS, ENDPOS, STEPS, LATENCY, RELATIVE, before_read=before_readout, after_read = after_readout) finally: if ENDSCAN: after_scan()