From 8b4c26dd9a5d2818bf172d685c8cd46b735e7f55 Mon Sep 17 00:00:00 2001
From: Giovanni Bussi <giovanni.bussi@gmail.com>
Date: Wed, 4 Sep 2019 11:09:49 +0200
Subject: [PATCH] astyle

---
 src/gridtools/GridVessel.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gridtools/GridVessel.cpp b/src/gridtools/GridVessel.cpp
index 37c550d7d..119e2ebc1 100644
--- a/src/gridtools/GridVessel.cpp
+++ b/src/gridtools/GridVessel.cpp
@@ -97,9 +97,9 @@ void GridVessel::setBounds( const std::vector<std::string>& smin, const std::vec
     if( spacing.size()==dimension && binsin.size()==dimension ) {
       if( spacing[i]==0 ) nbin[i] = binsin[i];
       else {
-          double range = max[i] - min[i]; nbin[i] = std::ceil( range / spacing[i]);
-          // This check ensures that nbins is set correctly if spacing is set the same as the number of bins
-          if( nbin[i]!=binsin[i] ) plumed_merror("mismatch between input spacing and input number of bins");
+        double range = max[i] - min[i]; nbin[i] = std::ceil( range / spacing[i]);
+        // This check ensures that nbins is set correctly if spacing is set the same as the number of bins
+        if( nbin[i]!=binsin[i] ) plumed_merror("mismatch between input spacing and input number of bins");
       }
     } else if( binsin.size()==dimension ) nbin[i]=binsin[i];
     else if( spacing.size()==dimension ) nbin[i] = std::floor(( max[i] - min[i] ) / spacing[i]) + 1;
-- 
GitLab