ATLAS Offline Software
PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/python/__init__.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2 
3 #
4 # @file egammaD3PDMakerAnalysis/python/__init__.py
5 # @author scott snyder <snyder@bnl.gov>
6 # @date Nov, 2009
7 # @brief Bring configurables into module namespace.
8 #
9 # Allows `egammaD3PDAnalysisConf.D3PD__foo' to be referred to as
10 # `egammaD3PDAnalysis.foo'.
11 #
12 
13 
14 from . import egammaD3PDAnalysisConf
15 for k, v in egammaD3PDAnalysisConf.__dict__.items():
16  if k.startswith ('D3PD__'):
17  globals()[k[6:]] = v
18