This commit is contained in:
2015-08-18 10:32:00 +02:00
parent e6068f80ab
commit 50c69c1fc9
22 changed files with 723 additions and 163 deletions

View File

@@ -0,0 +1,12 @@
"""
Demonstrate use of Relative Line Scan.
The arguments start and end are relative to the current position.
After the scan the positioner(s) move back to the initial position.
"""
print "Initial position = " + str(m1.position)
a= lscan(m1, (ai1,ai2,wf1,im1), start = -2, end =2, steps = 20, relative = True)
print "Final position = " + str(m1.position)