40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
#importing pearlUtils
|
|
execfile("/sls/X03DA/data/gac-x03da/Data1/2018/10/Granas/XPSstuff/commands/pearlUtils.py")
|
|
|
|
|
|
###### measureing the Zn2p as reference
|
|
global znsearchname
|
|
#mprint("___prepare Zn2p position + measure___")
|
|
#znsearchname ="bad_Zn2p.txt"
|
|
copyFile(pearlU_path+"settings/","pos_1.txt","actual_GE_pos.txt")
|
|
time.sleep(2)
|
|
#execfile("/sls/X03DA/data/gac-x03da/pshell/home/script/users/Granas/curved/ManipulatorScan_Zn2p.py")
|
|
|
|
|
|
|
|
|
|
###### starting the O1s scans
|
|
for posnum in range(1,6):
|
|
mprint("___prepare O1s position "+str(posnum)+" measure___")
|
|
pos_file = "pos_"+str(posnum)+".txt"
|
|
copyFile(pearlU_path+"settings/",pos_file ,"actual_GE_pos.txt")
|
|
time.sleep(2)
|
|
execfile("/sls/X03DA/data/gac-x03da/pshell/home/script/users/Granas/ManipulatorScan_O1s.py")
|
|
|
|
|
|
|
|
|
|
###### starting the C1s scans
|
|
for posnum in range(5):
|
|
mprint("___prepare C1s position "+str(5-posnum)+" measure___")
|
|
pos_file = "pos_"+str(5-posnum)+".txt"
|
|
time.sleep(2)
|
|
copyFile(pearlU_path+"settings/",pos_file ,"actual_GE_pos.txt")
|
|
execfile("/sls/X03DA/data/gac-x03da/pshell/home/script/users/Granas/ManipulatorScan_C1s.py")
|
|
|
|
|
|
###### measureing the Zn2p as reference, finally
|
|
#global znsearchname
|
|
#znsearchname ="final_Zn2p.txt"
|
|
#execfile("/sls/X03DA/data/gac-x03da/pshell/home/script/users/Granas/curved/ManipulatorScan_Zn2p.py")
|