This commit is contained in:
gobbo_a
2023-08-17 15:16:51 +02:00
parent c545879253
commit 8beeb7dbc7
134 changed files with 3722 additions and 1287 deletions

View File

@@ -0,0 +1,15 @@
st1 = Stream("st1", dispatcher)
#st1.addScalar("X1", "SINEG01-DBPM340:X1", 10, 0)
#st1.addScalar("Y1", "SINEG01-DBPM340:Y1", 10, 0)
#st1.addScalar("Q1", "SINEG01-DBPM340:Q1", 10, 0)
#w,h = caget("SLG-LCAM-C103:WIDTH", 'i'), caget("SLG-LCAM-C103:HEIGHT", 'i')
#st1.addMatrix("VC", "SLG-LCAM-C103:FPICTURE", 10, 0, w,h)
st1.addScalar("i", "SINBC02-DSRM310:intensity", 1, 0)
st1.addWaveform("x", "SINBC02-DSRM310:x_profile", 1, 0,2048)
st1.addWaveform("y", "SINBC02-DSRM310:y_profile", 1, 0,2048)
st1.initialize()
st1.start()
st1.waitCacheChange(3000)
for c in st1.getChildren():
print c, c.shape, c.getType(None)