X-Git-Url: http://git.treefish.org/~alex/phys/u1casc.git/blobdiff_plain/83f20c4a1509e09d4836e2e15fc8e142950e15ec..826647175f9d22368fa451a078c831a6ee29dfca:/u1casc-flux/u1casc-flux.cpp diff --git a/u1casc-flux/u1casc-flux.cpp b/u1casc-flux/u1casc-flux.cpp index 64869e4..639caa5 100644 --- a/u1casc-flux/u1casc-flux.cpp +++ b/u1casc-flux/u1casc-flux.cpp @@ -10,7 +10,7 @@ sim *Sim; #include "obs_phi2.hpp" #include "obs_plaq.hpp" -//#include "obs_corr.hpp" +#include "obs_n.hpp" o815::comoption specOps[] = { { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" }, @@ -82,12 +82,10 @@ void parseLonelyArgs() *O815->out->log << "MASTER: registered observable: plaq" << endl << flush; O815->observables.push_back(new obs_plaq(O815)); } - /* - else if ( strcmp(*lonit, "corr") == 0 ) { - *O815->out->log << "MASTER: registered observable: corr" << endl << flush; - O815->observables.push_back(new obs_corr(O815)); - } - */ + else if ( strcmp(*lonit, "n") == 0 ) { + *O815->out->log << "MASTER: registered observable: n" << endl << flush; + O815->observables.push_back(new obs_n(O815)); + } } }