Base class for extensions to persistency configuration in GaudiPython.
Definition at line 98 of file Persistency.py.
◆ __init__()
def GaudiPython.Persistency.PersistencyHelper.__init__ |
( |
|
self, |
|
|
|
types |
|
) |
| |
Define the type of persistencies supported by the instance.
Definition at line 103 of file Persistency.py.
103 def __init__(self, types):
105 Define the type of persistencies supported by the instance.
107 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 109 of file Persistency.py.
109 def handle(self, typ):
111 Returns True if the current instance understands the requested
114 return typ
in self.types
◆ types
GaudiPython.Persistency.PersistencyHelper.types |
The documentation for this class was generated from the following file: