def getFiles(self): filePaths = EMSet.getFiles(self) filePaths.update(self.getTilted().getFiles()) filePaths.update(self.getUntilted().getFiles()) return filePaths
def close(self): if self._tilted is not None: self._tilted.close() if self._untilted is not None: self._untilted.close() EMSet.close(self)
def __init__(self, **kwargs): EMSet.__init__(self, **kwargs) self._tilted = None self._untilted = None
def write(self, properties=True): if self._tilted is not None: self._tilted.write(properties=properties) if self._untilted is not None: self._untilted.write(properties=properties) EMSet.write(self, properties=properties)
def __init__(self, **args): EMSet.__init__(self, **args)
def __init__(self, **args): EMSet.__init__(self, **args) self._tilted = None#SetOfCoordinates() self._untilted = None#SetOfCoordinates() self._angles = SetOfAngles() self._micsPair = Pointer()
def close(self): self._tilted.close() self._untilted.close() EMSet.close(self)
def __init__(self, **args): EMSet.__init__(self, **args) self._tilted = None#SetOfMicrographs() self._untilted = None#SetOfMicrographs()
def __init__(self, **args): EMSet.__init__(self, **args) self._tilted = None#SetOfImages() self._untilted = None#SetOfImages() self._coordsPair = Pointer()