Skip to content
Snippets Groups Projects
Commit 26e3be48 authored by Lukas Alexander Heinrich's avatar Lukas Alexander Heinrich
Browse files

review

parent e06f326f
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef DERIVATIONFRAMEWORKINTERFACES_EXPRESSIONPARSERHELPER_H #ifndef DERIVATIONFRAMEWORKINTERFACES_EXPRESSIONPARSERHELPER_H
...@@ -34,9 +34,7 @@ namespace DerivationFramework { ...@@ -34,9 +34,7 @@ namespace DerivationFramework {
/// Default constructor /// Default constructor
ExpressionParserHelper( ServiceHandle< StoreGateSvc >& evtStore ) ExpressionParserHelper( ServiceHandle< StoreGateSvc >& evtStore )
: m_xaodLoader( evtStore ), m_ntupLoader( evtStore ), : m_xaodLoader( evtStore ), m_ntupLoader( evtStore ),
m_proxyLoader(), m_parser( &m_proxyLoader ) { m_proxyLoader({&m_xaodLoader, &m_ntupLoader}), m_parser( &m_proxyLoader ) {
m_proxyLoader.push_back( &m_xaodLoader );
m_proxyLoader.push_back( &m_ntupLoader );
} }
/// Return a reference to the expression parser /// Return a reference to the expression parser
......
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