| 7 | 
  | 
!! | 
| 8 | 
  | 
!! @author Charles F. Vardeman II | 
| 9 | 
  | 
!! @author Matthew Meineke | 
| 10 | 
< | 
!! @version $Id: mpiSimulation_module.F90,v 1.7 2003-09-05 21:28:19 gezelter Exp $, $Date: 2003-09-05 21:28:19 $, $Name: not supported by cvs2svn $, $Revision: 1.7 $ | 
| 10 | 
> | 
!! @version $Id: mpiSimulation_module.F90,v 1.8 2003-10-28 20:09:38 gezelter Exp $, $Date: 2003-10-28 20:09:38 $, $Name: not supported by cvs2svn $, $Revision: 1.8 $ | 
| 11 | 
  | 
 | 
| 12 | 
  | 
module mpiSimulation   | 
| 13 | 
  | 
  use definitions | 
| 663 | 
  | 
 | 
| 664 | 
  | 
  end subroutine setTags | 
| 665 | 
  | 
 | 
| 666 | 
< | 
  pure function getNcol(thisplan) result(ncol) | 
| 666 | 
> | 
!  pure function getNcol(thisplan) result(ncol) | 
| 667 | 
> | 
  function getNcol(thisplan) result(ncol) | 
| 668 | 
  | 
    type (gs_plan), intent(in) :: thisplan | 
| 669 | 
  | 
    integer :: ncol | 
| 670 | 
  | 
    ncol = thisplan%gsComponentPlan%nComponentsColumn | 
| 671 | 
  | 
  end function getNcol | 
| 672 | 
  | 
 | 
| 673 | 
< | 
  pure function getNrow(thisplan) result(nrow) | 
| 673 | 
> | 
!  pure function getNrow(thisplan) result(nrow) | 
| 674 | 
> | 
  function getNrow(thisplan) result(nrow) | 
| 675 | 
  | 
    type (gs_plan), intent(in) :: thisplan | 
| 676 | 
  | 
    integer :: nrow | 
| 677 | 
  | 
    nrow = thisplan%gsComponentPlan%nComponentsRow |