From aa620ca52c8279188e10e1a508fa2adab34ed515 Mon Sep 17 00:00:00 2001 From: Christopher Kelly Date: Mon, 24 Jan 2022 09:56:24 -0800 Subject: [PATCH] Fixed compilation error in observables resulting from changes in Wilson flow code Modified light quark mass on 40ID HMC binary --- Grid/qcd/observables/topological_charge.h | 2 +- HMC/Mobius2p1fIDSDRGparityEOFA_40ID.cc | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Grid/qcd/observables/topological_charge.h b/Grid/qcd/observables/topological_charge.h index 4f116496..7c09a180 100644 --- a/Grid/qcd/observables/topological_charge.h +++ b/Grid/qcd/observables/topological_charge.h @@ -99,7 +99,7 @@ public: // using wilson flow by default here WilsonFlow WF(Pars.Smearing.steps, Pars.Smearing.step_size, Pars.Smearing.meas_interval); WF.smear_adaptive(Usmear, U, Pars.Smearing.maxTau); - Real T0 = WF.energyDensityPlaquette(Usmear); + Real T0 = WF.energyDensityPlaquette(Pars.Smearing.maxTau, Usmear); std::cout << GridLogMessage << std::setprecision(std::numeric_limits::digits10 + 1) << "T0 : [ " << traj << " ] "<< T0 << std::endl; } diff --git a/HMC/Mobius2p1fIDSDRGparityEOFA_40ID.cc b/HMC/Mobius2p1fIDSDRGparityEOFA_40ID.cc index 9bc27cab..9ba622e5 100644 --- a/HMC/Mobius2p1fIDSDRGparityEOFA_40ID.cc +++ b/HMC/Mobius2p1fIDSDRGparityEOFA_40ID.cc @@ -600,9 +600,11 @@ int main(int argc, char **argv) { // a(mh+mres) [40ID] = 0.035910 0.03529 //Estimate Ls=12, b+c=2 mres~0.0011 + //1/24/2022 initial mres measurement gives mres=0.001, adjusted light quark mass to 0.0003 from 0.0001 + const int Ls = 12; Real beta = 1.848; - Real light_mass = 0.0001; + Real light_mass = 0.0003; Real strange_mass = 0.0342; Real pv_mass = 1.0; RealD M5 = 1.8;