Example #1
0
    def getFiles(self):
        filePaths = EMSet.getFiles(self)
        filePaths.update(self.getTilted().getFiles())
        filePaths.update(self.getUntilted().getFiles())

        return filePaths
Example #2
0
 def close(self):
     if self._tilted is not None:
         self._tilted.close()
     if self._untilted is not None:
         self._untilted.close()
     EMSet.close(self)
Example #3
0
 def close(self):
     if self._tilted is not None:
         self._tilted.close()
     if self._untilted is not None:
         self._untilted.close()
     EMSet.close(self)    
Example #4
0
 def __init__(self, **kwargs):
     EMSet.__init__(self, **kwargs)
     self._tilted = None
     self._untilted = None
Example #5
0
 def __init__(self, **kwargs):
     EMSet.__init__(self, **kwargs)
     self._tilted = None
     self._untilted = None
Example #6
0
 def getFiles(self):
     filePaths = EMSet.getFiles(self)
     filePaths.update(self.getTilted().getFiles())
     filePaths.update(self.getUntilted().getFiles())
     
     return filePaths 
Example #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)
Example #8
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
Example #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)
Example #10
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
     self._tilted = None#SetOfCoordinates()
     self._untilted = None#SetOfCoordinates()
     self._angles = SetOfAngles()
     self._micsPair = Pointer()
Example #11
0
 def close(self):
     self._tilted.close()
     self._untilted.close()
     EMSet.close(self)
Example #12
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
     self._tilted = None#SetOfMicrographs()
     self._untilted = None#SetOfMicrographs()
Example #13
0
 def __init__(self, **args):
     EMSet.__init__(self, **args)
     self._tilted = None#SetOfImages()
     self._untilted = None#SetOfImages()
     self._coordsPair = Pointer()