From cca6be87b770ca3560423a0c81b04633a91a8c87 Mon Sep 17 00:00:00 2001
From: doligez <doligez@ipno.in2p3.fr>
Date: Wed, 28 Feb 2018 23:36:33 +0100
Subject: [PATCH] =?UTF-8?q?Correction=20de=20caract=C3=A8res=20de=20mac=20?=
 =?UTF-8?q?qui=20trainouille?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 source/src/EquivalenceModel.cxx | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/source/src/EquivalenceModel.cxx b/source/src/EquivalenceModel.cxx
index 68530b48c..73571daed 100644
--- a/source/src/EquivalenceModel.cxx
+++ b/source/src/EquivalenceModel.cxx
@@ -151,16 +151,16 @@ bool EquivalenceModel::isIVInDomain(IsotopicVector IV)
         for (map< ZAI, pair<double, double> >::iterator Domain_it = fZAILimits.begin(); Domain_it != fZAILimits.end(); Domain_it++)
         {
             double ThatZAIProp = IVNorm.GetIsotopicQuantity()[Domain_it->first];
-            double ThatZAIMin   = Domain_it->second.first;
-            double ThatZAIMax   = Domain_it->second.second;
-            if ( (ThatZAIProp > ThatZAIMax) || (ThatZAIProp <   ThatZAIMin) )
+            double ThatZAIMin = Domain_it->second.first;
+            double ThatZAIMax = Domain_it->second.second;
+            if ( (ThatZAIProp > ThatZAIMax) || (ThatZAIProp < ThatZAIMin) )
             {
                 IsInDomain = false;
 
                 WARNING << "Fresh fuel out of model range" << endl;
                 WARNING << "\t AT LEAST this ZAI is accused to be outrange :" << endl;
                 WARNING << "\t\t" << Domain_it->first.Z() << " " << Domain_it->first.A() << " " << Domain_it->first.I() << endl;
-                WARNING << "\t\t min = " << ThatZAIMin   << " value = " << ThatZAIProp << " max = " << ThatZAIMax << endl;
+                WARNING << "\t\t min = " << ThatZAIMin << " value = " << ThatZAIProp << " max = " << ThatZAIMax << endl;
                 WARNING << "\t IV accused :" << endl << endl;
                 WARNING << IVNorm.sPrint() << endl;
                 break;
-- 
GitLab