Skip to content
Snippets Groups Projects
Commit f48eb5a6 authored by Matti Pellika's avatar Matti Pellika
Browse files

Add physical group number of chains in post-processing view names

parent 7d9bf480
No related branches found
No related tags found
No related merge requests found
...@@ -433,7 +433,10 @@ int Chain::createPGroup() ...@@ -433,7 +433,10 @@ int Chain::createPGroup()
#if defined(HAVE_POST) #if defined(HAVE_POST)
// create PView for instant visualization // create PView for instant visualization
PView* view = new PView(getName(), "ElementData", m, data, 0, 1); std::string pnum = "";
convert(physicalNum, pnum);
std::string postname = pnum + ": " + getName();
PView* view = new PView(postname, "ElementData", m, data, 0, 1);
// the user should be interested about the orientations // the user should be interested about the orientations
int size = 30; int size = 30;
PViewOptions* opt = view->getOptions(); PViewOptions* opt = view->getOptions();
......
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