Skip to content
Snippets Groups Projects
Commit 9cda8f08 authored by Guenter Quast's avatar Guenter Quast
Browse files

working version of mimoCoRB interface

parent 2b3179e5
No related branches found
No related tags found
No related merge requests found
......@@ -106,6 +106,9 @@ class rpControl(QMainWindow, Ui_MCPHA):
callback: function receiving recorded waveforms
"""
super(rpControl, self).__init__()
plt.style.use("default") # set graphics style
self.callback_function = callback
self.callback = True
# get command line arguments
......@@ -864,14 +867,17 @@ class redP_mimocorb():
self.active=True
def data_sink(self, data):
"""function called by redPoscdaq
this simple version calculates statistics only
"""function called by redPoscdaq
"""
while (self.events_required == 0 or self.event_count < self.events_required) and self.active:
if (self.events_required == 0 or self.event_count < self.events_required) and self.active:
# deliver pulse data and no metadata
active = self.action(data/5000., None)
active = self.action(data, None) # send data
self.event_count += 1
else:
active = self.action(None, None) # send None to signal end
print("redPoscdaq exiting")
sys.exit()
def run_rpControl(callback=None):
# start redPidaya GUI under Qt5
app = QApplication(sys.argv)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment