From a8a15dd9d00b08a09641a4b5067fc2d22c08c9d9 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 2 Jul 2018 17:52:39 +0100 Subject: [PATCH] Hadrons: code cleaning --- extras/Hadrons/Modules/MAction/Wilson.hpp | 2 +- .../Hadrons/Modules/MAction/WilsonClover.hpp | 23 +++---------------- .../Hadrons/Modules/MGauge/StoutSmearing.hpp | 1 + 3 files changed, 5 insertions(+), 21 deletions(-) diff --git a/extras/Hadrons/Modules/MAction/Wilson.hpp b/extras/Hadrons/Modules/MAction/Wilson.hpp index a0eabd82..70e0acf1 100644 --- a/extras/Hadrons/Modules/MAction/Wilson.hpp +++ b/extras/Hadrons/Modules/MAction/Wilson.hpp @@ -102,7 +102,7 @@ std::vector TWilson::getOutput(void) template void TWilson::setup(void) { - LOG(Message) << "Setting up TWilson fermion matrix with m= " << par().mass + LOG(Message) << "Setting up Wilson fermion matrix with m= " << par().mass << " using gauge field '" << par().gauge << "'" << std::endl; LOG(Message) << "Fermion boundary conditions: " << par().boundary << std::endl; diff --git a/extras/Hadrons/Modules/MAction/WilsonClover.hpp b/extras/Hadrons/Modules/MAction/WilsonClover.hpp index bb2c5b59..0fb3b442 100644 --- a/extras/Hadrons/Modules/MAction/WilsonClover.hpp +++ b/extras/Hadrons/Modules/MAction/WilsonClover.hpp @@ -38,7 +38,7 @@ See the full license in the file "LICENSE" in the top level distribution directo BEGIN_HADRONS_NAMESPACE /****************************************************************************** - * TWilson quark action * + * Wilson clover quark action * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MAction) @@ -106,13 +106,7 @@ std::vector TWilsonClover::getOutput(void) template void TWilsonClover::setup(void) { - //unsigned int size; - - // size = 2*env().template lattice4dSize(); - // env().registerObject(getName(), size); - - - LOG(Message) << "Setting up TWilsonClover fermion matrix with m= " << par().mass + LOG(Message) << "Setting up Wilson clover fermion matrix with m= " << par().mass << " using gauge field '" << par().gauge << "'" << std::endl; LOG(Message) << "Fermion boundary conditions: " << par().boundary << std::endl; @@ -129,23 +123,12 @@ void TWilsonClover::setup(void) par().csw_t, par().clover_anisotropy, implParams); - - - //FMat *fMatPt = new WilsonCloverFermion(U, grid, gridRb, par().mass, - // par().csw_r, - // par().csw_t, - // par().clover_anisotropy, - // implParams); - //env().setObject(getName(), fMatPt); - } // execution /////////////////////////////////////////////////////////////////// template void TWilsonClover::execute() -{ - -} +{} END_MODULE_NAMESPACE diff --git a/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp b/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp index d84b1c6f..66406f5b 100644 --- a/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp +++ b/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp @@ -81,6 +81,7 @@ template void TStoutSmearing::execute(void) { LOG(Message) << "Smearing '" << par().gauge << "' with " << par().steps + << " step" << ((par().steps > 1) ? "s" : "") << " of stout smearing and rho= " << par().rho << std::endl; Smear_Stout smearer(par().rho);