Files
x03da/script/users/heinrich/xps-GeTe-C-cap.py
2023-07-01 11:41:40 +02:00

32 lines
887 B
Python

import ch.psi.pshell.plot.RangeSelectionPlot.RangeSelection as RangeSelection
# caution: do not insert multiple runs in the same script!
# earlier runs are overwritten!
ranges = []
# Ge 3d
rs = RangeSelection(915.0,925.0)
rs.setVars([0.3, 0.05, 3, 955.]) #Time, Size, Iteration, photon energy
ranges.append(rs)
# Mn 3p, Te 4d
rs = RangeSelection(912.0,928.0)
rs.setVars([0.3, 0.05, 3, 969.]) #Time, Size, Iteration, photon energy
ranges.append(rs)
# Te 4s
rs = RangeSelection(915.0,925.0)
rs.setVars([0.3, 0.05, 3, 1090.]) #Time, Size, Iteration, photon energy
ranges.append(rs)
# C 1s
rs = RangeSelection(915.0,925.0)
rs.setVars([0.3, 0.05, 3, 1209.]) #Time, Size, Iteration, photon energy
ranges.append(rs)
run("XPSSpectrum", {"save_scienta_image":True,
"ranges":ranges,
"ENDSCAN":True,
"pass_energy":50})