From: Alexander Schmidt Date: Fri, 2 Jan 2015 17:10:18 +0000 (+0100) Subject: ... X-Git-Url: http://git.treefish.org/~alex/phys/u1casc.git/commitdiff_plain/fedf8397d50effe33a4dcc4eace946205fcf0a95 ... --- diff --git a/u1casc-ordinary/u1casc-ordinary.cpp b/u1casc-ordinary/u1casc-ordinary.cpp index 3294a17..8063806 100644 --- a/u1casc-ordinary/u1casc-ordinary.cpp +++ b/u1casc-ordinary/u1casc-ordinary.cpp @@ -20,6 +20,7 @@ sim *Sim; #include "obs_corriso10.hpp" #include "obs_corriso00.hpp" #include "obs_corrtetra.hpp" +#include "obs_corrtest.hpp" o815::comoption specOps[] = { { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" }, @@ -110,6 +111,10 @@ 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)); + } } }