| 1 | gezelter | 1490 | #ifdef __C | 
| 2 | gezelter | 1930 | #ifndef USETHEFORCE_MPICOMPONENTPLAN_H | 
| 3 |  |  | #define USETHEFORCE_MPICOMPONENTPLAN_H | 
| 4 | gezelter | 1490 |  | 
| 5 | chuckv | 1602 |  | 
| 6 | gezelter | 1490 | /** This header provides dual access for mpiComponentPlan | 
| 7 |  |  | structure in fortran and in c, C++. | 
| 8 |  |  | */ | 
| 9 |  |  |  | 
| 10 |  |  | typedef struct{ | 
| 11 |  |  | int nMolGlobal; | 
| 12 |  |  | int nAtomsGlobal; | 
| 13 |  |  | int nGroupsGlobal; | 
| 14 |  |  | int nMolLocal; | 
| 15 |  |  | int nAtomsLocal; | 
| 16 |  |  | int nGroupsLocal; | 
| 17 |  |  | int myNode; | 
| 18 |  |  | int nProcessors; | 
| 19 |  |  | int rowComm; | 
| 20 |  |  | int columnComm; | 
| 21 |  |  | int nRows; | 
| 22 |  |  | int nColumns; | 
| 23 |  |  | int nAtomsInRow; | 
| 24 |  |  | int nAtomsInColumn; | 
| 25 |  |  | int nGroupsInRow; | 
| 26 |  |  | int nGroupsInColumn; | 
| 27 |  |  | int rowIndex; | 
| 28 |  |  | int columnIndex; | 
| 29 |  |  | } mpiSimData; | 
| 30 |  |  |  | 
| 31 |  |  | #endif // __MPICOMPONENTPLAN_H__ | 
| 32 |  |  |  | 
| 33 |  |  | #endif // __C | 
| 34 |  |  |  | 
| 35 |  |  |  | 
| 36 |  |  | #ifdef __FORTRAN90 | 
| 37 |  |  | type, public :: mpiComponentPlan | 
| 38 |  |  | sequence | 
| 39 |  |  | integer :: nMolGlobal = 0 | 
| 40 |  |  | integer :: nAtomsGlobal = 0 | 
| 41 |  |  | integer :: nGroupsGlobal = 0 | 
| 42 |  |  | integer :: nMolLocal = 0 | 
| 43 |  |  | integer :: nAtomsLocal = 0 | 
| 44 |  |  | integer :: nGroupsLocal = 0 | 
| 45 |  |  | integer :: myNode = 0 | 
| 46 |  |  | integer :: nProcessors = 0 | 
| 47 |  |  | integer :: rowComm = 0 | 
| 48 |  |  | integer :: columnComm = 0 | 
| 49 |  |  | integer :: nRows = 0 | 
| 50 |  |  | integer :: nColumns = 0 | 
| 51 |  |  | integer :: nAtomsInRow = 0 | 
| 52 |  |  | integer :: nAtomsInColumn = 0 | 
| 53 |  |  | integer :: nGroupsInRow = 0 | 
| 54 |  |  | integer :: nGroupsInColumn = 0 | 
| 55 |  |  | integer :: rowIndex = 0 | 
| 56 |  |  | integer :: columnIndex = 0 | 
| 57 |  |  | end type mpiComponentPlan | 
| 58 |  |  |  | 
| 59 |  |  | #endif |