]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
WIP
authorAnthony Geay <anthony.geay@edf.fr>
Tue, 9 Oct 2018 12:54:49 +0000 (14:54 +0200)
committerAnthony Geay <anthony.geay@edf.fr>
Tue, 9 Oct 2018 12:54:49 +0000 (14:54 +0200)
src/MEDLoader/MEDFileField1TS.cxx

index e884ea05a44eb2c508322a8bd9cf2e8d6a4c015a..f317f381bd866e2f2a5fca85416da83ac84d91d0 100644 (file)
@@ -741,22 +741,11 @@ bool MEDFileAnyTypeField1TSWithoutSDA::allocIfNecessaryTheArrayToReceiveDataFrom
 
 void MEDFileAnyTypeField1TSWithoutSDA::loadOnlyStructureOfDataRecursively(med_idt fid, const MEDFileFieldNameScope& nasc, const MEDFileMeshes *ms, const MEDFileEntities *entities)
 {
-  med_int numdt,numit;
-  med_float dt;
   med_int meshnumdt,meshnumit;
-  MEDFILESAFECALLERRD0(MEDfieldComputingStepInfo,(fid,nasc.getName().c_str(),_csit,&numdt,&numit,&_dt));
-  {
-    med_bool localMesh;
-    med_int nmesh;
-    INTERP_KERNEL::AutoPtr<char> meshName(MEDLoaderBase::buildEmptyString(MED_NAME_SIZE));
-    MEDFILESAFECALLERRD0(MEDfield23ComputingStepMeshInfo,(fid,nasc.getName().c_str(),_csit,&numdt,&numit,&dt,&nmesh,meshName,&localMesh,&meshnumdt,&meshnumit)); // to check with Adrien for legacy MED files
-  }
-  //MEDFILESAFECALLERRD0(MEDfieldComputingStepMeshInfo,(fid,nasc.getName().c_str(),_csit,&numdt,&numit,&_dt,&meshnumdt,&meshnumit));
-  if(_iteration!=numdt || _order!=numit)
-    throw INTERP_KERNEL::Exception("MEDFileAnyTypeField1TSWithoutSDA::loadBigArraysRecursively : unexpected exception internal error !");
+  MEDFILESAFECALLERRD0(MEDfieldComputingStepMeshInfo,(fid,nasc.getName().c_str(),_csit,&_iteration,&_order,&_dt,&meshnumdt,&meshnumit));
   _field_per_mesh.resize(1);
   //
-  MEDFileMesh *mm(0);
+  MEDFileMesh *mm(nullptr);
   if(ms)
     {
       mm=ms->getMeshWithName(getMeshName());