Salome HOME
Start debugging 3D interpolation error on OCTA12 in target mesh
[tools/medcoupling.git] / src / INTERP_KERNEL / Intersector3D.hxx
index bf3df0b9ffa8040739bc8109f2839e4313d1ed93..338c9dea9cad74089bd6e3b95797554b1d38effe 100644 (file)
@@ -1,21 +1,23 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+// Author : Anthony Geay (CEA/DEN)
+
 #ifndef __INTERSECTOR3D_HXX__
 #define __INTERSECTOR3D_HXX__
 
@@ -26,11 +28,21 @@ namespace INTERP_KERNEL
   template<class MyMeshType, class MyMatrix>
   class Intersector3D : public TargetIntersector<MyMeshType,MyMatrix>
   {
+  public:
+    static const int SPACEDIM=MyMeshType::MY_SPACEDIM;
+    static const int MESHDIM=MyMeshType::MY_MESHDIM;
+    typedef typename MyMeshType::MyConnType ConnType;
+    static const NumberingPolicy numPol=MyMeshType::My_numPol;
   public:
     Intersector3D(const MyMeshType& targetMesh, const MyMeshType& srcMesh);
+    void getRealTargetCoordinates(ConnType icellT, std::vector<double>& coordsT) const;
+    void getRealSourceCoordinates(ConnType icellT, std::vector<double>& coordsT) const;
+    const ConnType *getStartConnOfTargetCell(ConnType icellT) const;
+    const ConnType *getStartConnOfSourceCell(ConnType icellS) const;
+    void getConnOfSourceCell(ConnType icellS, typename std::vector<ConnType>& res) const;
   protected:
-    const MyMeshType _target_mesh;
-    const MyMeshType _src_mesh;
+    const MyMeshType& _target_mesh;
+    const MyMeshType& _src_mesh;
   };
 }