]> git.treefish.org Git - phys/latlib.git/commitdiff
removed debug messages.
authorAlex Schmidt <alex@treefish.org>
Tue, 16 Apr 2013 14:55:21 +0000 (16:55 +0200)
committerAlex Schmidt <alex@treefish.org>
Tue, 16 Apr 2013 14:55:21 +0000 (16:55 +0200)
o815/o815.cpp
writeout.cpp

index a2b35e88e7dddf058e35ccb0966cb40aedb7856f..9fcae16949a293d6c1ab4af25ca6678a19843345 100644 (file)
@@ -64,8 +64,6 @@ void o815::mainLoop() {
   for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit) {
     (*obsit)->finish();
   }
-
-  //MPI_Finalize();
 }
 
 void o815::parseArgs(int argc, char **argv) {
@@ -145,9 +143,6 @@ o815::~o815() {
     if(rank==0)
       cout << "#end" << endl << flush;
   }
-
-  cout << "bu:" << rank << endl;
-
   delete out;
   MPI_Finalize();
 }
index 966559da14950f088522878f237e5f693ce05de1..03423c503de8cffd978ca48a5ab44dce2625475a 100644 (file)
@@ -85,12 +85,9 @@ writeout::~writeout()
 {
   if(fulldir != "") {
     for (map<string,ofstream*>::iterator ofit = of.begin(); ofit != of.end(); ++ofit) {
-      cout << ofit->first << endl;
       if( cRank[0] == '0' ) {
        int jobsdone=0;
        while(jobsdone<numprocs-1) {
-         cout << ofit->first << endl;
-         cout << "here" << endl;
          string nextfile;
          if( (nextfile = getdatfile(ofit->first)) == "" ) 
            sleep(1);
@@ -131,11 +128,8 @@ string writeout::getdatfile(string subname)
   DIR *dp;
   struct dirent *dirp;
 
-  cout << "getting:" << subname << endl;
-
   if((dp  = opendir(fulldir.c_str())) == NULL) {
     logf << "Error(" << errno << ") opening " << fulldir << endl;
-    cout << "blub" << endl;
     return "";
   }
   
@@ -143,11 +137,8 @@ string writeout::getdatfile(string subname)
     {
       myfile = string(dirp->d_name);
 
-      cout << myfile << endl;
-
       if(myfile.length() > 3 && myfile.substr(myfile.length()-4) == "part" &&
         subname == myfile.substr( myfile.find("-")+1, myfile.rfind(".")-myfile.find("-")-1 ) ) {
-       cout << myfile << endl;
        return myfile;
       }
     }