From bce823d1e24c881536336f015d0d5d783a275cfa Mon Sep 17 00:00:00 2001 From: gac-x03da Date: Thu, 8 Feb 2018 14:10:58 +0100 Subject: [PATCH] Script execution --- script/test/HoloFlyScan.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/script/test/HoloFlyScan.py b/script/test/HoloFlyScan.py index b86c075f..5e685ffd 100644 --- a/script/test/HoloFlyScan.py +++ b/script/test/HoloFlyScan.py @@ -11,7 +11,7 @@ SENSORS (list) ZIGZAG (BOOLEAN) """ -THETA_RANGE = (-9.0, 81.0) +THETA_RANGE = (-9.0, 1.0) THETA_STEP = 1.0 PHI_RANGE = (-10.0, +10.0) PHI_STEP = 10.0 @@ -50,7 +50,9 @@ try: ManipulatorPhi.write(phi) print "phi = ", phi ManipulatorPhi.waitValueInRange(phi, 1.0, 100) + print time.time(), " cscan: start" cscan(ManipulatorTheta, SENSORS, THETA_RANGE[0], THETA_RANGE[1], STEPS, time=theta_time, before_read=before_readout, after_read = after_readout) + print time.time(), " cscan: end" if ZIGZAG: THETA_RANGE = (THETA_RANGE[1], THETA_RANGE[0])