The Gaudi Framework  v40r0 (475e45c1)
GaudiConfig2.semantics.DefaultSemantics Class Reference
Inheritance diagram for GaudiConfig2.semantics.DefaultSemantics:
Collaboration diagram for GaudiConfig2.semantics.DefaultSemantics:

Public Member Functions

def default (self, value)
 
def store (self, value)
 
def is_set (self, value)
 
- Public Member Functions inherited from GaudiConfig2.semantics.PropertySemantics
def __init__ (self, cpp_type)
 
def name (self)
 
def name (self, value)
 
def cpp_type (self)
 
def cpp_type (self, value)
 
def load (self, value)
 
def opt_value (self, value)
 
def merge (self, a, b)
 

Private Attributes

 _default
 
 _is_set
 

Static Private Attributes

 __handled_types__
 

Additional Inherited Members

- Public Attributes inherited from GaudiConfig2.semantics.PropertySemantics
 cpp_type
 

Detailed Description

Special semantics that makes a deep copy of the default value on first access
and considers a property set if its value is different from the default.

This semantics is meant to be used whenever there is no specific semantic
(with proper change detection) implemented for a type.

Definition at line 99 of file semantics.py.

Member Function Documentation

◆ default()

def GaudiConfig2.semantics.DefaultSemantics.default (   self,
  value 
)

Definition at line 110 of file semantics.py.

110  def default(self, value):
111  # remember the default value we got and return a copy
112  self._default = value
113  self._is_set = False
114  return copy.deepcopy(value)
115 

◆ is_set()

def GaudiConfig2.semantics.DefaultSemantics.is_set (   self,
  value 
)
Allow overriding the definition of "is set" if we need helper types.

Reimplemented from GaudiConfig2.semantics.PropertySemantics.

Definition at line 121 of file semantics.py.

121  def is_set(self, value):
122  try:
123  # we assume the property was set if it was changed
124  return self._is_set or self._default != value
125  except AttributeError:
126  # either self._is_set or self._default is not defined,
127  # so the value was not explicitly set nor modified
128  # from the default
129  return False
130 
131 

◆ store()

def GaudiConfig2.semantics.DefaultSemantics.store (   self,
  value 
)
Validation/transformation of the data to be stored.

Reimplemented from GaudiConfig2.semantics.PropertySemantics.

Reimplemented in GaudiConfig2.semantics.GaudiHandleArraySemantics.

Definition at line 116 of file semantics.py.

116  def store(self, value):
117  # flag that the value was explicitly set
118  self._is_set = True
119  return super(DefaultSemantics, self).store(value)
120 

Member Data Documentation

◆ __handled_types__

GaudiConfig2.semantics.DefaultSemantics.__handled_types__
staticprivate

Definition at line 108 of file semantics.py.

◆ _default

GaudiConfig2.semantics.DefaultSemantics._default
private

Definition at line 112 of file semantics.py.

◆ _is_set

GaudiConfig2.semantics.DefaultSemantics._is_set
private

Definition at line 113 of file semantics.py.


The documentation for this class was generated from the following file:
gaudirun.default
default
Definition: gaudirun.py:188