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

        FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)
        FormatStill.__init__(self, image_file, **kwargs)

        return
示例#2
0
  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))

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

    return
示例#3
0
    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)

        FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)
    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)

        FormatCBFMiniPilatus.__init__(self, image_file)

        self._raw_data = None

        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))

    self._raw_data = None
    self._multi_panel = kwargs.get('multi_panel', False)
    FormatCBFMiniPilatus.__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)

        self._raw_data = None
        self._multi_panel = kwargs.get('multi_panel', False)
        FormatCBFMiniPilatus.__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))

        self._dynamic_shadowing = kwargs.get('dynamic_shadowing', False)
        self._multi_panel = kwargs.get('multi_panel', False)
        FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)

        self._raw_data = None

        return
示例#8
0
    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)

        self._dynamic_shadowing = self.has_dynamic_shadowing(**kwargs)
        self._multi_panel = kwargs.get("multi_panel", False)
        FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)

        self._raw_data = None
    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))

        # if multi_panel == False, then interpret data as 24 panels, where each row
        # of 5 panels is grouped as one "panel"
        # elif multi_panel == True, then interpret data as 120 panels,
        # 24 rows * 5 columns
        self._dynamic_shadowing = kwargs.get('dynamic_shadowing', False)
        self._multi_panel = kwargs.get('multi_panel', False)
        FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)

        self._raw_data = None

        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)

        # if multi_panel == False, then interpret data as 24 panels, where each
        # row of 5 panels is grouped as one "panel"
        # elif multi_panel == True, then interpret data as 120 panels,
        # 24 rows * 5 columns
        self._dynamic_shadowing = self.has_dynamic_shadowing(**kwargs)
        self._multi_panel = kwargs.get("multi_panel", False)
        FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)

        self._raw_data = None
  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))

    # if multi_panel == False, then interpret data as 24 panels, where each row
    # of 5 panels is grouped as one "panel"
    # elif multi_panel == True, then interpret data as 120 panels,
    # 24 rows * 5 columns
    self._dynamic_shadowing = kwargs.get('dynamic_shadowing', False)
    self._multi_panel = kwargs.get('multi_panel', False)
    FormatCBFMiniPilatus.__init__(self, image_file, **kwargs)

    self._raw_data = None


    return