Skip to content

Commit

Permalink
Corrected osc_start is not in the params dictionary (PR854)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Gruzinov committed Feb 21, 2024
1 parent 33759a9 commit e56e821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mxcubecore/HardwareObjects/Beamline.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ def get_default_acquisition_parameters(self, acquisition_type="default"):

motor_positions = self.diffractometer.get_positions()

osc_start = motor_positions.get("phi")
osc_start = params.get("osc_start") or motor_positions.get("phi")

acq_parameters.osc_start = osc_start
kappa = motor_positions.get("kappa", False)
Expand Down

0 comments on commit e56e821

Please sign in to comment.