From 43878efec9d589e5c9f0219e94ad76d47d4a96db Mon Sep 17 00:00:00 2001
From: Randolf Beerwerth <r.beerwerth@fz-juelich.de>
Date: Tue, 22 Sep 2020 12:55:49 +0200
Subject: [PATCH] remove unnecessary branch

---
 Core/RT/MatrixRTCoefficients_v3.cpp | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/Core/RT/MatrixRTCoefficients_v3.cpp b/Core/RT/MatrixRTCoefficients_v3.cpp
index 98919c7a34b..36f56c19ae9 100644
--- a/Core/RT/MatrixRTCoefficients_v3.cpp
+++ b/Core/RT/MatrixRTCoefficients_v3.cpp
@@ -52,10 +52,7 @@ Eigen::Matrix2cd MatrixRTCoefficients_v3::TransformationMatrix(complex_t eigenva
         Q << (1. + m_b.z()), (I * m_b.y() - m_b.x()), (m_b.x() + I * m_b.y()), (m_b.z() + 1.);
         return Q * exp2 * Q.adjoint() / factor1;
 
-    } else if (m_b.mag() < eps && eigenvalue != 0.)
-        return exp2;
-
-    else if (m_b.mag() < eps && eigenvalue == 0.)
+    } else if (m_b.mag() < eps)
         return exp2;
 
     throw std::runtime_error("Broken magnetic field vector");
-- 
GitLab