Skip to content
Snippets Groups Projects
Commit a7b45003 authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

RichRawBankDecoder - Use private instances of decoding derived condition helpers

parent a6a51462
No related branches found
No related tags found
1 merge request!3061Update RICH decoding for realistic cable maps from the pit
......@@ -129,8 +129,8 @@ namespace Rich::Future {
LHCb::RawEventLocation::Default} )},
// conditions input
KeyValue{"DeRichSystem", DeRichLocations::RichSystem},
KeyValue{"Tel40CableMapping", Tel40CableMapping::DefaultConditionKey},
KeyValue{"PDMDBDecodeMapping", PDMDBDecodeMapping::DefaultConditionKey}},
KeyValue{"Tel40CableMapping", name + "-" + Tel40CableMapping::DefaultConditionKey},
KeyValue{"PDMDBDecodeMapping", name + "-" + PDMDBDecodeMapping::DefaultConditionKey}},
// output data
{KeyValue{"DecodedDataLocation", DecodedDataLocation::Default}} ) {}
......@@ -411,8 +411,8 @@ void RawBankDecoder::decodeToSmartIDs_MaPMT1( const LHCb::RawBank& bank,
// check MSB for this word
const auto isNZS = isBitOn<NDataBits - 1>( *dataW );
daq_verbo( " -> NZS=", isNZS, " iW=", iW, " gW=", iW + ( dataW - bankStart ), //
" ", boost::format( "%02X" ) % (int)( *dataW ), //
daq_verbo( " -> NZS=", isNZS, " iW=", iW, " gW=", ( dataW - bankStart ), //
" ", boost::format( "%02X" ) % (int)( *dataW ), //
"(", std::bitset<NDataBits>( *dataW ), ")", endmsg );
if ( LIKELY( !isNZS ) ) {
......
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