Skip to content
Snippets Groups Projects
Commit eaac2790 authored by scott snyder's avatar scott snyder
Browse files

IOVSvc: Remove EventIDBase comparison hack.

    
EventIDBase values used in IOVRanges are timestamp or run+lbn.
Clear out the event number in order for comparisons to work properly.
parent 3a2d7cfa
No related branches found
No related tags found
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
...@@ -243,6 +243,9 @@ CondInputLoader::execute() ...@@ -243,6 +243,9 @@ CondInputLoader::execute()
#endif #endif
} }
EventIDBase now_event = now;
now.set_event_number (EventIDBase::UNDEFEVT);
// For a MC event, the run number we need to use to look up the conditions // For a MC event, the run number we need to use to look up the conditions
// may be different from that of the event itself. Override the run // may be different from that of the event itself. Override the run
// number with the conditions run number from the event context, // number with the conditions run number from the event context,
...@@ -269,7 +272,7 @@ CondInputLoader::execute() ...@@ -269,7 +272,7 @@ CondInputLoader::execute()
} }
if (ccb->valid(now)) { if (ccb->valid(now)) {
ATH_MSG_INFO( " CondObj " << vhk.fullKey() << " is still valid at " << now ); ATH_MSG_INFO( " CondObj " << vhk.fullKey() << " is still valid at " << now_event );
evtStore()->addedNewTransObject(vhk.fullKey().clid(), vhk.key()); evtStore()->addedNewTransObject(vhk.fullKey().clid(), vhk.key());
continue; continue;
} }
......
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