Skip to content

Commit

Permalink
refs #11304. Fix issues from testing.
Browse files Browse the repository at this point in the history
Main issue is around padding of goniometer log inputs. Use zeros rather
than None, as Andrei suggests users may want to apply some but not all of
the goniometer angles in batch.
  • Loading branch information
OwenArnold committed Apr 2, 2015
1 parent c6ae615 commit 8628dda
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -189,13 +189,13 @@ def PyExec(self):
self._validate_inputs()

if len(psi) == 0:
psi = [None] * ws_entries
psi = [0.0] * ws_entries

if len(gl) == 0:
gl = [None] * ws_entries
gl = [0.0] * ws_entries

if len(gs) == 0:
gs = [None] * ws_entries
gs = [0.0] * ws_entries

output_workspace = None
run_md = None
Expand Down

0 comments on commit 8628dda

Please sign in to comment.