Skip to content

Commit

Permalink
Supress warning for multiple scans being present for ToF data.
Browse files Browse the repository at this point in the history
  • Loading branch information
toastisme committed May 1, 2024
1 parent edcad2e commit 71c435b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dials/algorithms/refinement/refiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ def print_exp_rmsd_table(self):
def print_panel_rmsd_table(self):
"""print useful output about refinement steps in the form of a simple table"""

if len(self._experiments.scans()) > 1:
if len(self._experiments.scans()) > 1 and not self._experiments.all_tof():
logger.warning(
"Multiple scans present. Only the first scan will be used "
"to determine the image width for reporting RMSDs"
Expand Down

0 comments on commit 71c435b

Please sign in to comment.