--- trunk/mdtools/headers/mpiSimulation.hpp 2003/01/02 21:45:45 222 +++ trunk/mdtools/headers/mpiSimulation.hpp 2003/01/03 22:04:50 223 @@ -16,7 +16,7 @@ class mpiSimulation{ (public) void divideLabor( void ); int getMyNode(void) { return myNode; } - int getnumberProcessors(void) { return numberProcessors; } + int getNumberProcessors(void) { return numberProcessors; } int getMyMolStart( void ) { return myMolStart; } int getMyMolEnd( void ) { return myMlEnd; } int getMyMol( void ) { return myMol; } @@ -37,6 +37,14 @@ class mpiSimulation{ (public) }; + +/** + The following pointer is the global declaration of the mpiSim + object created when the mpiSimulation creation routine is + called. Every one who includes the header file will then have + access to all of the routines in mnpiSimulation class. +*/ + extern mpiSimulation* mpiSim; #endif