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

remove DeRichSystem from RICH MaPMT1 decoding arguments

parent 74d7421f
No related branches found
No related tags found
2 merge requests!3702merge counter decoder into Louis' original branch,!3300RichDAQ - Decoding fixes when inactive links are present
......@@ -147,7 +147,6 @@ namespace Rich::Future {
private:
/// Decoding for MaPMT1 version
void decodeToSmartIDs_MaPMT1( const LHCb::RawBank& bank, //
const DeRichSystem& deRichSys, //
const Tel40CableMapping& tel40Maps, //
const PDMDBDecodeMapping& pdmdbMaps, //
DecodedIDs& decodedIDs ) const;
......@@ -300,7 +299,7 @@ OutData RawBankDecoder::operator()( const LHCb::RawEvent& rawEvent, //
// Check version to dispatch to the correct decoding
if ( MaPMT1 == version ) {
// real PMT bank
decodeToSmartIDs_MaPMT1( *bank, deRichSys, tel40Maps, pdmdbMaps, decodedIDs );
decodeToSmartIDs_MaPMT1( *bank, tel40Maps, pdmdbMaps, decodedIDs );
} else if ( StreamSmartIDs == version ) {
// simple 'streamed RichSmartID' version (MC only)
decodeToSmartIDs_StreamIDs( *bank, deRichSys, decodedIDs );
......@@ -333,8 +332,7 @@ OutData RawBankDecoder::operator()( const LHCb::RawEvent& rawEvent, //
//=============================================================================
void RawBankDecoder::decodeToSmartIDs_MaPMT1( const LHCb::RawBank& bank, //
const DeRichSystem& /* deRichSys */, //
void RawBankDecoder::decodeToSmartIDs_MaPMT1( const LHCb::RawBank& bank, //
const Tel40CableMapping& tel40Maps, //
const PDMDBDecodeMapping& pdmdbMaps, //
DecodedIDs& decodedIDs ) const {
......
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