Definition at line 27 of file __init__.py.
◆ __init__()
| def Gaudi._ConfigurablesModule.__init__ |
( |
|
self | ) |
|
Definition at line 29 of file __init__.py.
31 self.ignoreMissingConfigurables =
False 32 self.__name__ = __configurables_module_fullname__
◆ __getattr__()
| def Gaudi._ConfigurablesModule.__getattr__ |
( |
|
self, |
|
|
|
name |
|
) |
| |
Definition at line 34 of file __init__.py.
34 def __getattr__(self, name):
43 elif name ==
"__path__":
44 raise AttributeError(
"'module' object has no attribute '__path__'")
45 elif name
in cfgDb.keys():
46 retval = confDbGetConfigurable(name)
48 retval = aliases[name]
49 elif self.ignoreMissingConfigurables:
51 logging.getLogger(__configurables_module_fullname__).warning(
52 'Configurable class %s not in database', name)
56 raise AttributeError(
"module '%s' does not have attribute '%s'" %
57 (__configurables_module_fullname__, name))
◆ __name__
| Gaudi._ConfigurablesModule.__name__ |
|
private |
◆ ignoreMissingConfigurables
| Gaudi._ConfigurablesModule.ignoreMissingConfigurables |
The documentation for this class was generated from the following file: