Skip to content

Commit

Permalink
Fixed another mistake in the parsing....tested and it now works. This…
Browse files Browse the repository at this point in the history
… refs #4303
  • Loading branch information
JeanBilheux committed May 24, 2012
1 parent 5384662 commit 3ab5d56
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(getFieldValue(sfFactorTable[i][6]))
b = float(getFieldValue(sfFactorTable[i][7]))
a_error = float(getFieldValue(sfFactorTable[i][8]))
b_error = float(getFieldValue(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 3ab5d56

Please sign in to comment.