Skip to content

Commit

Permalink
Fixed a bug. Refs #7789.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Apr 9, 2014
1 parent bc56ba0 commit cb2a91b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Code/Mantid/Framework/Algorithms/src/FindPeaks.cpp
Expand Up @@ -308,6 +308,8 @@ namespace Algorithms
// Output raw peak parameters
size_t numpeakpars = m_peakFunction->nParams();
size_t numbkgdpars = m_backgroundFunction->nParams();
m_numTableParams = numpeakpars + numbkgdpars;

for (size_t i = 0; i < numpeakpars; ++i)
m_outPeakTableWS->addColumn("double", m_peakParameterNames[i]);
for (size_t i = 0; i < numbkgdpars; ++i)
Expand Down

0 comments on commit cb2a91b

Please sign in to comment.