]> git.treefish.org Git - phys/latlib.git/blobdiff - o815/o815.cpp
dynamically allocating manymeans in jackknife methods to allow for large number of...
[phys/latlib.git] / o815 / o815.cpp
index 49b3ed884fea17b51da1f289473b4fd66a1e5e7e..956ad2e543a6582616a7d501885aa05096c811b2 100644 (file)
@@ -87,6 +87,9 @@ o815::o815(int argc, char **argv, const string& _programid, comoption specOps[],
   }
 
   paraQ = new paraq(numprocs, rank);
+
+  hypercache::addPara("lx", comargs.lsize[0]);
+  hypercache::addPara("lt", comargs.lsize[1]);
 }
 
 void o815::postParaInit() {
@@ -97,6 +100,14 @@ void o815::postParaInit() {
     exit(0);
   }
 
+  if( comargs.showjobnum ) {
+    for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
+      if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
+    }
+    cout << endl;
+    exit(0);
+  }
+  
   if(rank==0) {
     timestamp = time(NULL);
     for(int idest=1; idest<numprocs; idest++)
@@ -109,14 +120,6 @@ void o815::postParaInit() {
 }
 
 void o815::mainLoop() {
-  if( comargs.showjobnum ) {
-    for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
-      if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
-    }
-    cout << endl;
-    exit(0);
-  }
-
   *out->log << "OBS: Starting main loop." << endl;
 
   for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)