ESyS-Particle
4.0.1
|
00001 00002 // // 00003 // Copyright (c) 2003-2011 by The University of Queensland // 00004 // Earth Systems Science Computational Centre (ESSCC) // 00005 // http://www.uq.edu.au/esscc // 00006 // // 00007 // Primary Business: Brisbane, Queensland, Australia // 00008 // Licensed under the Open Software License version 3.0 // 00009 // http://www.opensource.org/licenses/osl-3.0.php // 00010 // // 00012 00013 00014 #ifndef MPIINFO_H 00015 #define MPIINFO_H 00016 00017 #include <mpi.h> 00018 00023 class MpiInfo 00024 { 00025 public: 00029 MpiInfo(MPI_Comm comm = MPI_COMM_WORLD); 00030 00031 virtual ~MpiInfo(); 00032 00036 int rank() const; 00037 00041 int size() const; 00042 00043 private: 00044 MPI_Comm m_comm; 00045 }; 00046 00047 #endif