Salome HOME
abcfaddb8847287a6199775aa54ef4e1d5472121
[tools/medcoupling.git] / src / ParaMEDMEM / CommInterface.cxx
1 //  Copyright (C) 2007-2008  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 #include "CommInterface.hxx"
20
21 namespace ParaMEDMEM
22 {
23   /*! \defgroup comm_interface CommInterface
24     Class \a CommInterface is the gateway to the MPI library.
25     It is a helper class that gathers the calls to the MPI
26     library that are made in the ParaMEDMEM library. This gathering
27     allows easier gathering of information about the communication
28     in the library.
29
30     It is typically called after the MPI_Init() call in a program. It is afterwards passed as a parameter to the constructors of ParaMEDMEM objects so that they access the MPI library via the CommInterface.
31
32     As an example, the following code excerpt initializes a processor group made of the zero processor.
33
34     \verbatim
35     #include "CommInterface.hxx"
36     #include "ProcessorGroup.hxx"
37
38     int main(int argc, char** argv)
39     {
40     //initialization
41     MPI_Init(&argc, &argv);
42     ParaMEDMEM::CommInterface comm_interface;
43
44     //setting up a processor group with proc 0
45     set<int> procs;
46     procs.insert(0);
47     ParaMEDMEM::ProcessorGroup group(procs, comm_interface);
48
49     //cleanup
50     MPI_Finalize();
51     }
52     \endverbatim
53   */
54
55   CommInterface::CommInterface()
56   {
57   }
58
59   CommInterface::~CommInterface()
60   {
61   }
62 }