Skip to content

Commit

Permalink
Fix remaining issues in WorkflowAlgorithms
Browse files Browse the repository at this point in the history
Refs #11146
  • Loading branch information
DanNixon committed Feb 20, 2015
1 parent 9eb6943 commit 6f41707
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
Expand Up @@ -61,6 +61,15 @@ def _make_list(a, l1, l2):

class MolDyn(PythonAlgorithm):

_plot = None
_save = None
_sam_path = None
_symmetrise = None
_functions = None
_emax = None
_res_ws = None
_out_ws = None

def category(self):
return 'Workflow\\Inelastic;PythonAlgorithms;Inelastic'

Expand Down
Expand Up @@ -145,6 +145,14 @@ def isInRanges(rangeList, n):
class OSIRISDiffractionReduction(PythonAlgorithm):
""" Handles the reduction of OSIRIS Diffraction Data.
"""

_cal = None
_outputWsName = None
_sams = None
_vans = None
_samMap = None
_vanMap = None

def category(self):
return 'Diffraction;PythonAlgorithms'

Expand Down
Expand Up @@ -10,6 +10,8 @@ class SANSAbsoluteScale(PythonAlgorithm):
Normalise detector counts by the sample thickness
"""

instrument = None

def category(self):
return "Workflow\\SANS\\UsesPropertyManager"

Expand Down
Expand Up @@ -47,6 +47,16 @@ def _count_monitors(raw_file):

class TimeSlice(PythonAlgorithm):

_raw_files = None
_spectra_range = None
_peak_range = None
_output_ws_name_suffix = None
_background_range = None
_calib_ws = None
_out_ws_group = None
_plot = None
_save = None

def category(self):
return 'PythonAlgorithms;Inelastic'

Expand Down
Expand Up @@ -9,6 +9,13 @@

class USANSReduction(PythonAlgorithm):

wl_list = None
data_files = None
total_points = None
q_output = None
iq_output = None
iq_err_output = None

def category(self):
return "SANS"

Expand Down

0 comments on commit 6f41707

Please sign in to comment.