Skip to content
Snippets Groups Projects
Commit c525f899 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

allow MED files with no family table

parent 0067aaa4
No related branches found
No related tags found
No related merge requests found
...@@ -349,15 +349,14 @@ int GModel::readMED(const std::string &name, int meshIndex) ...@@ -349,15 +349,14 @@ int GModel::readMED(const std::string &name, int meshIndex)
Msg::Error("Could not read MED elements"); Msg::Error("Could not read MED elements");
return 0; return 0;
} }
std::vector<med_int> fam(numEle); std::vector<med_int> fam(numEle, 0);
#if (MED_MAJOR_NUM == 3) #if (MED_MAJOR_NUM == 3)
if(MEDmeshEntityFamilyNumberRd(fid, meshName, MED_NO_DT, MED_NO_IT, MED_CELL, if(MEDmeshEntityFamilyNumberRd(fid, meshName, MED_NO_DT, MED_NO_IT, MED_CELL,
type, &fam[0]) < 0){ type, &fam[0]) < 0){
#else #else
if(MEDfamLire(fid, meshName, &fam[0], numEle, MED_MAILLE, type) < 0){ if(MEDfamLire(fid, meshName, &fam[0], numEle, MED_MAILLE, type) < 0){
#endif #endif
Msg::Error("Could not read MED families"); Msg::Info("No family number for elements: using 0 as default family number");
return 0;
} }
std::vector<med_int> eleTags(numEle); std::vector<med_int> eleTags(numEle);
#if (MED_MAJOR_NUM == 3) #if (MED_MAJOR_NUM == 3)
......
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