| 1 | 
  | 
#ifdef __C | 
| 2 | 
< | 
/* This header provides dual access for mpi structure in fortran and in | 
| 3 | 
< | 
   c, C++ | 
| 2 | 
> | 
/** This header provides dual access for mpiComponenPlan  | 
| 3 | 
> | 
    structure in fortran and in c, C++.  | 
| 4 | 
  | 
*/ | 
| 5 | 
  | 
 | 
| 6 | 
  | 
typdef struct{ | 
| 20 | 
  | 
  int numberColumns; | 
| 21 | 
  | 
  int nComponentsRow; | 
| 22 | 
  | 
  int nComponentsColumn; | 
| 23 | 
+ | 
  int rowIndex; | 
| 24 | 
+ | 
  int columnIndex; | 
| 25 | 
  | 
} mpiComponentPlan; | 
| 26 | 
  | 
 | 
| 27 | 
  | 
 | 
| 47 | 
  | 
     integer :: numberColumns = 0 | 
| 48 | 
  | 
     integer :: nComponentsRow = 0 | 
| 49 | 
  | 
     integer :: nComponentsColumn = 0 | 
| 50 | 
+ | 
     integer :: rowIndex = 0 | 
| 51 | 
+ | 
     integer :: columnIndex = 0 | 
| 52 | 
  | 
end type mpiComponentPlan | 
| 53 | 
  | 
 | 
| 54 | 
  | 
#endif |