From 11c2bfce3fdd37d327d8e62836628db7ead3845a Mon Sep 17 00:00:00 2001 From: dstocco Date: Mon, 7 Dec 2020 19:32:54 +0100 Subject: [PATCH] Correctly use object passed to MID decoder constructor --- Detectors/MUON/MID/Raw/src/Decoder.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detectors/MUON/MID/Raw/src/Decoder.cxx b/Detectors/MUON/MID/Raw/src/Decoder.cxx index 146f6c543a3ac..f29d4cb4dde88 100644 --- a/Detectors/MUON/MID/Raw/src/Decoder.cxx +++ b/Detectors/MUON/MID/Raw/src/Decoder.cxx @@ -73,7 +73,7 @@ std::unique_ptr createDecoder(const o2::header::RDHAny& rdh, bool isDeb { /// Creates the decoder from the RDH info bool isBare = (o2::raw::RDHUtils::getLinkID(rdh) != raw::sUserLogicLinkID); - return std::make_unique(isDebugMode, isBare, electronicsDelay, crateMasks); + return std::make_unique(isDebugMode, isBare, electronicsDelay, crateMasks, feeIdConfig); } std::unique_ptr createDecoder(const o2::header::RDHAny& rdh, bool isDebugMode, const char* electronicsDelayFile, const char* crateMasksFile, const char* feeIdConfigFile) {