ATLAS Offline Software
|
Public Member Functions | |
def | __init__ (self, **kwargs) |
def | __getattr__ (self, attr) |
def | __setattr__ (self, attr, value) |
def | __setitem__ (self, attr, value) |
def | clone (self, **kwargs) |
def | dump (self, out=None) |
Private Member Functions | |
def | _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.
def JetMonitoringConfig.ConfigDict.__init__ | ( | self, | |
** | kwargs | ||
) |
Definition at line 43 of file JetMonitoringConfig.py.
def JetMonitoringConfig.ConfigDict.__getattr__ | ( | self, | |
attr | |||
) |
Definition at line 47 of file JetMonitoringConfig.py.
def JetMonitoringConfig.ConfigDict.__setattr__ | ( | self, | |
attr, | |||
value | |||
) |
Definition at line 54 of file JetMonitoringConfig.py.
def JetMonitoringConfig.ConfigDict.__setitem__ | ( | self, | |
attr, | |||
value | |||
) |
Definition at line 60 of file JetMonitoringConfig.py.
|
private |
Reimplemented in JetMonitoringConfig.JetMonAlgSpec, JetMonitoringConfig.SelectSpec, JetMonitoringConfig.HistoSpec, and JetMonitoringConfig.VarSpec.
Definition at line 85 of file JetMonitoringConfig.py.
def JetMonitoringConfig.ConfigDict.clone | ( | self, | |
** | kwargs | ||
) |
Definition at line 68 of file JetMonitoringConfig.py.
def 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.