from __future__ import absolute_import, division, print_function
from xfel.merging.application.group.group_reflections import hkl_group
from xfel.merging.application.worker import factory as factory_base

class factory(factory_base):
  '''Factory class for grouping all measurements of an asu hkl from all ranks at a single rank'''
  @staticmethod
  def from_parameters(params, additional_info=None, mpi_helper=None, mpi_logger=None):
    """ """
    return [hkl_group(params, mpi_helper, mpi_logger)]
