2018-08-07 18:40:48 +01:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: extras/Hadrons/Modules/MGauge/StoutSmearing.hpp
|
|
|
|
|
|
|
|
Copyright (C) 2015-2018
|
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2018-07-02 17:52:04 +01:00
|
|
|
#ifndef Hadrons_MGauge_StoutSmearing_hpp_
|
|
|
|
#define Hadrons_MGauge_StoutSmearing_hpp_
|
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
|
|
|
#include <Hadrons/Module.hpp>
|
|
|
|
#include <Hadrons/ModuleFactory.hpp>
|
2018-07-02 17:52:04 +01:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Stout smearing *
|
|
|
|
******************************************************************************/
|
|
|
|
BEGIN_MODULE_NAMESPACE(MGauge)
|
|
|
|
|
|
|
|
class StoutSmearingPar: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(StoutSmearingPar,
|
|
|
|
std::string, gauge,
|
|
|
|
unsigned int, steps,
|
|
|
|
double, rho);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename GImpl>
|
|
|
|
class TStoutSmearing: public Module<StoutSmearingPar>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef typename GImpl::Field GaugeField;
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
TStoutSmearing(const std::string name);
|
|
|
|
// destructor
|
|
|
|
virtual ~TStoutSmearing(void) {};
|
|
|
|
// dependency relation
|
|
|
|
virtual std::vector<std::string> getInput(void);
|
|
|
|
virtual std::vector<std::string> getOutput(void);
|
|
|
|
// setup
|
|
|
|
virtual void setup(void);
|
|
|
|
// execution
|
|
|
|
virtual void execute(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_REGISTER_TMP(StoutSmearing, TStoutSmearing<GIMPL>, MGauge);
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* TStoutSmearing implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
|
|
template <typename GImpl>
|
|
|
|
TStoutSmearing<GImpl>::TStoutSmearing(const std::string name)
|
|
|
|
: Module<StoutSmearingPar>(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
|
|
template <typename GImpl>
|
|
|
|
std::vector<std::string> TStoutSmearing<GImpl>::getInput(void)
|
|
|
|
{
|
|
|
|
std::vector<std::string> in = {par().gauge};
|
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GImpl>
|
|
|
|
std::vector<std::string> TStoutSmearing<GImpl>::getOutput(void)
|
|
|
|
{
|
|
|
|
std::vector<std::string> out = {getName()};
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename GImpl>
|
|
|
|
void TStoutSmearing<GImpl>::setup(void)
|
|
|
|
{
|
|
|
|
envCreateLat(GaugeField, getName());
|
|
|
|
envTmpLat(GaugeField, "buf");
|
|
|
|
}
|
|
|
|
|
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
|
|
template <typename GImpl>
|
|
|
|
void TStoutSmearing<GImpl>::execute(void)
|
|
|
|
{
|
|
|
|
LOG(Message) << "Smearing '" << par().gauge << "' with " << par().steps
|
2018-07-02 17:52:39 +01:00
|
|
|
<< " step" << ((par().steps > 1) ? "s" : "")
|
2018-07-02 17:52:04 +01:00
|
|
|
<< " of stout smearing and rho= " << par().rho << std::endl;
|
|
|
|
|
|
|
|
Smear_Stout<GImpl> smearer(par().rho);
|
|
|
|
auto &U = envGet(GaugeField, par().gauge);
|
|
|
|
auto &Usmr = envGet(GaugeField, getName());
|
|
|
|
|
|
|
|
envGetTmp(GaugeField, buf);
|
|
|
|
buf = U;
|
|
|
|
for (unsigned int n = 0; n < par().steps; ++n)
|
|
|
|
{
|
|
|
|
smearer.smear(Usmr, buf);
|
|
|
|
buf = Usmr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
END_MODULE_NAMESPACE
|
|
|
|
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Hadrons_MGauge_StoutSmearing_hpp_
|