ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/UseTheForce/doForces_interface.F90
(Generate patch)

Comparing trunk/OOPSE-4/src/UseTheForce/doForces_interface.F90 (file contents):
Revision 2279 by chrisfen, Tue Aug 30 18:23:50 2005 UTC vs.
Revision 2280 by gezelter, Thu Sep 1 20:17:55 2005 UTC

# Line 2 | Line 2 | subroutine initFortranFF(use_RF_c, use_UW_c, use_DW_c,
2  
3   subroutine initFortranFF(use_RF_c, use_UW_c, use_DW_c, thisStat)
4    use doForces, ONLY: init_FF
5 <  logical, intent(in) :: use_RF_c
6 <  logical, intent(in) :: use_UW_c
7 <  logical, intent(in) :: use_DW_c
5 >  integer, intent(in) :: use_RF_c
6 >  integer, intent(in) :: use_UW_c
7 >  integer, intent(in) :: use_DW_c
8 >  integer, intent(out) :: thisStat
9 >  logical :: use_RF, use_UW, use_DW
10 >  
11 >  use_RF = (use_RF_c .ne. 0)
12 >  use_UW = (use_UW_c .ne. 0)
13 >  use_DW = (use_DW_c .ne. 0)
14  
15 <  integer, intent(out) :: thisStat  
10 <  call init_FF(use_RF_c, use_UW_c, use_DW_c, thisStat)
15 >  call init_FF(use_RF, use_UW, use_DW, thisStat)
16  
17   end subroutine initFortranFF
18  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines