Salome HOME
2a41ee145b4d67558a7f33362e81e3aa0a9e724f
[tools/medcoupling.git] / src / INTERP_KERNEL / CurveIntersectorP1P0.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 __CurveIntersectorP1P0_TXX__
20 #define __CurveIntersectorP1P0_TXX__
21
22 #include "CurveIntersectorP1P0.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   CurveIntersectorP1P0<MyMeshType,MyMatrix>
31     ::CurveIntersectorP1P0(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 CurveIntersectorP1P0<MyMeshType,MyMatrix>
40     ::getNumberOfRowsOfResMatrix() const
41   {
42     return BASE_INTERSECTOR::_meshT.getNumberOfElements();
43   }
44
45   template<class MyMeshType, class MyMatrix>
46   int CurveIntersectorP1P0<MyMeshType,MyMatrix>
47     ::getNumberOfColsOfResMatrix() const
48   {
49     return BASE_INTERSECTOR::_meshS.getNumberOfNodes();
50   }
51
52   //================================================================================
53   /*!
54    * \brief Project from source nodes to target segments
55    */
56   //================================================================================
57
58   template<class MyMeshType, class MyMatrix>
59   void CurveIntersectorP1P0<MyMeshType,MyMatrix>
60   ::intersectCells(ConnType icellT, const std::vector<ConnType>& icellsS, MyMatrix& res)
61   {
62     typename MyMatrix::value_type& resRow = res[ icellT ];
63     std::vector<typename BASE_INTERSECTOR::TDualSegment> segmentsS;
64     std::vector<double> coordsT;
65     int t, nbSegT = 1 + BASE_INTERSECTOR::getRealTargetCoordinates(icellT,coordsT);
66     for ( t = 0; t < nbSegT; ++t )
67       for(typename std::vector<ConnType>::const_iterator
68             iter=icellsS.begin(); iter!=icellsS.end(); iter++)
69         {
70           int iS = *iter;
71           BASE_INTERSECTOR::getDualSegments( OTT<ConnType,numPol>::ind2C(iS),
72                                              BASE_INTERSECTOR::_meshS, segmentsS);
73           for ( int s = 0; s < (int)segmentsS.size(); ++s )
74             {
75               double surf = BASE_INTERSECTOR::intersectSegments(&segmentsS[s]._coords[0],
76                                                                 &coordsT[0] + t*SPACEDIM);
77               if(surf!=0.)
78                 {
79                   int nS = segmentsS[s]._nodeId;
80                   typename MyMatrix::value_type::const_iterator iterRes=resRow.find(nS);
81                   if(iterRes==resRow.end())
82                     resRow.insert(std::make_pair(nS,surf));
83                   else
84                     {
85                       surf+=(*iterRes).second;
86                       resRow.erase(nS);
87                       resRow.insert(std::make_pair(nS,surf));
88                     }
89                 }
90             }
91         }
92   }
93 }
94 #undef BASE_INTERSECTOR
95
96 #endif