diff --git a/HMC/DWF2p1fIwasakiGparity.cc b/HMC/DWF2p1fIwasakiGparity.cc index d9be3fdc..e9865a54 100644 --- a/HMC/DWF2p1fIwasakiGparity.cc +++ b/HMC/DWF2p1fIwasakiGparity.cc @@ -72,6 +72,7 @@ struct EvolParameters: Serializable { Integer, StartTrajectory, Integer, Trajectories, Integer, SaveInterval, + Integer, Steps, bool, MetropolisTest, std::string, StartingType, std::vector, GparityDirs, @@ -86,6 +87,7 @@ struct EvolParameters: Serializable { SaveInterval = 5; StartingType = "ColdStart"; GparityDirs.resize(3, 1); //1 for G-parity, 0 for periodic + Steps = 5; } }; @@ -237,11 +239,14 @@ int main(int argc, char **argv) { std::cout << GridLogMessage << "Grid is setup to use " << threads << " threads" << std::endl; std::string param_file = "params.xml"; + bool file_load_check = false; for(int i=1;i HMCWrapper; //NB: This is the "Omelyan integrator" typedef HMCWrapper::ImplPolicy GaugeImplPolicy; MD.name = std::string("MinimumNorm2"); - MD.MDsteps = 5; //5 steps of 0.2 for GP* ensembles + MD.MDsteps = user_params.Steps; MD.trajL = 1.0; HMCparameters HMCparams; @@ -358,6 +363,14 @@ int main(int argc, char **argv) { GaugeImplPolicy::setDirections(dirs4); //gauge BC + //Run optional gauge field checksum checker and exit + if(file_load_check){ + TheHMC.initializeGaugeFieldAndRNGs(Ud); + std::cout << GridLogMessage << " Done" << std::endl; + Grid_finalize(); + return 0; + } + //////////////////////////////////// // Collect actions