Skip to content
Snippets Groups Projects

Wavereco bugfix

Merged Eric Torrence requested to merge torrence/calypso:wavereco into master
6 files
+ 36
14
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -100,11 +100,11 @@ ScintWaveformDecoderTool::convert(const DAQFormats::EventFull* re,
}
if (!digitizer) {
ATH_MSG_ERROR("Failed to find TLB fragment in raw event!");
return StatusCode::FAILURE;
ATH_MSG_WARNING("Failed to find digitizer fragment in raw event!");
return StatusCode::SUCCESS;
}
// Check validity here
// Check validity here, try to continue, as perhaps not all channels are bad
if (!digitizer->valid()) {
ATH_MSG_WARNING("Found invalid digitizer fragment:\n" << *digitizer);
} else {
Loading