X-Git-Url: http://git.treefish.org/~alex/phys/u1casc.git/blobdiff_plain/8bf84241c8516b086e026b43f3bcb8b8c5ed78ae..122860ecfb20eedd86f4e9c674f7afa21099caa2:/u1casc-ordinary/u1casc-ordinary.cpp diff --git a/u1casc-ordinary/u1casc-ordinary.cpp b/u1casc-ordinary/u1casc-ordinary.cpp index 4956ee1..554f7e4 100644 --- a/u1casc-ordinary/u1casc-ordinary.cpp +++ b/u1casc-ordinary/u1casc-ordinary.cpp @@ -11,6 +11,7 @@ sim *Sim; //const complex _i_ = complex(0.0,1.0); #include "obs_phi2.hpp" +#include "obs_plaq.hpp" o815::comoption specOps[] = { { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" }, @@ -65,16 +66,10 @@ void parseLonelyArgs() *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, "plaq") == 0 ) { + *O815->out->log << "MASTER: registered observable: plaq" << endl << flush; + O815->observables.push_back(new obs_plaq(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)); - } - */ } }