]> git.treefish.org Git - phys/u1casc.git/blobdiff - u1casc-ordinary/u1casc-ordinary.cpp
Added phi and chi correlators.
[phys/u1casc.git] / u1casc-ordinary / u1casc-ordinary.cpp
index 4c670dd33c0233574ad114ced9db2fa2b0cb9283..4803fe11ef74834e6116abcffb071edf7da033d4 100644 (file)
@@ -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));
+    }
   }
 }