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

Fixed compilation problem of DataModelTestDataCommon/CondAlg2

Renamed execute_r with execute, as it was done for many algorithms in !16365
parent 3dd57363
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ StatusCode CondAlg2::initialize()
/**
* @brief Algorithm event processing.
*/
StatusCode CondAlg2::execute_r (const EventContext& ctx) const
StatusCode CondAlg2::execute (const EventContext& ctx) const
{
SG::ReadCondHandle<AthenaAttributeList> rltest (m_rltestKey, ctx);
int xint_rl = (**rltest)["xint"].data<int>();
......
......@@ -47,7 +47,7 @@ public:
/**
* @brief Algorithm event processing.
*/
virtual StatusCode execute_r (const EventContext& ctx) const override;
virtual StatusCode execute (const EventContext& ctx) const override;
private:
......
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