The Gaudi Framework
v30r3 (a5ef0a68)
|
Classes | |
class | GaudiPersistency |
Functions | |
def | _fillConfDict () |
def | importConfiguration (conf, local=locals()) |
def | configurationDict (all=False) |
def | getConfigurable (name, defaultType=None) |
def | setCustomMainLoop (runner) |
Variables | |
log = logging.getLogger(__name__) | |
allConfigurables = Configurable.allConfigurables | |
|
private |
Definition at line 20 of file Configuration.py.
def Gaudi.Configuration.configurationDict | ( | all = False | ) |
Return a dictionary representing the configuration. The dictionary contains one entry per configurable which is a dictionary with one entry per property. The optional argument "all" is used to decide if to include only values different from the default or all of them.
Definition at line 59 of file Configuration.py.
def Gaudi.Configuration.getConfigurable | ( | name, | |
defaultType = None |
|||
) |
Helper function to get a configurable with the given name regardless for the type. If defaultType can be a class derived from configurable or a string. If not specified, the tool name is used as type.
Definition at line 91 of file Configuration.py.
def Gaudi.Configuration.importConfiguration | ( | conf, | |
local = locals() |
|||
) |
Definition at line 55 of file Configuration.py.
def Gaudi.Configuration.setCustomMainLoop | ( | runner | ) |
Replace the default main execution loop with the specified callable object. @param runner: a callable that accepts an initialized instance of GaudiPython.AppMgr and the number of events to process and returns a StatusCode or a boolean (True means success)
Definition at line 115 of file Configuration.py.
Gaudi.Configuration.allConfigurables = Configurable.allConfigurables |
Definition at line 17 of file Configuration.py.
Gaudi.Configuration.log = logging.getLogger(__name__) |
Definition at line 13 of file Configuration.py.