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 #ifndef __MPICMDBUF_H 00014 #define __MPICMDBUF_H 00015 00016 #include <mpi.h> 00017 00029 class CMPILCmdBuffer 00030 { 00031 private: 00032 MPI_Comm m_comm; 00033 MPI_Status m_status; 00034 int m_root; 00035 bool m_isroot; 00036 00037 public: 00038 CMPILCmdBuffer(MPI_Comm,int); 00039 virtual ~CMPILCmdBuffer(){}; 00040 00041 void broadcast(int); 00042 int receive(); 00043 00044 }; 00045 #endif //__MPICMDBUF_H