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 __TARGETINTERSECTOR__HXX__
00021 #define __TARGETINTERSECTOR__HXX__
00022
00023 #include "INTERPKERNELDefines.hxx"
00024
00025 #include <vector>
00026
00027 namespace INTERP_KERNEL
00028 {
00034 template<class MyMeshType, class MyMatrix>
00035 class TargetIntersector
00036 {
00037 public:
00038 typedef typename MyMeshType::MyConnType ConnType;
00039 public:
00050 virtual void intersectCells(ConnType targetCell, const std::vector<ConnType>& srcCells, MyMatrix& res) = 0;
00052
00053 virtual int getNumberOfRowsOfResMatrix() const = 0;
00054 virtual int getNumberOfColsOfResMatrix() const = 0;
00055 virtual ~TargetIntersector() { }
00056 };
00057 }
00058
00059 #endif