ATLAS Offline Software
InnerDetector/InDetExample/InDetBeamSpotExample/python/__init__.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2 
3 """
4 Scripts to run beam spot production jobs
5 """
6 __author__ = 'Juerg Beringer'
7 
8 
9 def loadClass(name):
10  """Dynamically load a Python class from the InDetBeamSpotExample package. Returns a class object."""
11  # See note in __import__ doc on when package or module is returned
12  m = __import__('InDetBeamSpotExample.'+name, fromlist = [name])
13  return getattr(m,name)
python.loadClass
def loadClass(name)
Definition: InnerDetector/InDetExample/InDetBeamSpotExample/python/__init__.py:9