Skip to content
Snippets Groups Projects

Draft: extract main parameters from output channel

Closed Astrid Muennich requested to merge fix/saturation_monitor into master
1 file
+ 42
2
Compare changes
  • Side-by-side
  • Inline
@@ -73,7 +73,7 @@ class SaturationMonitor(BaseCorrectionAddon):
UINT32_ELEMENT(schema)
.key("saturationMonitor.alarmCount")
.description(
.description(
"Total number of pixels above alarm threshold. Each pixel "
"is only counted once even if it exceeds the threshold in "
"multiple frames (/ memory cells = given axis)."
@@ -134,12 +134,52 @@ class SaturationMonitor(BaseCorrectionAddon):
UINT64_ELEMENT(schema)
.key(f"{prefix}.frameAxis")
.displayedName('Multi-frame axis')
.description("Axis for frames. Used to take the max over this axis.")
.description(
"Axis for frames. Used to take the max over this axis.")
.tags("managed")
.assignmentOptional()
.defaultValue(0)
.reconfigurable()
.commit(),
NODE_ELEMENT(schema)
.key("saturationMonitor")
.commit(),
BOOL_ELEMENT(schema)
.key("saturationMonitor.warning")
.readOnly()
.commit(),
BOOL_ELEMENT(schema)
.key("saturationMonitor.alarm")
.readOnly()
.commit(),
UINT32_ELEMENT(schema)
.key("saturationMonitor.warnCount")
.description(
"Total number of pixels above warning threshold. Each pixel "
"is only counted once even if it exceeds the threshold in "
"multiple frames (/ memory cells = given axis)."
)
.readOnly()
.commit(),
UINT32_ELEMENT(schema)
.key("saturationMonitor.alarmCount")
.description(
"Total number of pixels above alarm threshold. Each pixel "
"is only counted once even if it exceeds the threshold in "
"multiple frames (/ memory cells = given axis)."
)
.readOnly()
.commit(),
FLOAT_ELEMENT(schema)
.key("saturationMonitor.maxValue")
.readOnly()
.commit(),
)
def post_correction(self, processed_data, cell_table, pulse_table, output_hash):
Loading