This documentation page refers to a previous release of DIALS (2.2).
Click here to go to the corresponding page for the latest version of DIALS

Source code for dials.extensions.gaussian_rs_profile_model_ext

from __future__ import absolute_import, division, print_function


[docs]class GaussianRSProfileModelExt(object): """An extension class implementing a reciprocal space gaussian profile model.""" name = "gaussian_rs" default = True
[docs] @classmethod def phil(cls): from dials.algorithms.profile_model.gaussian_rs import phil_scope return phil_scope
[docs] @classmethod def algorithm(cls): from dials.algorithms.profile_model.gaussian_rs import Model return Model
[docs] @classmethod def from_dict(cls, d): return cls.algorithm().from_dict(d)