![]() |
ATLAS Offline Software
|
Public Member Functions | |
| __init__ (self, **kwargs) | |
| __getattr__ (self, attr) | |
| __setattr__ (self, attr, value) | |
| __setitem__ (self, attr, value) | |
| clone (self, **kwargs) | |
| dump (self, out=None) | |
Protected Member Functions | |
| _dump (self, writeFunc) | |
A python dictionary extended so that each entry in the dict can also be accessed as member attribute. Ex: d = ConfigDict(aKey = 4) d.aKey # --> == 4 is the same as d["aKey"] d.bKey = 12 # now d["bKey"] is existing and set to 12 all other usual methods of dictionary are working as expected.
Definition at line 33 of file JetMonitoringConfig.py.
| JetMonitoringConfig.ConfigDict.__init__ | ( | self, | |
| ** | kwargs ) |
Definition at line 43 of file JetMonitoringConfig.py.
| JetMonitoringConfig.ConfigDict.__getattr__ | ( | self, | |
| attr ) |
Definition at line 47 of file JetMonitoringConfig.py.
| JetMonitoringConfig.ConfigDict.__setattr__ | ( | self, | |
| attr, | |||
| value ) |
Definition at line 54 of file JetMonitoringConfig.py.
| JetMonitoringConfig.ConfigDict.__setitem__ | ( | self, | |
| attr, | |||
| value ) |
Definition at line 60 of file JetMonitoringConfig.py.
|
protected |
Reimplemented in JetMonitoringConfig.HistoSpec, JetMonitoringConfig.JetMonAlgSpec, JetMonitoringConfig.SelectSpec, and JetMonitoringConfig.VarSpec.
Definition at line 85 of file JetMonitoringConfig.py.
| JetMonitoringConfig.ConfigDict.clone | ( | self, | |
| ** | kwargs ) |
Reimplemented in JetMonitoringConfig.HistoSpec, and JetMonitoringConfig.ToolSpec.
Definition at line 68 of file JetMonitoringConfig.py.
| JetMonitoringConfig.ConfigDict.dump | ( | self, | |
| out = None ) |
prints the content of this dict on stdout (default) or in the file 'out'
Definition at line 76 of file JetMonitoringConfig.py.