Skip to content
Snippets Groups Projects
Commit 952acba3 authored by Benjamin Faigle's avatar Benjamin Faigle
Browse files

Correct parallel output: pvd files linked to vtu-parts seperated by ":"...

Correct parallel output: pvd files linked to vtu-parts seperated by ":" instead of "-" (the latter is written out by /grid/io/file/vtk/vtkwiter.hh/
=> closing flyspray #169
reviewed by Bernd

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9429 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent feb6ed31
No related branches found
No related tags found
No related merge requests found
...@@ -357,8 +357,8 @@ private: ...@@ -357,8 +357,8 @@ private:
if (commSize_ > 1) { if (commSize_ > 1) {
std::ostringstream oss; std::ostringstream oss;
oss << "s" << std::setw(4) << std::setfill('0') << commSize_ oss << "s" << std::setw(4) << std::setfill('0') << commSize_
<< ":p" << std::setw(4) << std::setfill('0') << rank << "-p" << std::setw(4) << std::setfill('0') << rank
<< ":" << simName_ << "-" << "-" << simName_ << "-"
<< std::setw(5) << curWriterNum_; << std::setw(5) << curWriterNum_;
return oss.str(); return oss.str();
......
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