![]() |
The Gaudi Framework
v27r0
|
Functions | |
def | _printHisto1D (h) |
def | _contentsHisto1D (h) |
def | _printHisto2D (h) |
def | _printStatusCode (s) |
def | _printBitReference (b) |
def | _printFillStream (o) |
def | _container__getitem__ (self, k) |
def | _container__len__ (self) |
def | _container__iter__ (self) |
def | _draw_aida_ (self, args) |
def | __mapbase_iter__ (self) |
decorate some map-like objectsThe iterator for MapBase class More... | |
def | __mapbase_iteritems__ (self) |
The iterator for MapBase class. More... | |
def | __mapbase_keys__ (self) |
Get the list of keys for the map. More... | |
def | __mapbase_items__ (self) |
Get the list of items for the map. More... | |
def | __mapbase_values__ (self) |
Get the list of values for the map. More... | |
def | __mapbase_contains__ (self, key) |
Check if the certain key is in the map. More... | |
def | __mapbase_get__ |
Get the value for certain key, return predefined value otherwise. More... | |
def | __mapbase_str__ (self) |
Representation of MapBase-based maps. More... | |
def | __mapbase_setitem__ (self, key, value) |
"Setitem" for MapBase-based maps: More... | |
def | __mapbase_delitem__ (self, key) |
"Del-item" for MapBase-based maps: More... | |
Variables | |
list | __all__ = [ ] |
_eq = gbl.Gaudi.StringKey.__cpp_eq__ | |
_ne = gbl.Gaudi.StringKey.__cpp_ne__ | |
def GaudiPython.Pythonizations.__mapbase_contains__ | ( | self, | |
key | |||
) |
Check if the certain key is in the map.
Check if the certainkey is in the map >>> m = ... ## the map >>> if 'a' in m : ... ## chekc the presence of the key in the map
Definition at line 305 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_delitem__ | ( | self, | |
key | |||
) |
"Del-item" for MapBase-based maps:
'Del-item' for MapBase-based maps: >>> m = ... ## the map >>> del m[key]
Definition at line 428 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_get__ | ( | self, | |
key, | |||
value = None |
|||
) |
Get the value for certain key, return predefined value otherwise.
Get the value for the certain key, or 'value' otherwise >>> m = ... ## the map >>> v = m.get ( key , 15 )
Definition at line 335 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_items__ | ( | self | ) |
Get the list of items for the map.
Get the list of items >>> m = ... ## the map >>> items = m.keys() ## get the list of items
Definition at line 238 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_iter__ | ( | self | ) |
The iterator for MapBase-based containers >>> m = ... ## the map >>> for key in m : print key , m[key]
Definition at line 139 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_iteritems__ | ( | self | ) |
The iterator for MapBase class.
The iterator for MapBase-based containers >>> m = ... ## the map >>> for key,value in m.iteritems() : print key, value
Definition at line 174 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_keys__ | ( | self | ) |
Get the list of keys for the map.
Get the list of keys >>> m = ... ## the map >>> keys = m.keys() ## get the list of keys
Definition at line 207 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_setitem__ | ( | self, | |
key, | |||
value | |||
) |
"Setitem" for MapBase-based maps:
'Set-item' for MapBase-based maps: >>> m = ... ## the map >>> m[key] = value ## set the item
Definition at line 397 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_str__ | ( | self | ) |
Representation of MapBase-based maps.
Representation of MapBase-based maps: >>> m = ... ## the map >>> print map
Definition at line 361 of file Pythonizations.py.
def GaudiPython.Pythonizations.__mapbase_values__ | ( | self | ) |
Get the list of values for the map.
Get the list of values >>> m = ... ## the map >>> values = m.values() ## get the list of values
Definition at line 272 of file Pythonizations.py.
|
private |
Definition at line 48 of file Pythonizations.py.
|
private |
Definition at line 52 of file Pythonizations.py.
|
private |
Definition at line 50 of file Pythonizations.py.
|
private |
Definition at line 24 of file Pythonizations.py.
|
private |
Draw AIDA histogram (through access to internal ROOT histogram >>> aida = ... # get the historgam >>> aida.Draw()
Definition at line 61 of file Pythonizations.py.
|
private |
Definition at line 34 of file Pythonizations.py.
|
private |
Definition at line 36 of file Pythonizations.py.
|
private |
Definition at line 21 of file Pythonizations.py.
|
private |
Definition at line 27 of file Pythonizations.py.
|
private |
Definition at line 31 of file Pythonizations.py.
list GaudiPython.Pythonizations.__all__ = [ ] |
Definition at line 8 of file Pythonizations.py.
GaudiPython.Pythonizations._eq = gbl.Gaudi.StringKey.__cpp_eq__ |
Definition at line 105 of file Pythonizations.py.
GaudiPython.Pythonizations._ne = gbl.Gaudi.StringKey.__cpp_ne__ |
Definition at line 110 of file Pythonizations.py.