Skip to content

Commit

Permalink
read offset (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet authored Nov 26, 2024
1 parent 20ccadb commit 431edd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RefRed/reduction/global_reduction_settings_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def retrieve_settings(self):
"scaling_factor_flag": self.parent.ui.scalingFactorFlag.isChecked(),
"scaling_factor_file": str(self.parent.full_scaling_factor_file_name),
"slits_width_flag": True,
"angle_offset": 0,
"angle_offset_error": 0,
"angle_offset": float(self.parent.ui.angleOffsetValue.text()),
"angle_offset_error": float(self.parent.ui.angleOffsetError.text()),
"tof_steps": float(self.parent.ui.eventTofBins.text()),
"apply_normalization": self.parent.ui.useNormalizationFlag.isChecked(),
"dead_time": self.parent.deadtime_settings, # an instance of `DeadTimeSettingsModel`
Expand Down

1 comment on commit 431edd6

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitLab pipeline for refred-dev has been submitted for this commit: "https://code.ornl.gov/sns-hfir-scse/deployments/conda-legacy-deploy/-/pipelines/642231"

Please sign in to comment.