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

Merge branch 'dvlinfo.D3PDMakerCoreComps-20200726' into 'master'

D3PDMakerCoreComps: Fix for getting DVLInfo.

See merge request atlas/athena!35104
parents 1fc286cb 58f86ded
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-2020 CERN for the benefit of the ATLAS collaboration
*/
// $Id: SGDataVectorGetterTool.cxx 790090 2016-12-16 05:31:29Z ssnyder $
......@@ -79,6 +79,13 @@ StatusCode SGDataVectorGetterTool::initialize()
meth.Execute();
m_info = getInfo (typeinfo());
}
if (!m_info) {
TClass* cls = gROOT->GetClass (m_typename.c_str());
TMethodCall meth (cls, "dvlinfo", "");
if (meth.IsValid())
meth.Execute();
m_info = getInfo (typeinfo());
}
if (!m_info) {
REPORT_MESSAGE (MSG::ERROR)
......
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