Return a dictionary representing the configuration.
The dictionary contains one entry per configurable which is a dictionary
with one entry per property.
The optional argument "all" is used to decide if to include only values
different from the default or all of them.
Definition at line 54 of file Configuration.py.
56 """Return a dictionary representing the configuration.
57 The dictionary contains one entry per configurable which is a dictionary
58 with one entry per property.
59 The optional argument "all" is used to decide if to include only values
60 different from the default or all of them.
62 from GaudiKernel.Proxy.Configurable
import getNeededConfigurables
64 catalog = allConfigurables
69 if n
not in conf_dict:
71 for p, v
in catalog[n].getDefaultProperties().items() :
75 if n
not in conf_dict:
77 for p, v
in catalog[n].getValuedProperties().items() :
80 keys = conf_dict.keys()
def getNeededConfigurables