Пример #1
0
    def __init__(self, image_file, **kwargs):
        """Initialise the image structure from the given file."""

        assert self.understand(image_file)

        self._dynamic_shadowing = self.has_dynamic_shadowing(**kwargs)
        FormatCBFFullPilatus.__init__(self, image_file, **kwargs)
    def __init__(self, image_file, **kwargs):
        '''Initialise the image structure from the given file.'''

        assert (self.understand(image_file))

        FormatCBFFullPilatus.__init__(self, image_file, **kwargs)

        return
Пример #3
0
    def __init__(self, image_file, **kwargs):
        '''Initialise the image structure from the given file.'''

        import libtbx
        assert (self.understand(image_file))

        self._dynamic_shadowing = self.has_dynamic_shadowing(**kwargs)
        FormatCBFFullPilatus.__init__(self, image_file, **kwargs)
  def __init__(self, image_file, **kwargs):
    '''Initialise the image structure from the given file.'''

    assert(self.understand(image_file))

    FormatCBFFullPilatus.__init__(self, image_file, **kwargs)

    return
    def __init__(self, image_file):
        """Initialise the image structure from the given file."""

        assert self.understand(image_file)

        FormatCBFFullPilatus.__init__(self, image_file)

        return
    def __init__(self, image_file, **kwargs):
        """Initialise the image structure from the given file."""
        from dxtbx import IncorrectFormatError

        if not self.understand(image_file):
            raise IncorrectFormatError(self, image_file)

        self._dynamic_shadowing = self.has_dynamic_shadowing(**kwargs)
        FormatCBFFullPilatus.__init__(self, image_file, **kwargs)
    def __init__(self, image_file, **kwargs):
        '''Initialise the image structure from the given file.'''

        assert (self.understand(image_file))

        self._dynamic_shadowing = kwargs.get('dynamic_shadowing', False)
        FormatCBFFullPilatus.__init__(self, image_file, **kwargs)

        return
    def __init__(self, image_file, **kwargs):
        '''Initialise the image structure from the given file.'''

        from dxtbx import IncorrectFormatError
        if not self.understand(image_file):
            raise IncorrectFormatError(self, image_file)

        FormatCBFFullPilatus.__init__(self, image_file, **kwargs)

        return