|
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 296 of file semantics.py.
◆ __init__()
def GaudiConfig2.semantics.SequenceSemantics.__init__ |
( |
|
self, |
|
|
|
cpp_type, |
|
|
|
name = None , |
|
|
|
valueSem = None |
|
) |
| |
Definition at line 299 of file semantics.py.
299 def __init__(self, cpp_type, name=None, valueSem=None):
300 super(SequenceSemantics, self).__init__(cpp_type, name)
◆ default()
def GaudiConfig2.semantics.SequenceSemantics.default |
( |
|
self, |
|
|
|
value |
|
) |
| |
Definition at line 309 of file semantics.py.
310 new_value = _ListHelper(self.value_semantics)
311 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 314 of file semantics.py.
314 def opt_value(self, value):
316 Option string version of value.
318 if not isinstance(value, _ListHelper):
319 value = self.default(value)
320 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: