Skip to content
Snippets Groups Projects
Commit 4e1fe5fa authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

Last improvement of output file before starting reimplementation.

parent 739822a7
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,9 @@ void CoreTest::runTest() ...@@ -51,7 +51,9 @@ void CoreTest::runTest()
std::fstream fs("/tmp/StandardSampleTrees.txt", std::ios::out|std::ios::app); std::fstream fs("/tmp/StandardSampleTrees.txt", std::ios::out|std::ios::app);
if( !fs ) if( !fs )
throw std::runtime_error("Cannot open StandardSampleTrees.txt"); throw std::runtime_error("Cannot open StandardSampleTrees.txt");
fs << getName() << ":\n";
fs << m_simulation->getSample()->to_str(); fs << m_simulation->getSample()->to_str();
fs << "\n";
fs.close(); fs.close();
m_ref_filename = BA_REF_DATA_DIR + "/ref_" + getName() + ".int.gz"; m_ref_filename = BA_REF_DATA_DIR + "/ref_" + getName() + ".int.gz";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment