1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00
Grid/lib/qcd/hmc/HMC.cc

25 lines
423 B
C++
Raw Normal View History

2015-07-03 08:51:41 +01:00
#include <Grid.h>
namespace Grid{
namespace QCD{
HMCparameters::HMCparameters(){
// FIXME fill this constructor now just default values
////////////////////////////// Default values
Nsweeps = 100;
TotalSweeps = 20;
ThermalizationSteps = 20;
2015-07-03 08:51:41 +01:00
StartingConfig = 0;
SaveInterval = 1;
Filename_prefix = "Conf_";
/////////////////////////////////
}
2015-07-03 18:43:14 +01:00
2015-07-03 08:51:41 +01:00
}
}