Script execution

This commit is contained in:
x03daop
2017-07-22 03:31:15 +02:00
parent 2b73a7d935
commit 2733b3cf04

View File

@@ -37,11 +37,11 @@ try:
#x = [0.65]
#y = [0.0179 * th for th in theta]
#VECTOR = [phi, theta, x, y]
VECTOR = [theta[i] for i in range(NPOINTS)]
VECTOR = [x[th], y[th] for th in range (NPOINTS)]
VECTOR1 = [theta[i] for i in range(NPOINTS)]
VECTOR2 = [x[th], y[th] for th in range (NPOINTS)]
# ManipulatorPhi.move(-8.9)
#ManipulatorTilt.move(+25.5)
#Scienta.getStepTime().write(1.47)
vscan(writables, SENSORS, VECTOR, True, LATENCY, False, before_read=before_readout, after_read = after_readout)
vscan(writables, SENSORS, VECTOR1, VECTOR2, True, LATENCY, False, before_read=before_readout, after_read = after_readout)
finally:
after_scan()