Skip to content

Commit

Permalink
Modify information output. Refs #6747.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Apr 5, 2013
1 parent 0c6fdf5 commit 709a789
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Code/Mantid/Framework/CurveFitting/src/LeBailFit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1837,13 +1837,17 @@ namespace CurveFitting
if (colname.compare("FitOrTie") != 0 && colname.compare("Name") != 0)
{
// double data
g_log.information() << "Col-name = " << colname << ", ";
trow >> dblvalue;
g_log.information() << "Value = " << dblvalue << ".\n";;
tempdblmap.insert(std::make_pair(colname, dblvalue));
}
else
{
// string data
g_log.information() << "Col-name = " << colname << ", ";
trow >> strvalue;
g_log.information() << "Value = " << strvalue << ".\n";
tempstrmap.insert(std::make_pair(colname, strvalue));
}
}
Expand Down

0 comments on commit 709a789

Please sign in to comment.