Base class for extensions to persistency configuration in GaudiPython.
Definition at line 94 of file Persistency.py.
◆ __init__()
def GaudiPython.Persistency.PersistencyHelper.__init__ |
( |
|
self, |
|
|
|
types |
|
) |
| |
Define the type of persistencies supported by the instance.
Definition at line 99 of file Persistency.py.
99 def __init__(self, types):
101 Define the type of persistencies supported by the instance.
103 self.types = set(types)
◆ handle()
def GaudiPython.Persistency.PersistencyHelper.handle |
( |
|
self, |
|
|
|
typ |
|
) |
| |
Returns True if the current instance understands the requested
persistency type.
Definition at line 105 of file Persistency.py.
105 def handle(self, typ):
107 Returns True if the current instance understands the requested
110 return typ
in self.types
◆ types
GaudiPython.Persistency.PersistencyHelper.types |
The documentation for this class was generated from the following file: