19 lines
359 B
Python
19 lines
359 B
Python
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) |