Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/med.git] / src / INTERP_KERNEL / CurveIntersectorP0P0.txx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef __CURVEINTERSECTORP0P0_TXX__
20 #define __CURVEINTERSECTORP0P0_TXX__
21
22 #include "CurveIntersectorP0P0.hxx"
23 #include "CurveIntersector.txx"
24
25 #define BASE_INTERSECTOR CurveIntersector<MyMeshType,MyMatrix>
26
27 namespace INTERP_KERNEL
28 {
29   template<class MyMeshType, class MyMatrix>
30   CurveIntersectorP0P0<MyMeshType,MyMatrix>
31     ::CurveIntersectorP0P0(const MyMeshType& meshT, const MyMeshType& meshS,
32                            double precision, double tolerance,
33                            double medianLine, int printLevel):
34       BASE_INTERSECTOR(meshT, meshS, precision, tolerance, medianLine, printLevel)
35   {
36   }
37
38   template<class MyMeshType, class MyMatrix>
39   int CurveIntersectorP0P0<MyMeshType,MyMatrix>
40     ::getNumberOfRowsOfResMatrix() const
41   {
42     return BASE_INTERSECTOR::_meshT.getNumberOfElements();
43   }
44
45   template<class MyMeshType, class MyMatrix>
46   int CurveIntersectorP0P0<MyMeshType,MyMatrix>
47     ::getNumberOfColsOfResMatrix() const
48   {
49     return BASE_INTERSECTOR::_meshS.getNumberOfElements();
50   }
51
52   template<class MyMeshType, class MyMatrix>
53   void CurveIntersectorP0P0<MyMeshType,MyMatrix>
54   ::intersectCells(ConnType icellT, const std::vector<ConnType>& icellsS, MyMatrix& res)
55   {
56     typename MyMatrix::value_type& resRow = res[icellT];
57     std::vector<double> coordsT;
58     int t, nbSegT = 1 + BASE_INTERSECTOR::getRealTargetCoordinates(icellT,coordsT);
59     for ( t = 0; t < nbSegT; ++t )
60       for(typename std::vector<ConnType>::const_iterator
61             iter=icellsS.begin(); iter!=icellsS.end(); iter++)
62         {
63           int iS = *iter;
64           std::vector<double> coordsS;
65           int s, nbSegS = 1 + BASE_INTERSECTOR::getRealSourceCoordinates(iS,coordsS);
66           for ( s = 0; s < nbSegS; ++s )
67             {
68               double surf = BASE_INTERSECTOR::intersectSegments(&coordsT[0] + t*SPACEDIM,
69                                                                 &coordsS[0] + s*SPACEDIM);
70               if(surf!=0.)
71                 resRow.insert(std::make_pair(OTT<ConnType,numPol>::indFC(iS),surf));
72             }
73         }
74   }
75 }
76 #undef BASE_INTERSECTOR
77
78 #endif