def __init__(self, image_file, **kwargs):
        '''Initialise the image structure from the given file, including a
    proper model of the experiment.'''

        assert (self.understand(image_file))
        FormatTIFFRayonix.__init__(self, image_file, **kwargs)

        return
  def __init__(self, image_file):
    '''Initialise the image structure from the given file, including a
    proper model of the experiment.'''

    assert(self.understand(image_file))
    FormatTIFFRayonix.__init__(self, image_file)

    return
    def __init__(self, image_file, **kwargs):
        """Initialise the image structure from the given file, including a
        proper model of the experiment."""

        from dxtbx import IncorrectFormatError

        if not self.understand(image_file):
            raise IncorrectFormatError(self, image_file)
        FormatTIFFRayonix.__init__(self, image_file, **kwargs)
    def __init__(self, image_file, **kwargs):
        '''Initialise the image structure from the given file, including a
    proper model of the experiment.'''

        assert (self.understand(image_file))

        from iotbx.detectors.mar import MARImage
        MARImage._read_header_asserts = lambda self: None
        FormatTIFFRayonix.__init__(self, image_file, **kwargs)

        return
  def __init__(self, image_file, **kwargs):
    '''Initialise the image structure from the given file, including a
    proper model of the experiment.'''

    assert(self.understand(image_file))

    from iotbx.detectors.mar import MARImage
    MARImage._read_header_asserts = lambda self: None
    FormatTIFFRayonix.__init__(self, image_file, **kwargs)

    return
    def __init__(self, image_file, **kwargs):
        """Initialise the image structure from the given file, including a
        proper model of the experiment."""

        from dxtbx import IncorrectFormatError

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

        from iotbx.detectors.mar import MARImage

        MARImage._read_header_asserts = lambda self: None
        FormatTIFFRayonix.__init__(self, image_file, **kwargs)