Definition at line 29 of file __init__.py.
◆ __init__()
def Gaudi._ConfigurablesModule.__init__ |
( |
|
self | ) |
|
Definition at line 31 of file __init__.py.
33 self.ignoreMissingConfigurables =
False
34 self.__name__ = __configurables_module_fullname__
35 self.__loader__ =
None
◆ __getattr__()
def Gaudi._ConfigurablesModule.__getattr__ |
( |
|
self, |
|
|
|
name |
|
) |
| |
Definition at line 37 of file __init__.py.
47 elif name ==
"__spec__":
50 retval = importlib.machinery.ModuleSpec(
51 name=__configurables_module_fullname__,
52 loader=self.__loader__,
54 elif name ==
"__package__":
55 retval = self.__name__
56 elif name ==
"__path__":
57 raise AttributeError(
"'module' object has no attribute '__path__'")
58 elif name
in cfgDb.keys():
59 retval = confDbGetConfigurable(name)
61 retval = aliases[name]
62 elif self.ignoreMissingConfigurables:
65 logging.getLogger(__configurables_module_fullname__).warning(
66 "Configurable class %s not in database", name
72 "module '%s' does not have attribute '%s'"
73 % (__configurables_module_fullname__, name)
◆ __loader__
Gaudi._ConfigurablesModule.__loader__ |
|
private |
◆ __name__
Gaudi._ConfigurablesModule.__name__ |
|
private |
◆ ignoreMissingConfigurables
Gaudi._ConfigurablesModule.ignoreMissingConfigurables |
The documentation for this class was generated from the following file: