|
| 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 286 of file semantics.py.
◆ __init__()
| def GaudiConfig2.semantics.SequenceSemantics.__init__ |
( |
|
self, |
|
|
|
cpp_type, |
|
|
|
name = None, |
|
|
|
valueSem = None |
|
) |
| |
Definition at line 289 of file semantics.py.
289 def __init__(self, cpp_type, name=None, valueSem=None):
290 super(SequenceSemantics, self).__init__(cpp_type, name)
def getSemanticsFor(cpp_type, name=None)
def extract_template_args(cpp_type)
◆ default()
| def GaudiConfig2.semantics.SequenceSemantics.default |
( |
|
self, |
|
|
|
value |
|
) |
| |
Definition at line 299 of file semantics.py.
300 new_value = _ListHelper(self.value_semantics)
301 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 304 of file semantics.py.
304 def opt_value(self, value):
306 Option string version of value. 308 if not isinstance(value, _ListHelper):
309 value = self.default(value)
310 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: