diff --git a/Framework/PythonInterface/plugins/algorithms/LRAutoReduction.py b/Framework/PythonInterface/plugins/algorithms/LRAutoReduction.py index f2da40bbef62871585a8ecd2a7f8dba20422a779..5d60757993e38875db3ce7a96877419555dc8a4e 100644 --- a/Framework/PythonInterface/plugins/algorithms/LRAutoReduction.py +++ b/Framework/PythonInterface/plugins/algorithms/LRAutoReduction.py @@ -39,7 +39,8 @@ class LRAutoReduction(PythonAlgorithm): "Pixel range to use for calculating the primary fraction correction.") self.declareProperty(IntArrayProperty("DirectBeamList", [], direction=Direction.Input), "List of direct beam run numbers (integers)") - self.declareProperty(FileProperty("ScalingFactorFile", "", FileAction.OptionalLoad, extensions=['.cfg', '.txt']), "Scaling factor file") + self.declareProperty(FileProperty("ScalingFactorFile", "", FileAction.OptionalLoad, + extensions=['.cfg', '.txt']), "Scaling factor file") self.declareProperty("IncidentMedium", "medium", "Name of the incident medium") # --------------------------------------------------------------------- @@ -146,7 +147,7 @@ class LRAutoReduction(PythonAlgorithm): if sequence_number == -1: logger.notice("Title: %s" % title) - raise(RuntimeError, "Could not identify sequence number. Make sure the run title ends with -n where 1 < n < 7") + raise RuntimeError("Could not identify sequence number. Make sure the run title ends with -n where 1 < n < 7") return first_run_of_set, sequence_number, is_direct_beam @@ -195,7 +196,7 @@ class LRAutoReduction(PythonAlgorithm): elif len(s.data_sets) > 0: data_set = s.data_sets[0] else: - raise(RuntimeError, "Invalid reduction template") + raise RuntimeError("Invalid reduction template") self.data_series_template = s @@ -298,14 +299,14 @@ class LRAutoReduction(PythonAlgorithm): _incident_medium = self.getProperty("IncidentMedium").value incident_medium = self._read_property(meta_data_run, "incident_medium", _incident_medium, is_string=True) - + q_min = self._read_property(meta_data_run, "output_q_min", 0.001) q_step = -abs(self._read_property(meta_data_run, "output_q_step", 0.02)) dQ_constant = self._read_property(meta_data_run, "dq_constant", 0.004) dQ_slope = self._read_property(meta_data_run, "dq_slope", 0.02) angle_offset = self._read_property(meta_data_run, "angle_offset", 0.016) angle_offset_err = self._read_property(meta_data_run, "angle_offset_error", 0.001) - + _sf_file = self.getProperty("ScalingFactorFile").value sf_file = self._read_property(meta_data_run, "scaling_factor_file", _sf_file, is_string=True) @@ -414,7 +415,7 @@ class LRAutoReduction(PythonAlgorithm): # Raise an exception if we haven't found our direct beam run if direct_beam_found is None: - raise(RuntimeError, "Could not find a valid direct beam run for wl=%s in %s" % (data_wl, str(direct_beam_runs))) + raise RuntimeError("Could not find a valid direct beam run for wl=%s in %s" % (data_wl, str(direct_beam_runs))) # Find the direct beam peak peak, low_res = self._find_peaks(direct_beam_data)