From 5901b479d968adc1eb463f805911fe038e920149 Mon Sep 17 00:00:00 2001
From: Bertrand Bellenot <bertrand.bellenot@cern.ch>
Date: Tue, 3 Oct 2017 08:51:32 +0200
Subject: [PATCH] formatting (clang-format)

---
 hist/hist/src/AnalyticalIntegrals.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hist/hist/src/AnalyticalIntegrals.cxx b/hist/hist/src/AnalyticalIntegrals.cxx
index 885023265e0..7aa3c3348b2 100644
--- a/hist/hist/src/AnalyticalIntegrals.cxx
+++ b/hist/hist/src/AnalyticalIntegrals.cxx
@@ -51,10 +51,10 @@ Double_t AnalyticalIntegral(TF1 *f, Double_t a, Double_t b)
       double amp   = p[0];
       double mean  = p[1];
       double sigma = p[2];
-      if (formula->TestBit(TFormula::kNormalized) )
+      if (formula->TestBit(TFormula::kNormalized))
          result = amp * (ROOT::Math::gaussian_cdf(xmax, sigma, mean) - ROOT::Math::gaussian_cdf(xmin, sigma, mean));
       else
-         result = amp * sqrt(2*TMath::Pi()) * sigma *
+         result = amp * sqrt(2 * TMath::Pi()) * sigma *
                   (ROOT::Math::gaussian_cdf(xmax, sigma, mean) - ROOT::Math::gaussian_cdf(xmin, sigma, mean)); //
    }
    else if (num == 400)//landau: root::math::landau(x,mpv=0,sigma=1,bool norm=false)
-- 
GitLab