X-Git-Url: http://git.treefish.org/~alex/phys/heatbath.git/blobdiff_plain/d017fdeec8363b3e871692219bb7eacb614a41f1..b29c28bcd466d938ffd95887abef67dc1491bd50:/heatbath.cpp diff --git a/heatbath.cpp b/heatbath.cpp index e6a7803..9744b33 100644 --- a/heatbath.cpp +++ b/heatbath.cpp @@ -2,26 +2,38 @@ #include "latlib/o815/o815.h" -#ifdef HEATLESS_ALGORITHM -#define ALGORITHM "heatless" -#include "sim-heatless.hpp" -#elif USUALHEAT_ALGORITHM -#define ALGORITHM "usualheat" -#include "sim-usualheat.hpp" -#elif RELAXEDHEAT_ALGORITHM -#define ALGORITHM "relaxedheat" -#include "sim-relaxedheat.hpp" +#ifdef ALGORITHM_METRO +#define ALGORITHM "metro" +#include "sim-metro.hpp" +#elif ALGORITHM_AHBMHB +#include "sim-nonmetro.hpp" +#define ALGORITHM "AhbMhb" +#elif ALGORITHM_AHBMOR +#include "sim-nonmetro.hpp" +#define ALGORITHM "AhbMor" +#elif ALGORITHM_AORMHB +#include "sim-nonmetro.hpp" +#define ALGORITHM "AorMhb" +#elif ALGORITHM_AORMOR +#include "sim-nonmetro.hpp" +#define ALGORITHM "AorMor" #else #error NO UPDATE-ALGORITHM DEFINED! #endif -#include "obs_phi2.hpp" +#ifdef NONMETRO_A_HB +#error SADSADS +#endif o815 *O815; sim *Sim; const complex _i_ = complex(0.0,1.0); +#include "obs_phi2.hpp" +#include "obs_phi2_hist.hpp" +#include "obs_phip2_hist.hpp" + o815::comoption specOps[] = { { "mass", required_argument, NULL, 'm', "set mass", "min:max:inc" }, { "", 0, NULL, 0, "", "" } @@ -48,7 +60,15 @@ void parseLonelyArgs() if ( strcmp(*lonit, "phi2") == 0 ) { *O815->out->log << "MASTER: registered observable: phi2" << endl << flush; O815->observables.push_back(new obs_phi2(O815)); - } + } + else if ( strcmp(*lonit, "phi2_hist") == 0 ) { + *O815->out->log << "MASTER: registered observable: phi2_hist" << endl << flush; + O815->observables.push_back(new obs_phi2_hist(O815)); + } + else if ( strcmp(*lonit, "phip2_hist") == 0 ) { + *O815->out->log << "MASTER: registered observable: phip2_hist" << endl << flush; + O815->observables.push_back(new obs_phip2_hist(O815)); + } } }