|
def | __init__ (self, cpp_type, name=None, valueSem=None) |
|
def | store (self, value) |
|
def | default (self, value) |
|
def | opt_value (self, value) |
|
def | __init__ (self, cpp_type, name=None) |
|
def | cpp_type (self) |
|
def | cpp_type (self, value) |
|
def | load (self, value) |
|
def | is_set (self, value) |
|
def | merge (self, a, b) |
|
Definition at line 349 of file semantics.py.
◆ __init__()
def GaudiConfig2.semantics.SequenceSemantics.__init__ |
( |
|
self, |
|
|
|
cpp_type, |
|
|
|
name = None , |
|
|
|
valueSem = None |
|
) |
| |
Definition at line 352 of file semantics.py.
352 def __init__(self, cpp_type, name=None, valueSem=None):
353 super(SequenceSemantics, self).__init__(cpp_type, name)
◆ default()
def GaudiConfig2.semantics.SequenceSemantics.default |
( |
|
self, |
|
|
|
value |
|
) |
| |
Definition at line 363 of file semantics.py.
364 new_value = _ListHelper(self.value_semantics)
365 new_value.default = value
◆ opt_value()
def GaudiConfig2.semantics.SequenceSemantics.opt_value |
( |
|
self, |
|
|
|
value |
|
) |
| |
Option string version of value.
Reimplemented from GaudiConfig2.semantics.PropertySemantics.
Definition at line 368 of file semantics.py.
368 def opt_value(self, value):
370 Option string version of value.
372 if not isinstance(value, _ListHelper):
373 value = self.default(value)
374 return value.opt_value()
◆ store()
def GaudiConfig2.semantics.SequenceSemantics.store |
( |
|
self, |
|
|
|
value |
|
) |
| |
◆ __handled_types__
tuple GaudiConfig2.semantics.SequenceSemantics.__handled_types__ = (re.compile(r"(std::)?(vector|list)<.*>$"),) |
|
staticprivate |
◆ value_semantics
GaudiConfig2.semantics.SequenceSemantics.value_semantics |
The documentation for this class was generated from the following file: