Script execution
This commit is contained in:
@@ -124,41 +124,55 @@ def save_metadata(rec):
|
||||
"""
|
||||
|
||||
|
||||
diag_channels = [ phi, \
|
||||
omegaH,
|
||||
nu,\
|
||||
omegaV, \
|
||||
alpha, \
|
||||
delta, \
|
||||
gamma, \
|
||||
xv, \
|
||||
y1, \
|
||||
y2, \
|
||||
y3, \
|
||||
trx, \
|
||||
thy, \
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def get_diag_channels():
|
||||
diag_channels = [ phi, \
|
||||
omegaH,
|
||||
nu,\
|
||||
omegaV, \
|
||||
alpha, \
|
||||
delta, \
|
||||
gamma, \
|
||||
xv, \
|
||||
y1, \
|
||||
y2, \
|
||||
y3, \
|
||||
trx, \
|
||||
thy, \
|
||||
]
|
||||
if dp.getByName("h") is not None:
|
||||
diag_channels.append(h)
|
||||
if dp.getByName("k") is not None:
|
||||
diag_channels.append(k)
|
||||
if dp.getByName("l") is not None:
|
||||
diag_channels.append(l)
|
||||
if dp.getByName("wavelength") is not None:
|
||||
diag_channels.append(wavelength)
|
||||
return diag_channels
|
||||
|
||||
def get_diag_name(diag):
|
||||
return ch.psi.utils.Str.toTitleCase(diag.getName()).replace(" ", "")
|
||||
|
||||
def print_diag():
|
||||
for f in diag_channels:
|
||||
for f in get_diag_channels():
|
||||
print "%-25s %s" % (get_diag_name(f) , str(f.read()))
|
||||
|
||||
def create_diag_datasets(parent = None):
|
||||
if parent is None:
|
||||
parent = get_exec_pars().group
|
||||
group = parent + "meta/"
|
||||
for f in diag_channels:
|
||||
for f in get_diag_channels():
|
||||
create_dataset(group+get_diag_name(f) , 's' if (type(f) is ch.psi.pshell.epics.ChannelString) else 'd')
|
||||
|
||||
def append_diag_datasets(parent = None):
|
||||
if parent is None:
|
||||
parent = get_exec_pars().group
|
||||
group = parent + "meta/"
|
||||
for f in diag_channels:
|
||||
for f in get_diag_channels():
|
||||
try:
|
||||
x = f.read()
|
||||
if x is None:
|
||||
|
||||
Reference in New Issue
Block a user