diff --git a/Grid/qcd/smearing/StoutSmearing.h b/Grid/qcd/smearing/StoutSmearing.h index 27283d73..7b388924 100644 --- a/Grid/qcd/smearing/StoutSmearing.h +++ b/Grid/qcd/smearing/StoutSmearing.h @@ -41,6 +41,7 @@ namespace QCD { template class Smear_Stout : public Smear { private: + const std::vector SmearRho{}; // Smear* ownership semantics: // Smear* passed in to constructor are owned by caller, so we don't delete them here // Smear* created within constructor need to be deleted as part of the destructor @@ -72,8 +73,8 @@ public: /*! Default constructor. rho is constant in all directions, optionally except for orthogonal dimension */ Smear_Stout(double rho, int orthogdim = -1) - : OwnedBase{(orthogdim<0 || orthogdim>=Nd) ? new Smear_APE(rho) : new Smear_APE(rho3D(rho,orthogdim))}, - SmearBase{OwnedBase.get()} { + //: 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()} { assert(Nc == 3 && "Stout smearing currently implemented only for Nc==3"); } diff --git a/Hadrons/Modules/MDistil/LapEvec.hpp b/Hadrons/Modules/MDistil/LapEvec.hpp index 603deda3..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); // should be spatial - doesn't work yet + 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;