21 lines
395 B
Python
21 lines
395 B
Python
"""
|
|
author chritstoph seitz
|
|
|
|
starting the xps measurement
|
|
|
|
Fermi edge of C1s test
|
|
"""
|
|
ranges = []
|
|
|
|
#pass_energy = 20 #O1s
|
|
pass_energy = 50 #C1s
|
|
|
|
save_scienta_image = True
|
|
|
|
skip_iteration = 0
|
|
|
|
# (eph, min, max, step, time, iter)
|
|
#ranges.append((650.0, 645., 647.0, 0.1, 0.2, 10)) # O1s
|
|
ranges.append((390.0, 384.4, 387.0, 0.1, 0.2, 20)) # C1s
|
|
exec(open("XPSSpectrum.py").read())
|
|
time.sleep(10) |