]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Minor changes
authorapo <apo@opencascade.com>
Fri, 12 Aug 2005 11:05:38 +0000 (11:05 +0000)
committerapo <apo@opencascade.com>
Fri, 12 Aug 2005 11:05:38 +0000 (11:05 +0000)
src/CONVERTOR/VISUConvertor.cxx

index daf53e9484f4e10b5f0920d93f8cf42ecd24403c..5c95f60d296529ef181bc004b66f1084042835b7 100644 (file)
@@ -56,10 +56,13 @@ void parseFile(const char* theFileName) {
     const VISU::TMeshMap& aMeshMap = aCon->GetMeshMap();
     VISU::TMeshMap::const_iterator aMeshMapIter = aMeshMap.begin();
     for(; aMeshMapIter != aMeshMap.end(); aMeshMapIter++){
+      //continue;
+
       const string& aMeshName = aMeshMapIter->first;
       const VISU::PMesh& aMesh = aMeshMapIter->second;
       const VISU::TMeshOnEntityMap& aMeshOnEntityMap = aMesh->myMeshOnEntityMap;
       VISU::TMeshOnEntityMap::const_iterator aMeshOnEntityMapIter;
+
       //Import fields
       aMeshOnEntityMapIter = aMeshOnEntityMap.begin();
       for(; aMeshOnEntityMapIter != aMeshOnEntityMap.end(); aMeshOnEntityMapIter++){
@@ -79,6 +82,14 @@ void parseFile(const char* theFileName) {
          }
        }
       }
+
+      //Import mesh on entity
+      aMeshOnEntityMapIter = aMeshOnEntityMap.begin();
+      for(; aMeshOnEntityMapIter != aMeshOnEntityMap.end(); aMeshOnEntityMapIter++){
+       const VISU::TEntity& anEntity = aMeshOnEntityMapIter->first;
+       aCon->GetMeshOnEntity(aMeshName,anEntity);
+      }
+
       continue;
 
       //Importing groups
@@ -88,6 +99,7 @@ void parseFile(const char* theFileName) {
        const string& aGroupName = aGroupMapIter->first;
        aCon->GetMeshOnGroup(aMeshName,aGroupName);
       }
+
       //Import families
       aMeshOnEntityMapIter = aMeshOnEntityMap.begin();
       for(; aMeshOnEntityMapIter != aMeshOnEntityMap.end(); aMeshOnEntityMapIter++){
@@ -101,12 +113,7 @@ void parseFile(const char* theFileName) {
          aCon->GetMeshOnEntity(aMeshName,anEntity,aFamilyName);
        }
       }
-      //Import mesh on entity
-      aMeshOnEntityMapIter = aMeshOnEntityMap.begin();
-      for(; aMeshOnEntityMapIter != aMeshOnEntityMap.end(); aMeshOnEntityMapIter++){
-       const VISU::TEntity& anEntity = aMeshOnEntityMapIter->first;
-       aCon->GetMeshOnEntity(aMeshName,anEntity);
-      }
+
     }
     MSG(MYDEBUG,"OK");
 #ifndef _DEXCEPT_