From 10c9a9d9dfe134a3ab12279638d52da573b504fc Mon Sep 17 00:00:00 2001 From: x03daop Date: Thu, 9 Feb 2017 18:37:10 +0100 Subject: [PATCH] Script execution --- script/users/DepthProfile-MilosB.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/users/DepthProfile-MilosB.py b/script/users/DepthProfile-MilosB.py index 61a44956..87c06bcf 100644 --- a/script/users/DepthProfile-MilosB.py +++ b/script/users/DepthProfile-MilosB.py @@ -36,7 +36,7 @@ try: theta = [-9.0,6.0,21.0,31.0,41.0,51.0,61.0,71.0] x = [2.57*math.cos((th+9.0)*math.pi/180.0)-2.67 for th in theta] y = [2.57*math.sin((th+9.0)*math.pi/180.0)-0.2 for th in theta] - VECTOR = [theta[i], x[i], y[i]] for i in range(len(theta))] + VECTOR = [theta[i], x[i], y[i] for i in range(len(theta))] vscan(writables, SENSORS, VECTOR, True, LATENCY, False, before_read=before_readout, after_read = after_readout) # Zn @@ -50,7 +50,7 @@ try: theta = [-9.0,6.0,21.0,31.0,41.0,51.0,61.0,71.0] x = [2.57*math.cos((th+9.0)*math.pi/180.0)-2.67 for th in theta] y = [2.57*math.sin((th+9.0)*math.pi/180.0)-0.2 for th in theta] - VECTOR = [theta[i], x[i], y[i]] for i in range(len(theta))] + VECTOR = [theta[i], x[i], y[i] for i in range(len(theta))] vscan(writables, SENSORS, VECTOR, True, LATENCY, False, before_read=before_readout, after_read = after_readout) # Mn @@ -64,7 +64,7 @@ try: theta = [-9.0,6.0,21.0,31.0,41.0,51.0,61.0,71.0] x = [2.57*math.cos((th+9.0)*math.pi/180.0)-2.67 for th in theta] y = [2.57*math.sin((th+9.0)*math.pi/180.0)-0.2 for th in theta] - VECTOR = [theta[i], x[i], y[i]] for i in range(len(theta))] + VECTOR = [theta[i], x[i], y[i] for i in range(len(theta))] vscan(writables, SENSORS, VECTOR, True, LATENCY, False, before_read=before_readout, after_read = after_readout) finally: after_scan()