Files
x03da/script/optics/ExitSlitScan.py
gac-x03da 95f8194430 Closedown
2018-04-24 16:48:35 +02:00

23 lines
523 B
Python

"""
exit slit test scan
set ADC or Keithly averaging separately.
"""
POSITIONERS = (ExitSlit)
SENSORS = (SampleCurrent, RefCurrent, AuxCurrent, MachineCurrent)
STARTPOS = (-10.0)
ENDPOS = (200.0)
STEPS = 10.0
LATENCY = 0.1
DWELL = 1.0
lscan(POSITIONERS, SENSORS, STARTPOS, ENDPOS, STEPS, LATENCY, before_read=before_readout, after_read=after_readout)
STARTPOS = (200.0)
ENDPOS = (-10.0)
STEPS = -10.0
lscan(POSITIONERS, SENSORS, STARTPOS, ENDPOS, STEPS, LATENCY, before_read=before_readout, after_read=after_readout)