Salome HOME
db851374a6c7e28ffb30ced8840b4f1e576ea751
[tools/medcoupling.git] / src / ParaMEDMEM / ExplicitMapping.hxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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
20 #ifndef __EXPLICITMAPPING_HXX__
21 #define __EXPLICITMAPPING_HXX__
22
23 #include <vector>
24 #include <map>
25 #include <set>
26
27 namespace MEDCoupling
28 {
29   /*!
30    * Internal class, not part of the public API.
31    *
32    * Used by the ExplicitCoincidentDEC.
33    */
34   class ExplicitMapping
35   {
36   public:
37     ExplicitMapping();
38     ~ExplicitMapping();
39     
40     void pushBackElem(std::pair<int,int> idistant);
41     void  setDistantElem(int ilocal, std::pair<int,int> idistant);
42     int nbDistantDomains();
43     std::pair <int,int> getDistantNumbering(int ielem) const;
44     
45     int getDistantDomain(int i);
46     int getNbDistantElems(int i);
47     int* serialize(int idproc);
48     void unserialize(int nbprocs, int* sizes,int nbtarget, int* targetrank, int* commbuffer);
49     
50     int* getBufferIndex() const { return _buffer_index; }
51     int* getCounts() const { return _send_counts; }
52   private:
53     std::vector <std::pair<int,int> > _mapping;
54     std::set<int> _distant_domains;
55     int* _numbers;
56     int* _domains;
57     int* _comm_buffer;
58     int* _buffer_index;
59     int* _send_counts;
60
61     void computeNumbers();
62   };
63 }
64
65 #endif