Files
sf-op/script/test/BLM_raw_signal_plot.py
2021-08-17 14:06:14 +02:00

19 lines
359 B
Python
Executable File

run("Devices/Elements")
blms = get_blms() #["S10BC01-DBLM065"]
plots = []
names = []
for b in blms:
try:
b = b + ":LOSS_SIGNAL_RAW"
plots.append(caget(b))
names.append (b)
except:
print "Error reading " + str(b)
plot(plots, names)
#plots = get_plot_snapshots()
#print plots
##elog("BLM PMT-waveform", "", plots)