X-Git-Url: http://git.treefish.org/~alex/phys/u1casc.git/blobdiff_plain/b7cd00a322c6f7aa2d8ccfeb38132ffb5ddeecf3..274ef536e569448ac2422d97bc4f2873b766798b:/u1casc-ordinary/u1casc-ordinary.cpp diff --git a/u1casc-ordinary/u1casc-ordinary.cpp b/u1casc-ordinary/u1casc-ordinary.cpp index 4c670dd..4803fe1 100644 --- a/u1casc-ordinary/u1casc-ordinary.cpp +++ b/u1casc-ordinary/u1casc-ordinary.cpp @@ -15,6 +15,8 @@ sim *Sim; #include "obs_corrphiphi.hpp" #include "obs_corrchichi.hpp" #include "obs_corrphichi.hpp" +#include "obs_corrphi.hpp" +#include "obs_corrchi.hpp" o815::comoption specOps[] = { { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" }, @@ -85,6 +87,14 @@ void parseLonelyArgs() *O815->out->log << "MASTER: registered observable: corrphichi" << endl << flush; O815->observables.push_back(new obs_corrphichi(O815)); } + else if ( strcmp(*lonit, "corrphi") == 0 ) { + *O815->out->log << "MASTER: registered observable: corrphi" << endl << flush; + O815->observables.push_back(new obs_corrphi(O815)); + } + else if ( strcmp(*lonit, "corrchi") == 0 ) { + *O815->out->log << "MASTER: registered observable: corrchi" << endl << flush; + O815->observables.push_back(new obs_corrchi(O815)); + } } }