X-Git-Url: http://git.treefish.org/~alex/phys/u1casc.git/blobdiff_plain/6a7825ba94ab1d448ae48a3868e41f2683f9431d..fb62bce00a991081189fc750d6acdd51bbc7c468:/u1casc-ordinary/u1casc-ordinary.cpp diff --git a/u1casc-ordinary/u1casc-ordinary.cpp b/u1casc-ordinary/u1casc-ordinary.cpp index 63ef33b..7aed52d 100644 --- a/u1casc-ordinary/u1casc-ordinary.cpp +++ b/u1casc-ordinary/u1casc-ordinary.cpp @@ -13,6 +13,8 @@ sim *Sim; #include "obs_phi2.hpp" #include "obs_plaq.hpp" #include "obs_corr.hpp" +#include "obs_corrphiphimass.hpp" +#include "obs_corrphichimass.hpp" o815::comoption specOps[] = { { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" }, @@ -75,6 +77,14 @@ void parseLonelyArgs() *O815->out->log << "MASTER: registered observable: corr" << endl << flush; O815->observables.push_back(new obs_corr(O815)); } + else if ( strcmp(*lonit, "corrphiphimass") == 0 ) { + *O815->out->log << "MASTER: registered observable: corr_phiphimass" << endl << flush; + O815->observables.push_back(new obs_corrphiphimass(O815)); + } + else if ( strcmp(*lonit, "corrphichimass") == 0 ) { + *O815->out->log << "MASTER: registered observable: corr_phichimass" << endl << flush; + O815->observables.push_back(new obs_corrphichimass(O815)); + } } }