From c57142a2e67f47dad9c5d1dfbbab4fc7e83848d4 Mon Sep 17 00:00:00 2001
From: Julien Michel <julien.michel@orfeo-toolbox.org>
Date: Mon, 24 Nov 2014 12:08:23 +0100
Subject: [PATCH] BUG: bug in PHR mode detection logic

---
 Applications/Projections/otbSuperimpose.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Applications/Projections/otbSuperimpose.cxx b/Applications/Projections/otbSuperimpose.cxx
index 9011380227..f78c135240 100644
--- a/Applications/Projections/otbSuperimpose.cxx
+++ b/Applications/Projections/otbSuperimpose.cxx
@@ -146,7 +146,7 @@ private:
 
   void DoUpdateParameters()
   {
-    if(HasUserValue("mode") && HasValue("inr") && HasValue("inm") && otb::PleiadesPToXSAffineTransformCalculator::CanCompute(GetParameterImage("inr"),GetParameterImage("inm")))
+    if(!HasUserValue("mode") && HasValue("inr") && HasValue("inm") && otb::PleiadesPToXSAffineTransformCalculator::CanCompute(GetParameterImage("inr"),GetParameterImage("inm")))
       {
       otbAppLogWARNING("Forcing PHR mode with PHR data. You need to add \"-mode default\" to force the default mode with PHR images.");
       SetParameterString("mode","phr");
-- 
GitLab