]> git.treefish.org Git - phys/u1casc.git/commitdiff
...
authorAlexander Schmidt <alex@treefish.org>
Fri, 2 Jan 2015 17:10:18 +0000 (18:10 +0100)
committerAlexander Schmidt <alex@treefish.org>
Fri, 2 Jan 2015 17:10:18 +0000 (18:10 +0100)
u1casc-ordinary/u1casc-ordinary.cpp

index 3294a178bea9ef40950d387169fa06df835dd25a..8063806f1928552254ef8ec4f1e7ab8eaf86d776 100644 (file)
@@ -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));
+    }
   }
 }