]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
EHPOC Interpolators
authoreap <eap@opencascade.com>
Wed, 16 Dec 2009 13:19:10 +0000 (13:19 +0000)
committereap <eap@opencascade.com>
Wed, 16 Dec 2009 13:19:10 +0000 (13:19 +0000)
  Dimension of cartesian mesh == space dimension

src/MEDCoupling/MEDCouplingNormalizedCartesianMesh.hxx
src/MEDCoupling/MEDCouplingNormalizedCartesianMesh.txx

index 70dc2686dd7d9d9fa31b7ca822a3256302fabb4c..0f59f1407ad75f123ec64d6c17c96bf1b79aeba9 100644 (file)
@@ -26,12 +26,12 @@ namespace ParaMEDMEM
   class MEDCouplingCMesh;
 }
 
-template<int SPACEDIM,int MESHDIM>
+template<int SPACEDIM>
 class MEDCouplingNormalizedCartesianMesh : public INTERP_KERNEL::GenericMesh
 {
 public:
   static const int MY_SPACEDIM=SPACEDIM;
-  static const int MY_MESHDIM=MESHDIM;
+  static const int MY_MESHDIM=SPACEDIM;
   typedef int MyConnType;
   static const INTERP_KERNEL::NumberingPolicy My_numPol=INTERP_KERNEL::ALL_C_MODE;
 public:
index 16b715337f49991f1fb2ef1934394270fa78eb71..2e82d28fe056793b04e7cdf00e675b2d69746afa 100644 (file)
 #include "MEDCouplingNormalizedCartesianMesh.hxx"
 #include "MEDCouplingCMesh.hxx"
 
-template<int SPACEDIM,int MESHDIM>
-MEDCouplingNormalizedCartesianMesh<SPACEDIM,MESHDIM>::MEDCouplingNormalizedCartesianMesh(ParaMEDMEM::MEDCouplingCMesh *mesh):_mesh(mesh)
+template<int SPACEDIM>
+MEDCouplingNormalizedCartesianMesh<SPACEDIM>::MEDCouplingNormalizedCartesianMesh(ParaMEDMEM::MEDCouplingCMesh *mesh):_mesh(mesh)
 {
   if(_mesh)
     _mesh->incrRef();
 }
 
-template<int SPACEDIM,int MESHDIM>
-MEDCouplingNormalizedCartesianMesh<SPACEDIM,MESHDIM>::~MEDCouplingNormalizedCartesianMesh()
+template<int SPACEDIM>
+MEDCouplingNormalizedCartesianMesh<SPACEDIM>::~MEDCouplingNormalizedCartesianMesh()
 {
   if(_mesh)
     _mesh->decrRef();
 }
 
-template<int SPACEDIM,int MESHDIM>
-unsigned long MEDCouplingNormalizedCartesianMesh<SPACEDIM,MESHDIM>::getNumberOfElements() const
+template<int SPACEDIM>
+unsigned long MEDCouplingNormalizedCartesianMesh<SPACEDIM>::getNumberOfElements() const
 {
   return _mesh->getNumberOfCells();
 }
 
-template<int SPACEDIM,int MESHDIM>
-unsigned long MEDCouplingNormalizedCartesianMesh<SPACEDIM,MESHDIM>::nbCellsAlongAxis(int axis) const
+template<int SPACEDIM>
+unsigned long MEDCouplingNormalizedCartesianMesh<SPACEDIM>::nbCellsAlongAxis(int axis) const
 {
   return _mesh->getCoordsAt(axis)->getNumberOfTuples() - 1;
 }
 
-template<int SPACEDIM,int MESHDIM>
-const double * MEDCouplingNormalizedCartesianMesh<SPACEDIM,MESHDIM>::getCoordsAlongAxis(int axis) const
+template<int SPACEDIM>
+const double * MEDCouplingNormalizedCartesianMesh<SPACEDIM>::getCoordsAlongAxis(int axis) const
 {
   return _mesh->getCoordsAt(axis)->getConstPointer();
 }