X-Git-Url: http://git.treefish.org/~alex/phys/u1casc.git/blobdiff_plain/fedf8397d50effe33a4dcc4eace946205fcf0a95..850d3b4c9b9891b21105694d6800e9c92c26e47a:/u1casc-ordinary/u1casc-ordinary.cpp?ds=sidebyside diff --git a/u1casc-ordinary/u1casc-ordinary.cpp b/u1casc-ordinary/u1casc-ordinary.cpp index 8063806..6cab505 100644 --- a/u1casc-ordinary/u1casc-ordinary.cpp +++ b/u1casc-ordinary/u1casc-ordinary.cpp @@ -20,7 +20,7 @@ sim *Sim; #include "obs_corriso10.hpp" #include "obs_corriso00.hpp" #include "obs_corrtetra.hpp" -#include "obs_corrtest.hpp" +#include "obs_diagcorr.hpp" o815::comoption specOps[] = { { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" }, @@ -111,9 +111,9 @@ void parseLonelyArgs() *O815->out->log << "MASTER: registered observable: corrtetra" << endl << flush; O815->observables.push_back(new obs_corrtetra(O815)); } - else if ( strcmp(*lonit, "corrtest") == 0 ) { - *O815->out->log << "MASTER: registered observable: corrtest" << endl << flush; - O815->observables.push_back(new obs_corrtest(O815)); + else if ( strcmp(*lonit, "diagcorr") == 0 ) { + *O815->out->log << "MASTER: registered observable: diagcorr" << endl << flush; + O815->observables.push_back(new obs_diagcorr(O815)); } } }