|
| 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 316 of file semantics.py.
◆ __init__()
| def GaudiConfig2.semantics.SequenceSemantics.__init__ |
( |
|
self, |
|
|
|
cpp_type, |
|
|
|
name = None, |
|
|
|
valueSem = None |
|
) |
| |
Definition at line 319 of file semantics.py.
319 def __init__(self, cpp_type, name=None, valueSem=None):
320 super(SequenceSemantics, self).__init__(cpp_type, name)
◆ default()
| def GaudiConfig2.semantics.SequenceSemantics.default |
( |
|
self, |
|
|
|
value |
|
) |
| |
Definition at line 330 of file semantics.py.
331 new_value = _ListHelper(self.value_semantics)
332 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 335 of file semantics.py.
335 def opt_value(self, value):
337 Option string version of value.
339 if not isinstance(value, _ListHelper):
340 value = self.default(value)
341 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: