ATLAS Offline Software
PhysicsAnalysis/D3PDMaker/TileD3PDMaker/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 # $Id$
4 #
5 # File: __init__.py
6 # Author: Marco van Woerden <mvanwoer@cern.ch>
7 # Date: September 2012
8 # Description: Define shortcuts for referencing configurables in this package.
9 #
10 # With this, instead of writing
11 #
12 # TileD3PDMaker.TileD3PDMakerConf.D3PD__xxxTool
13 #
14 # we can write
15 #
16 # TileD3PDMaker.xxxTool
17 #
18 
19 
20 from . import TileD3PDMakerConf
21 for k, v in TileD3PDMakerConf.__dict__.items():
22  if k.startswith ('D3PD__'):
23  globals()[k[6:]] = v
24