Ice Sheet System Model  4.18
Code documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IssmComm.h
Go to the documentation of this file.
1 /* \file IssmComm.h
2  * \brief create a class with a static comm, and static methods to access it
3  * This is a way of protecting access to the communicator.
4  */
5 
6 #ifndef _ISSM_COMM_H
7 #define _ISSM_COMM_H
8 
9 /*{{{*/
10 #ifdef HAVE_CONFIG_H
11  #include <config.h>
12 #else
13 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
14 #endif
15 
16 #include "../../../toolkits/mpi/issmmpi.h"
17 
18 /*}}}*/
19 
20 class IssmComm {
21 
22  private:
24  static bool parallel;
25 
26  public:
27  static void SetComm(ISSM_MPI_Comm incomm);
28  static void SetComm(void);
29  static ISSM_MPI_Comm GetComm(void);
30  static int GetRank(void);
31  static int GetSize(void);
32 };
33 
34 #endif /* _ISSM_COMM_H */
IssmComm::GetComm
static ISSM_MPI_Comm GetComm(void)
Definition: IssmComm.cpp:30
IssmComm::comm
static ISSM_MPI_Comm comm
Definition: IssmComm.h:23
IssmComm::parallel
static bool parallel
Definition: IssmComm.h:24
IssmComm::GetSize
static int GetSize(void)
Definition: IssmComm.cpp:46
IssmComm::SetComm
static void SetComm(void)
Definition: IssmComm.cpp:22
IssmComm::GetRank
static int GetRank(void)
Definition: IssmComm.cpp:34
ISSM_MPI_Comm
int ISSM_MPI_Comm
Definition: issmmpi.h:118
IssmComm
Definition: IssmComm.h:20