Source code for openpathsampling.storage.stores.pathsimulator
from openpathsampling.pathsimulators import PathSimulator
from openpathsampling.netcdfplus import NamedObjectStore
[docs]
class PathSimulatorStore(NamedObjectStore):
def to_dict(self):
return {}
def _load(self, idx):
obj = super(PathSimulatorStore, self)._load(idx)
if hasattr(obj, 'storage'):
obj.storage = self.storage
return obj