ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/headers/mpiSimulation.hpp
(Generate patch)

Comparing trunk/mdtools/headers/mpiSimulation.hpp (file contents):
Revision 194 by chuckv, Wed Dec 4 21:19:38 2002 UTC vs.
Revision 215 by chuckv, Thu Dec 19 21:59:51 2002 UTC

# Line 2 | Line 2
2   #define __MPISIMULATION__
3  
4   #include "SimInfo.hpp"
5 + #include "MakeStamps.hpp"
6 + #define __C
7 + #include "mpiComponentPlan.h"
8  
9  
10   class mpiSimulation{
# Line 10 | Line 13 | class mpiSimulation{ (public)
13    mpiSimulation(SimInfo* the_entryPlug);
14    ~mpiSimulation();
15    
16 <  void divideLabor(int nComponents, MoleculeStamp** compStamps, int* componentsNmol );
16 >  void divideLabor( void );
17    
18 <  int  getMyNode(void) {return myNode;}
18 >  int  getMyNode(void)        { return myNode; }
19 >  int  getMyMolStart( void )  { return myMolStart; }
20 >  int  getMyMolEnd( void )    { return myMlEnd; }
21 >  int  getMyMol( void )       { return myMol; }
22 >  int  getMyAtomStart( void ) { return myAtomStart; }
23 >  int  getMyAtomEnd( void )   { return myAtomEnd; }
24 >  int  getMyNlocal( void )    { return myNlocal; }
25 >
26 >  int getTotAtoms( void )     { return simTotAtoms; }
27    
17  
28  
29   private:
30  
31   protected:
32    SimInfo* entryPlug;
33 <  
24 <  int myMolStart;
25 <  int myMolEnd;
26 <  int myMol;
27 <  int  numberProcessors;
28 <  int  myNode;
29 <  //  int  processorNameLen;
30 <  //  char* processorName;
31 <  int  natomsRow,natomsCol,natomsStart,natomsEnd;
32 <  int  numberCols,numberRows;
33 <  int  nmolsRow,nmolsCol,nmolsLocal;
34 <  
33 >  mpiSimData* mpiPlug;
34  
35 +  // int *myIdents; // is needed by Cpp only. It tells the molecule which stamp it is.
36 +
37   };
38  
39 + extern mpiSimulation* mpiSim;
40  
41   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines