From 15119eaf03494e417d4fbfb724d52faffd95d097 Mon Sep 17 00:00:00 2001 From: Michael Marshall <43034299+mmphys@users.noreply.github.com> Date: Wed, 4 Dec 2019 09:59:58 +0000 Subject: [PATCH] Fix phase convention adjustment error (and make no assumptions about node layout) --- Hadrons/Modules/MDistil/Distil.hpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Hadrons/Modules/MDistil/Distil.hpp b/Hadrons/Modules/MDistil/Distil.hpp index 3b889aa4..01a6b9da 100644 --- a/Hadrons/Modules/MDistil/Distil.hpp +++ b/Hadrons/Modules/MDistil/Distil.hpp @@ -90,7 +90,6 @@ inline void MakeLowerDimGrid( std::unique_ptr &up, GridCartesian /************************************************************************************* Rotate eigenvectors into our phase convention First component of first eigenvector is real and positive - TODO: Should this be in Distil.hpp? *************************************************************************************/ inline void RotateEigen(std::vector & evec) @@ -113,12 +112,9 @@ inline void RotateEigen(std::vector & evec) for( int k = 0 ; k < evec.size() ; k++ ) evec[k] *= phase; // Get rid of the rounding error in imaginary phase on the very first site - if(grid->IsBoss()) - { - peekSite(cv0, evec[0], siteFirst); - cv0()()(0).imag(0); // this should be zero after the phase multiply - force it to be so - pokeLocalSite(cv0, evec[0], siteFirst); - } + peekSite(cv0, evec[0], siteFirst); + cv0()()(0).imag(0); // this should be zero after the phase multiply - force it to be so + pokeSite(cv0, evec[0], siteFirst); } } }