disabled file writing
authorAnatoly Titov <toluk@omrb.pnpi.spb.ru>
Fri, 8 Sep 2017 09:38:12 +0000 (12:38 +0300)
committerAnatoly Titov <toluk@omrb.pnpi.spb.ru>
Fri, 8 Sep 2017 09:38:12 +0000 (12:38 +0300)
src/spacetimecorr.cpp

index e58b8fda9748070070292b71be56d55be8233d33..f754ce32e459f2d56f4e676401e293469f201e58 100644 (file)
@@ -321,7 +321,6 @@ void
 Domains::analyzeFrame(int frnr, const t_trxframe &fr, t_pbc *pbc,
                       TrajectoryAnalysisModuleData *pdata)
 {
-    std::cout << "Analyze Frame\n\n";
     trajectory.resize(trajectory.size() + 1);
     trajectory.back().resize(index.size());
 
@@ -377,14 +376,16 @@ Domains::analyzeFrame(int frnr, const t_trxframe &fr, t_pbc *pbc,
     }
 
     frames++;
-    std::cout << "Finishe Analyze Frame\n\n";
 }
 
 void
 Domains::finishAnalysis(int nframes)
 {
     std::cout << "Finish Analysis\n\n";
-    make_pdb_trajectory(frankenstein_trajectory, "/home/toluk/Develop/samples/reca_rd/10k_frames.pdb");
+
+    //
+    //make_pdb_trajectory(frankenstein_trajectory, "/home/toluk/Develop/samples/reca_rd/10k_frames.pdb");
+    //
 
     std::vector< std::vector< std::vector< double > > > crltns;
     int k = 1000, m = 0;
@@ -478,7 +479,11 @@ Domains::finishAnalysis(int nframes)
     std::cout << "\n" ;
 
     std::cout << "printing correlation's file\n" ;
-    make_correlation_file(crltns, "corrs_vectors.txt", m);
+
+    //
+    //make_correlation_file(crltns, "corrs_vectors.txt", m);
+    //
+
     std::cout << "done\n" ;
 
     int imax = 0;
@@ -517,7 +522,7 @@ Domains::finishAnalysis(int nframes)
     for (std::set< std::pair< int, int > >::iterator it = crr_prs.begin(); it != crr_prs.end(); it++) {
         corr_prs.push_back(*it);
     }
-    make_best_corrs_graphics(crltns, corr_prs, index, "best_graphics.txt");
+    //make_best_corrs_graphics(crltns, corr_prs, index, "best_graphics.txt");
 
     std::vector< std::vector< int > > graph;
     graph.resize(index.size());
@@ -626,7 +631,9 @@ Domains::finishAnalysis(int nframes)
     }
     std::cout << "\nfinished routs\n\n" ;
 
-    make_rout_file(crl_border, index, rout_new, "routs.txt");
+    //
+    //make_rout_file(crl_border, index, rout_new, "routs.txt");
+    //
 
     std::cout << "\n\n\n job done \n\n\n";
 }