diff --git a/Grid/qcd/smearing/StoutSmearing.h b/Grid/qcd/smearing/StoutSmearing.h index 7b388924..0a5a4185 100644 --- a/Grid/qcd/smearing/StoutSmearing.h +++ b/Grid/qcd/smearing/StoutSmearing.h @@ -53,7 +53,7 @@ class Smear_Stout : public Smear { std::vector rho3d(Nd*Nd); for (int mu=0; mu* base) : SmearBase{base} { + std::cout << GridLogDebug << "Stout smearing constructor : Smear_Stout(Smear* base)" << std::endl assert(Nc == 3 && "Stout smearing currently implemented only for Nc==3"); } /*! Construct stout smearing object from explicitly specified rho matrix */ Smear_Stout(const std::vector& rho_) : OwnedBase{new Smear_APE(rho_)}, SmearBase{OwnedBase.get()} { + std::cout << GridLogDebug << "Stout smearing constructor : Smear_Stout(const std::vector& rho_)" << std::endl assert(Nc == 3 && "Stout smearing currently implemented only for Nc==3"); } @@ -75,6 +77,7 @@ public: Smear_Stout(double rho, int orthogdim = -1) //: OwnedBase{(orthogdim<0 || orthogdim>=Nd) ? new Smear_APE(rho) : new Smear_APE(rho3D(rho,orthogdim))}, : SmearRho{ rho3D(rho,orthogdim) }, OwnedBase{ new Smear_APE(SmearRho) }, SmearBase{OwnedBase.get()} { + std::cout << GridLogDebug << "Stout smearing constructor : Smear_StoutSmear_Stout(double rho, int orthogdim = -1)\nrho3d=" << rho3D << std::endl; assert(Nc == 3 && "Stout smearing currently implemented only for Nc==3"); } @@ -89,7 +92,7 @@ public: GaugeField C(U._grid); GaugeLinkField tmp(U._grid), iq_mu(U._grid), Umu(U._grid); - std::cout << GridLogDebug << "Stout smearing started\n"; + std::cout << GridLogDebug << "Stout smearing started" << std::endl; // Smear the configurations SmearBase->smear(C, U); @@ -103,7 +106,7 @@ public: exponentiate_iQ(tmp, iq_mu); pokeLorentz(u_smr, tmp * Umu, mu); // u_smr = exp(iQ_mu)*U_mu } - std::cout << GridLogDebug << "Stout smearing completed\n"; + std::cout << GridLogDebug << "Stout smearing completed" << std::endl; }; void derivative(GaugeField& SigmaTerm, const GaugeField& iLambda, diff --git a/Hadrons/Modules/MDistil/LapEvec.hpp b/Hadrons/Modules/MDistil/LapEvec.hpp index e3d35584..9d1c6853 100644 --- a/Hadrons/Modules/MDistil/LapEvec.hpp +++ b/Hadrons/Modules/MDistil/LapEvec.hpp @@ -235,7 +235,7 @@ void TLapEvec::execute(void) { const StoutParameters &Stout{par().Stout}; envGetTmp(GaugeField, Umu_stout); - Smear_Stout LS(Stout.parm);//, Tdir); // spatial smearing only + Smear_Stout LS(Stout.parm, Tdir); // spatial smearing only for (int i = 0; i < Stout.steps; i++) { LS.smear(Umu_stout, Umu_smear); Umu_smear = Umu_stout;