diff --git a/hexrd/config/findorientations.py b/hexrd/config/findorientations.py index 5326796b7..c66034bc8 100644 --- a/hexrd/config/findorientations.py +++ b/hexrd/config/findorientations.py @@ -223,6 +223,12 @@ def bin_frames(self): 'find_orientations:orientation_maps:bin_frames', default=1 ) + @property + def eta_step(self): + return self._cfg.get( + 'find_orientations:orientation_maps:eta_step', default=0.25 + ) + @property def file(self): temp = self._cfg.get('find_orientations:orientation_maps:file', diff --git a/hexrd/findorientations.py b/hexrd/findorientations.py index 76721972e..36f08f1cc 100755 --- a/hexrd/findorientations.py +++ b/hexrd/findorientations.py @@ -567,6 +567,7 @@ def generate_eta_ome_maps(cfg, hkls=None, save=True): eta_ome = instrument.GenerateEtaOmeMaps( imsd, cfg.instrument.hedm, plane_data, active_hkls=active_hklIDs, + eta_step=cfg.find_orientations.orientation_maps.eta_step, threshold=cfg.find_orientations.orientation_maps.threshold, ome_period=ome_period)