19 lines
563 B
Python
19 lines
563 B
Python
###################################################################################################
|
|
# Area Scan: Multiple positioners, each one is one dimension.
|
|
###################################################################################################
|
|
|
|
NPLC=10
|
|
|
|
caput('X11MA-KEI10:NPLC', NPLC)
|
|
caput('X11MA-KEI11:NPLC', NPLC)
|
|
caput('X11MA-KEI12:NPLC', NPLC)
|
|
|
|
TRY.write(-1)
|
|
TRZ.write(9)
|
|
|
|
time.sleep(5)
|
|
|
|
r1 = ascan((TRY,TRZ), (Keithley_1_raw,Keithley_2_raw,Keithley_3_raw), (-1.0,9.0), (1.0,12.0), (7,7), 3.0, False, 1, True)
|
|
|
|
TRY.write(-1)
|
|
TRZ.write(9) |