1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01: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); envGetTmp(GaugeField, buf);
buf = U; buf = U;
LOG(Message) << "plaquette= " << WilsonLoops<GImpl>::avgPlaquette(U)
<< std::endl;
for (unsigned int n = 0; n < par().steps; ++n) for (unsigned int n = 0; n < par().steps; ++n)
{ {
smearer.smear(Usmr, buf); smearer.smear(Usmr, buf);
buf = Usmr; buf = Usmr;
LOG(Message) << "plaquette= " << WilsonLoops<GImpl>::avgPlaquette(Usmr)
<< std::endl;
} }
} }