Definition at line 17 of file __init__.py.
◆ __init__()
def Gaudi._ConfigurablesModule.__init__ |
( |
|
self | ) |
|
Definition at line 19 of file __init__.py.
21 self.ignoreMissingConfigurables =
False 22 self.__name__ = __configurables_module_fullname__
◆ __getattr__()
def Gaudi._ConfigurablesModule.__getattr__ |
( |
|
self, |
|
|
|
name |
|
) |
| |
Definition at line 24 of file __init__.py.
24 def __getattr__(self, name):
33 elif name ==
"__path__":
34 raise AttributeError(
"'module' object has no attribute '__path__'")
35 elif name
in cfgDb.keys():
36 retval = confDbGetConfigurable(name)
38 retval = aliases[name]
39 elif self.ignoreMissingConfigurables:
41 logging.getLogger(__configurables_module_fullname__).warning(
42 'Configurable class %s not in database', name)
46 raise AttributeError(
"module '%s' does not have attribute '%s'" %
47 (__configurables_module_fullname__, name))
◆ __name__
Gaudi._ConfigurablesModule.__name__ |
|
private |
◆ ignoreMissingConfigurables
Gaudi._ConfigurablesModule.ignoreMissingConfigurables |
The documentation for this class was generated from the following file: