19 lines
497 B
Python
19 lines
497 B
Python
import ch.psi.pshell.plot.RangeSelectionPlot.RangeSelection as RangeSelection
|
|
|
|
ranges = []
|
|
|
|
|
|
# Survey
|
|
rs = RangeSelection(75.0, 700.0)
|
|
rs.setVars([0.1, 1., 1, 710.]) #Time, Size, Iteration, photon energy
|
|
ranges.append(rs)
|
|
|
|
# caution: do not insert multiple run commands in the same script!
|
|
# earlier data is overwritten!
|
|
|
|
run("XPSSpectrum", {"save_scienta_image":True,
|
|
"ranges": ranges,
|
|
"ENDSCAN": False,
|
|
"pass_energy":50})
|
|
|