]> git.treefish.org Git - phys/latlib.git/commitdiff
Implemented 0-observable-mode.
authorAlexander Schmidt <alex@treefish.org>
Sun, 16 Feb 2014 08:47:35 +0000 (09:47 +0100)
committerAlexander Schmidt <alex@treefish.org>
Sun, 16 Feb 2014 08:47:35 +0000 (09:47 +0100)
o815/o815.cpp

index 17581ecc8700c20ce8211e5a3f12c8c8cd6e52c9..df5d6351ff34617da7e6ef9f1e94b52f01bfee6c 100644 (file)
@@ -129,6 +129,9 @@ void o815::postParaInit() {
 void o815::mainLoop() {
   *out->log << "OBS: Starting main loop." << endl;
 
+  if ( observables.size() == 0 )
+    *out->log << "O815: Running in 0-observable-mode." << endl;
+
   for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
     (*obsit)->start();
 
@@ -149,6 +152,7 @@ void o815::mainLoop() {
 
     for( int imeas=0; imeas<comargs.nmeas; imeas++ ) {
       bool nextAlready = false;
+
       for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit) {
        bool readnewObs;
        int nequileftNewObs;
@@ -165,9 +169,12 @@ void o815::mainLoop() {
          }
          (*obsit)->meas(false, imeas);
          hypercache::writeO( (*obsit)->ocid );
-       }
-         
+       }         
       }
+
+      if ( observables.size() == 0 )
+       Sim->nextConfig();
+
       while( measProg.madeStep(imeas) ) 
        *out->log << "O815: " << measProg.done()*100 << "% of measurements done." << endl << flush;
     }