]> git.treefish.org Git - phys/u1casc.git/blobdiff - u1casc-ordinary/u1casc-ordinary.cpp
Seperated correlator observables.
[phys/u1casc.git] / u1casc-ordinary / u1casc-ordinary.cpp
index 554f7e4281d1ec271614e25f46d340b130ed6d1b..f362654030aaff5e0d8c82a5cc5f3566be943319 100644 (file)
@@ -12,6 +12,9 @@ sim *Sim;
 
 #include "obs_phi2.hpp"
 #include "obs_plaq.hpp"
+#include "obs_corrphiphi.hpp"
+#include "obs_corrchichi.hpp"
+#include "obs_corrphichi.hpp"
 
 o815::comoption specOps[] = {
   { "kappaone", required_argument, NULL, 'r', "set inverse mass kappa_1", "min:max:inc" },
@@ -70,6 +73,18 @@ void parseLonelyArgs()
       *O815->out->log << "MASTER: registered observable: plaq" << endl << flush;
       O815->observables.push_back(new obs_plaq(O815));
     }
+    else if ( strcmp(*lonit, "corrphiphi") == 0 ) {
+      *O815->out->log << "MASTER: registered observable: corr_phiphi" << endl << flush;
+      O815->observables.push_back(new obs_corrphiphi(O815));
+    }
+    else if ( strcmp(*lonit, "corrchichi") == 0 ) {
+      *O815->out->log << "MASTER: registered observable: corr_chichi" << endl << flush;
+      O815->observables.push_back(new obs_corrchichi(O815));
+    }
+    else if ( strcmp(*lonit, "corrphichi") == 0 ) {
+      *O815->out->log << "MASTER: registered observable: corr_phichi" << endl << flush;
+      O815->observables.push_back(new obs_corrphichi(O815));
+    }
   }
 }