12 lines
225 B
Python
12 lines
225 B
Python
st = Stream("ICTstream", dispatcher)
|
|
q = st.addScalar("Charge", "SINEG01-DICT215:B1_CHARGE", 1, 0)
|
|
st.initialize()
|
|
st.start()
|
|
|
|
|
|
try:
|
|
qb = create_averager(q, 5, 0.100)
|
|
r = tscan((qb), 10, 1.0)
|
|
finally:
|
|
st.close()
|