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 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 __init__(self, **kwargs):
     EMSet.__init__(self, **kwargs)
     self._tilted = None
     self._untilted = None
 def getFiles(self):
     filePaths = EMSet.getFiles(self)
     filePaths.update(self.getTilted().getFiles())
     filePaths.update(self.getUntilted().getFiles())
     
     return filePaths 
Exemple #7
0
 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)
Exemple #9
0
 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)
Exemple #10
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
     self._tilted = None#SetOfCoordinates()
     self._untilted = None#SetOfCoordinates()
     self._angles = SetOfAngles()
     self._micsPair = Pointer()
Exemple #11
0
 def close(self):
     self._tilted.close()
     self._untilted.close()
     EMSet.close(self)
Exemple #12
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
     self._tilted = None#SetOfMicrographs()
     self._untilted = None#SetOfMicrographs()
Exemple #13
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
     self._tilted = None#SetOfImages()
     self._untilted = None#SetOfImages()
     self._coordsPair = Pointer()