ATLAS Offline Software
PhysicsAnalysis/D3PDMaker/TruthD3PDMaker/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 TruthD3PDMaker/python/__init__.py
5 # @author scott snyder <snyder@bnl.gov>
6 # @date Mar, 2011
7 # @brief Move configurables into the module namespace.
8 #
9 
10 # Install any configurables from this package in the D3PD namespace
11 # directly in the top-level module, without the namespace prefix.
12 from . import TruthD3PDMakerConf
13 for k, v in TruthD3PDMakerConf.__dict__.items():
14  if k.startswith ('D3PD__'):
15  globals()[k[6:]] = v