]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorageay <ageay>
Tue, 30 Nov 2010 11:17:21 +0000 (11:17 +0000)
committerageay <ageay>
Tue, 30 Nov 2010 11:17:21 +0000 (11:17 +0000)
src/MEDCoupling/MEDCouplingUMesh.cxx

index b61ed7caae8782d5454224aea4a9419b01551e56..7c53d52630952eb1093b30f0d924324978b45ece 100644 (file)
@@ -1348,7 +1348,13 @@ std::string MEDCouplingUMesh::simpleRepr() const
   ret << "Unstructured mesh with name : \"" << getName() << "\"\n";
   ret << "Mesh dimension : " << _mesh_dim << "\nSpace dimension : ";
   if(_coords!=0)
-    ret << getSpaceDimension() << "\n";
+    {
+      const int spaceDim=getSpaceDimension();
+      ret << spaceDim << "\nInfo attached on space dimension : ";
+      for(int i=0;i<spaceDim;i++)
+        ret << "\"" << _coords->getInfoOnComponent(i) << "\" ";
+      ret << "\n";
+    }
   else
     ret << msg0 << "\n";
   ret << "Number of nodes : ";