12 lines
416 B
Python
12 lines
416 B
Python
run("RFscan/phase_scan_data.py")
|
|
|
|
for station in station_table:
|
|
req = caget(station + "-RSYS:PHASE-SCAN-REQUIRED")
|
|
if req == "True":
|
|
feedback_list = station_list[station]["feedback"]
|
|
bpm_ch = station_list[station]["bpm_ch"]
|
|
bpm_field = bpm_list[bpm_ch]["bpm_field"]
|
|
run("RFscan/phase_scan_caqtdm.py")
|
|
run("RFscan/phase_scan_caqtdm_set.py")
|
|
caput(station + "-RSYS:PHASE-SCAN-REQUIRED", 0)
|