Skip to content
Snippets Groups Projects
Commit f836141e authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'condhandle_context' into 'master'

ReadCondHandle: print error if no extended event context is set

See merge request atlas/athena!21179
parents d34f4ce0 f4c2ea0e
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
#ifndef STOREGATE_READCONDHANDLE_H
......@@ -89,10 +89,20 @@ namespace SG {
m_cc( key.getCC() ),
m_hkey(key)
{
EventIDBase::number_type conditionsRun =
ctx.template getExtension<Atlas::ExtendedEventContext>().conditionsRun();
if (conditionsRun != EventIDBase::UNDEFNUM) {
m_eid.set_run_number (conditionsRun);
try {
EventIDBase::number_type conditionsRun =
ctx.template getExtension<Atlas::ExtendedEventContext>().conditionsRun();
if (conditionsRun != EventIDBase::UNDEFNUM) {
m_eid.set_run_number (conditionsRun);
}
}
catch (const std::bad_any_cast& e) {
MsgStream msg(Athena::getMessageSvc(), "ReadCondHandle");
msg << MSG::ERROR
<< "EventContext extension is not "
<< (ctx.hasExtension() ? "of type Atlas::ExtendedEventContext" : "set")
<< endmsg;
throw;
}
if (ATH_UNLIKELY(!key.isInit())) {
......
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