This commit is contained in:
gac-x03da
2019-11-23 18:37:02 +01:00
parent 0a673f6e25
commit e8c0465d24
5 changed files with 815 additions and 0 deletions

28
script/temp-overnight.py Normal file
View File

@@ -0,0 +1,28 @@
move_to_position(REFERENCE_POSITION)
#Au900-Fermi
rs = RangeSelection(895.0,897.0)
rs.setVars([1., 0.1, 1, 900.]) #Time, Size, Iteration, photon energy
run("XPSSpectrum", {"save_scienta_image":True,
"ranges":[rs, ],
"ENDSCAN":False,
"pass_energy":20})
#Au900-4f
rs = RangeSelection(804.0,815.0)
rs.setVars([1., 0.1, 1, 900.]) #Time, Size, Iteration, photon energy
run("XPSSpectrum", {"save_scienta_image":True,
"ranges":[rs, ],
"ENDSCAN":False,
"pass_energy":20})
move_to_position(SAMPLE_POSITION)
#In900
rs = RangeSelection(440.0,453.0)
rs.setVars([1., 0.1, 1, 900.]) #Time, Size, Iteration, photon energy
run("XPSSpectrum", {"save_scienta_image":True,
"ranges":[rs, ],
"ENDSCAN":False,
"pass_energy":20})