Skip to content
Snippets Groups Projects

Saturation monitor addon with own output channel

Merged David Hammer requested to merge saturation-monitor-separate-output into master
1 unresolved thread
9 files
+ 128
142
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -25,12 +25,16 @@ class BaseCorrectionAddon:
device)"""
return self._device._geometry
def post_correction(self, processed_data, cell_table, pulse_table, output_hash):
def post_correction(
self, train_id, processed_data, cell_table, pulse_table, output_hash
):
"""Called directly after correction has happened. Processed data will still be
on GPU if the correction device is generally running in GPU mode."""
pass
def post_reshape(self, reshaped_data, cell_table, pulse_table, output_hash):
def post_reshape(
self, train_id, reshaped_data, cell_table, pulse_table, output_hash
):
pass
def reconfigure(self, changed_config):
Loading