]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
int64 : update attributes
authorAnthony Geay <anthony.geay@edf.fr>
Fri, 1 Feb 2019 13:44:31 +0000 (14:44 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Fri, 1 Feb 2019 13:44:31 +0000 (14:44 +0100)
src/MEDCoupling/MEDCoupling1GTUMesh.hxx
src/MEDCoupling/MEDCouplingFieldDiscretization.hxx
src/MEDCoupling/MEDCouplingIMesh.hxx
src/MEDCoupling/MEDCouplingMappedExtrudedMesh.hxx
src/MEDCoupling/MEDCouplingPartDefinition.hxx
src/MEDCoupling/MEDCouplingRemapper.hxx
src/MEDCoupling/MEDCouplingSkyLineArray.hxx

index e8ae6a50a036543f9afe1ed96000135c9c057415..b96ba877f1e495b02e91d98415dc6be5e24f8b93 100644 (file)
@@ -180,7 +180,7 @@ namespace MEDCoupling
     template<class MAPCLS>
     void renumberNodesInConnT(const MAPCLS& newNodeNumbersO2N);
   private:
-    MCAuto<DataArrayInt> _conn;
+    MCAuto<DataArrayIdType> _conn;
   public:
     static const int HEXA8_FACE_PAIRS[6];
   };
@@ -274,8 +274,8 @@ namespace MEDCoupling
     template<class MAPCLS>
     void renumberNodesInConnT(const MAPCLS& newNodeNumbersO2N);
   private:
-    MCAuto<DataArrayInt> _conn_indx;
-    MCAuto<DataArrayInt> _conn;
+    MCAuto<DataArrayIdType> _conn_indx;
+    MCAuto<DataArrayIdType> _conn;
   };
 }
 
index ece607e77124938d7a1b89fc80729e7b49d89a29..f773b7cc652d11e523e8fa87cdc25541885e92dd 100644 (file)
@@ -226,7 +226,7 @@ namespace MEDCoupling
   protected:
     void buildDiscrPerCellIfNecessary(const MEDCouplingMesh *mesh);
   protected:
-    DataArrayInt *_discr_per_cell;
+    DataArrayIdType *_discr_per_cell;
     static const int DFT_INVALID_LOCID_VALUE;
   };
 
index 362cb980339a5fbc26fc8b7499c267f2fd7d823c..9bc6bea40d84198019db8f0ae20a8c1a012d158a 100644 (file)
@@ -118,7 +118,7 @@ namespace MEDCoupling
     int _space_dim;
     double _origin[3];
     double _dxyz[3];
-    int _structure[3];
+    mcIdType _structure[3];
     std::string _axis_unit;
   };
 }
index 593b2eef196c409e297bcd78e53f334bcc49f56d..ee953833b53a3acd36bf45890a0bc4e3bca6e73d 100644 (file)
@@ -132,8 +132,8 @@ namespace MEDCoupling
     MCAuto<MEDCouplingUMesh> _mesh2D;
     MCAuto<MEDCouplingUMesh> _mesh1D;
     //! New to old 3D cell Ids Array
-    MCAuto<DataArrayInt> _mesh3D_ids;
-    int _cell_2D_id;
+    MCAuto<DataArrayIdType> _mesh3D_ids;
+    mcIdType _cell_2D_id;
   };
 }
 
index 5499eb544defe1b6787bf8681071278a0ccda99f..b67902515ef0687f4b4e5d5328dd196f076ca6e1 100644 (file)
@@ -74,7 +74,7 @@ namespace MEDCoupling
     DataArrayPartDefinition *add2(const SlicePartDefinition *other) const;
     virtual ~DataArrayPartDefinition();
   private:
-    MCAuto<DataArrayInt> _arr;
+    MCAuto<DataArrayIdType> _arr;
   };
 
   class SlicePartDefinition : public PartDefinition
@@ -103,9 +103,9 @@ namespace MEDCoupling
     PartDefinition *add2(const SlicePartDefinition *other) const;
     virtual ~SlicePartDefinition();
   private:
-    int _start;
-    int _stop;
-    int _step;
+    mcIdType _start;
+    mcIdType _stop;
+    mcIdType _step;
   };
 }
 
index 5d7ac9da8105a2c0a49884084efe2e7cec2b0a79..cd9980a9bd5a676092f3420aca2570c66102a42a 100644 (file)
@@ -25,6 +25,7 @@
 #include "MEDCouplingTimeLabel.hxx"
 #include "InterpolationOptions.hxx"
 #include "MEDCouplingNatureOfField.hxx"
+#include "MCType.hxx"
 #include "MCAuto.hxx"
 
 #include "InterpKernelException.hxx"
@@ -118,9 +119,9 @@ namespace MEDCoupling
     InterpolationMatrixPolicy _interp_matrix_pol;
     NatureOfField _nature_of_deno;
     unsigned int _time_deno_update;
-    std::vector<std::map<int,double> > _matrix;
-    std::vector<std::map<int,double> > _deno_multiply;
-    std::vector<std::map<int,double> > _deno_reverse_multiply;
+    std::vector<std::map<mcIdType,double> > _matrix;
+    std::vector<std::map<mcIdType,double> > _deno_multiply;
+    std::vector<std::map<mcIdType,double> > _deno_reverse_multiply;
   };
 }
 
index 7c7d04a03a4a482299fdc01f938b5e3283289b4a..1caef0a7637730b46c578c5a3054ce7b6a2812ee 100644 (file)
@@ -110,9 +110,9 @@ namespace MEDCoupling
     void validIndex(const std::string& func, int index) const;
     void validSuperIndexAndIndex(const std::string& func, int superIndex, int index) const;
 
-    MCAuto<DataArrayInt> _super_index;
-    MCAuto<DataArrayInt> _index;
-    MCAuto<DataArrayInt> _values;
+    MCAuto<DataArrayIdType> _super_index;
+    MCAuto<DataArrayIdType> _index;
+    MCAuto<DataArrayIdType> _values;
   };
 
 }