Skip to content
Snippets Groups Projects
Commit 8d49ca07 authored by Axel Puntke's avatar Axel Puntke Committed by Pierre-Alain Loizeau
Browse files

Enable TRD Monitor for new FEX format

parent b5b0110c
No related branches found
No related tags found
1 merge request!1712Enable TRD Monitor for new FEX format
Pipeline #28152 passed
...@@ -344,6 +344,11 @@ void CbmTrdUnpackAlgoR::makeDigi(Spadic::FexWord<0x10> fw, std::uint32_t criid) ...@@ -344,6 +344,11 @@ void CbmTrdUnpackAlgoR::makeDigi(Spadic::FexWord<0x10> fw, std::uint32_t criid)
// If the message was flagged as multi hit, forward this info to the digi // If the message was flagged as multi hit, forward this info to the digi
if (fw.mh != 0) digi->SetTriggerType(CbmTrdDigi::eTriggerType::kMulti); if (fw.mh != 0) digi->SetTriggerType(CbmTrdDigi::eTriggerType::kMulti);
//pass digi to monitor
if (fMonitor) {
fMonitor->FillHistos(digi.get(), nullptr);
}
fOutputVec.emplace_back(*std::move(digi)); fOutputVec.emplace_back(*std::move(digi));
} }
} }
......
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