Skip to content
Snippets Groups Projects
Commit dc9660f4 authored by James Catmore's avatar James Catmore
Browse files

Removing the uint32_t

Former-commit-id: 3c51ab0662b38ab04afc10a9442bcbc9d6d3e7be
parent ca2bc4b8
No related branches found
No related tags found
No related merge requests found
...@@ -43,9 +43,8 @@ namespace DerivationFramework { ...@@ -43,9 +43,8 @@ namespace DerivationFramework {
{ {
const xAOD::EventInfo* ei = 0; const xAOD::EventInfo* ei = 0;
CHECK( evtStore()->retrieve( ei , "EventInfo" ) ); CHECK( evtStore()->retrieve( ei , "EventInfo" ) );
uint32_t eventNumber ei->eventNumber();
bool accept(false); bool accept(false);
if (eventNumber % m_prescale == 0) accept = true; if (ei->eventNumber() % m_prescale == 0) accept = true;
return accept; return accept;
} }
......
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