Skip to content

Commit

Permalink
Fixed an error in the parsing of the a,b, error_a and error_b paramet…
Browse files Browse the repository at this point in the history
…ers when running the reduction. This refs #4303
  • Loading branch information
JeanBilheux committed May 24, 2012
1 parent 6fe800d commit 5384662
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -776,10 +776,10 @@ def applySF(InputWorkspace,


print '--> Found a perfect match'
a = float(sfFactorTable[i][6])
b = float(sfFactorTable[i][7])
a_error = float(sfFactorTable[i][8])
b_error = float(sfFactorTable[i][9])
a = float(getFieldValue(sfFactorTable[i][6]))
b = float(getFieldValue(sfFactorTable[i][7]))
a_error = float(getFieldValue(sfFactorTable[i][8]))
b_error = float(getFieldValue(sfFactorTable[i][9]))

OutputWorkspace = _applySFtoArray(InputWorkspace,
a, b, a_error, b_error)
Expand Down

0 comments on commit 5384662

Please sign in to comment.