16 lines
654 B
Python
16 lines
654 B
Python
positions = [ ("pos_01", 18, -13.2), \
|
|
("pos_02", 10, -13.2), \
|
|
("pos_03", 2, -13.2), \
|
|
("pos_04", -6, -13.2), \
|
|
("pos_05", -14, -13.2), \
|
|
("pos_06", -22, -13.2), \
|
|
("pos_07", 18, -4.2), \
|
|
("pos_08", 10, -4.2), \
|
|
("pos_09", 2, -4.2) ]
|
|
|
|
for pos in positions:
|
|
caput("X10DA-ES1-MA1:TRX", pos[1])
|
|
caput("X10DA-ES1-MA1:TRY", pos[2])
|
|
set_exec_pars(name = pos[0], reset = True)
|
|
run_fda("users/20201127_Vogelin/Fe_EXAFS_transmission.xml")
|