1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Hadrons: smearing plaquette output

This commit is contained in:
Antonin Portelli 2018-09-01 17:38:32 +01:00
parent 2f0af79869
commit ee630d2e8b

View File

@ -117,10 +117,14 @@ void TStoutSmearing<GImpl>::execute(void)
envGetTmp(GaugeField, buf);
buf = U;
LOG(Message) << "plaquette= " << WilsonLoops<GImpl>::avgPlaquette(U)
<< std::endl;
for (unsigned int n = 0; n < par().steps; ++n)
{
smearer.smear(Usmr, buf);
buf = Usmr;
LOG(Message) << "plaquette= " << WilsonLoops<GImpl>::avgPlaquette(Usmr)
<< std::endl;
}
}