Skip to content
Snippets Groups Projects

New decoding for plume

Merged Eugenia Spedicato requested to merge new_decoding_plume into master
Compare and
12 files
+ 232
67
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -147,8 +147,14 @@ std::array<TransposedBanks, LHCb::RawBank::types().size()> TransposeRawBanks::op
throw GaudiException {"Cannot find " + toString(bt) + " raw bank.", "", StatusCode::FAILURE};
}
}
else if (rawBanks[bt].empty()) {
throw GaudiException {"Cannot find " + toString(bt) + " raw bank.", "", StatusCode::FAILURE};
if (bt == LHCb::RawBank::Plume) {
warning() << "No PLUME bank found, will continue without PLUME decoding" << endmsg;
}
else {
throw GaudiException {"Cannot find " + toString(bt) + " raw bank.", "", StatusCode::FAILURE};
}
}
}
Loading