X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/c721fd42d0e3b23e8aa84d998bc8d97e5d8dfc2d..5631e78e06df267533ac5e8d97c3053d72a31eb4:/heatbath.cpp?ds=inline diff --git a/heatbath.cpp b/heatbath.cpp index 70e2140..dbfe63a 100644 --- a/heatbath.cpp +++ b/heatbath.cpp @@ -1,10 +1,27 @@ +#include + #include "latlib/o815/o815.h" -#include "sim.hpp" +#ifdef ALGORITHM_NOR +#define ALGORITHM "nor" +#include "sim-nor.hpp" +#elif ALGORITHM_R +#define ALGORITHM "r" +#include "sim-r.hpp" +#elif ALGORITHM_1MR +#define ALGORITHM "1mr" +#include "sim-1mr.hpp" +#else +#error NO UPDATE-ALGORITHM DEFINED! +#endif + +#include "obs_phi2.hpp" o815 *O815; sim *Sim; +const complex _i_ = complex(0.0,1.0); + o815::comoption specOps[] = { { "mass", required_argument, NULL, 'm', "set mass", "min:max:inc" }, { "", 0, NULL, 0, "", "" } @@ -21,13 +38,23 @@ void parseSpecOps() } void helpHeader() +{ + cout << "Usage: ./heatbath-"ALGORITHM" [OPTIONS] [obs1] ... [obsN]" << endl << endl; +} + +void parseLonelyArgs() { - cout << "Usage: ./heatbath [OPTIONS] [obs1] ... [obsN]" << endl << endl; + for (vector::iterator lonit = O815->lonelyArgs.begin(); lonit != O815->lonelyArgs.end(); ++lonit) { + if ( strcmp(*lonit, "phi2") == 0 ) { + *O815->out->log << "MASTER: registered observable: phi2" << endl << flush; + O815->observables.push_back(new obs_phi2(O815)); + } + } } int main (int argc, char *argv[]) { - O815 = new o815(argc, argv, "heatbath", specOps, &helpHeader); + O815 = new o815(argc, argv, "heatbath-"ALGORITHM, specOps, &helpHeader); O815->addPara("mass", 1); @@ -37,8 +64,8 @@ int main (int argc, char *argv[]) O815->Sim = new sim(O815); - //parseLonelyArgs(); - + parseLonelyArgs(); + O815->mainLoop(); delete O815;