Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __POINTLOCATOR3DINTERSECTORP1P1_HXX__
00021 #define __POINTLOCATOR3DINTERSECTORP1P1_HXX__
00022
00023 #include "Intersector3DP1P1.hxx"
00024 #include "NormalizedUnstructuredMesh.hxx"
00025
00026 namespace INTERP_KERNEL
00027 {
00028 template<class MyMeshType, class MyMatrix>
00029 class PointLocator3DIntersectorP1P1 : public Intersector3DP1P1<MyMeshType,MyMatrix>
00030 {
00031 public:
00032 static const int SPACEDIM=MyMeshType::MY_SPACEDIM;
00033 static const int MESHDIM=MyMeshType::MY_MESHDIM;
00034 typedef typename MyMeshType::MyConnType ConnType;
00035 static const NumberingPolicy numPol=MyMeshType::My_numPol;
00036 public:
00037 PointLocator3DIntersectorP1P1(const MyMeshType& targetMesh, const MyMeshType& srcMesh, double precision);
00038 ~PointLocator3DIntersectorP1P1();
00039 void intersectCells(ConnType targetCell, const std::vector<ConnType>& srcCells, MyMatrix& res);
00040 protected:
00041 double _precision;
00042 };
00043 }
00044
00045 #endif