Skip to content
Snippets Groups Projects
Commit cf552c11 authored by Lynch, Vickie's avatar Lynch, Vickie
Browse files

Refs #23614 clang-format

parent 304ed8cc
No related branches found
No related tags found
No related merge requests found
...@@ -522,10 +522,12 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) { ...@@ -522,10 +522,12 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) {
IFunction_sptr ifun = fitAlgorithm->getProperty("Function"); IFunction_sptr ifun = fitAlgorithm->getProperty("Function");
if (i == 0) { if (i == 0) {
out << std::setw(20) << "spectrum" << " "; out << std::setw(20) << "spectrum"
<< " ";
for (size_t j = 0; j < ifun->nParams(); ++j) for (size_t j = 0; j < ifun->nParams(); ++j)
out << std::setw(20) << ifun->parameterName(j) << " "; out << std::setw(20) << ifun->parameterName(j) << " ";
out << std::setw(20) << "chi2" << " "; out << std::setw(20) << "chi2"
<< " ";
out << "\n"; out << "\n";
} }
out << std::setw(20) << i << " "; out << std::setw(20) << i << " ";
...@@ -534,7 +536,8 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) { ...@@ -534,7 +536,8 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) {
<< ifun->getParameter(j) << " "; << ifun->getParameter(j) << " ";
} }
double chi2 = fitAlgorithm->getProperty("OutputChi2overDoF"); double chi2 = fitAlgorithm->getProperty("OutputChi2overDoF");
out << std::setw(20) << std::fixed << std::setprecision(10) << chi2 << "\n"; out << std::setw(20) << std::fixed << std::setprecision(10) << chi2
<< "\n";
boost::shared_ptr<const CompositeFunction> fun = boost::shared_ptr<const CompositeFunction> fun =
boost::dynamic_pointer_cast<const CompositeFunction>(ifun); boost::dynamic_pointer_cast<const CompositeFunction>(ifun);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment