Skip to content
Snippets Groups Projects
Commit deacb58f authored by Sebastien Ponce's avatar Sebastien Ponce
Browse files

Merge branch 'rm-fix-tae-check' into 'master'

Fix detection of TAE data in MDF writing

See merge request !3701
parents ec80e54e 3b3e5b37
No related branches found
No related tags found
1 merge request!3701Fix detection of TAE data in MDF writing
Pipeline #4286162 passed
......@@ -636,6 +636,6 @@ bool LHCb::isTAERawEvent( RawEvent* raw ) {
const auto& oBnks = raw->banks( RawBank::ODIN );
return std::any_of( oBnks.begin(), oBnks.end(), []( const RawBank* bank ) {
const LHCb::ODIN odin{bank->range<std::uint32_t>()};
return odin.triggerType() == static_cast<std::uint8_t>( ODIN::TriggerTypes::TimingTrigger ) || odin.isTAE();
return odin.isTAE();
} );
}
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