From cf552c11f654ce9abf15436ec2d273edaa67cb0a Mon Sep 17 00:00:00 2001
From: Vickie Lynch <lynchve@ornl.gov>
Date: Mon, 1 Oct 2018 22:25:17 -0400
Subject: [PATCH] Refs #23614 clang-format

---
 Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp b/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp
index cf68bd0baca..76947757879 100644
--- a/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp
+++ b/Framework/MDAlgorithms/src/IntegratePeaksMD2.cpp
@@ -522,10 +522,12 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) {
 
         IFunction_sptr ifun = fitAlgorithm->getProperty("Function");
         if (i == 0) {
-          out << std::setw(20) << "spectrum" << " ";
+          out << std::setw(20) << "spectrum"
+              << " ";
           for (size_t j = 0; j < ifun->nParams(); ++j)
             out << std::setw(20) << ifun->parameterName(j) << " ";
-          out << std::setw(20) << "chi2" << " ";
+          out << std::setw(20) << "chi2"
+              << " ";
           out << "\n";
         }
         out << std::setw(20) << i << " ";
@@ -534,7 +536,8 @@ void IntegratePeaksMD2::integrate(typename MDEventWorkspace<MDE, nd>::sptr ws) {
               << ifun->getParameter(j) << " ";
         }
         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::dynamic_pointer_cast<const CompositeFunction>(ifun);
-- 
GitLab