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 2306 by chrisfen, Thu Sep 15 00:13:15 2005 UTC vs.
Revision 2307 by chrisfen, Fri Sep 16 21:07:45 2005 UTC

# Line 1 | Line 1
1   !! Interfaces for C programs to module....
2  
3 < subroutine initFortranFF(use_RF_c, correctionMethod, dampingAlpha, thisStat)
3 > subroutine initFortranFF(correctionMethod, dampingAlpha, thisStat)
4    use doForces, ONLY: init_FF
5    use definitions, ONLY : dp
6  
7  integer, intent(in) :: use_RF_c
7    integer, intent(in) :: correctionMethod
8    real(kind=dp), intent(in) :: dampingAlpha
9    integer, intent(out) :: thisStat
# Line 12 | Line 11 | subroutine initFortranFF(use_RF_c, correctionMethod, d
11    integer :: correction
12    real(kind=dp) :: alpha
13    
15
16  use_RF = (use_RF_c .ne. 0)
14    correction = correctionMethod
15    alpha = dampingAlpha
16    
17 <  call init_FF(use_RF, correction, alpha, thisStat)
17 >  call init_FF(correction, alpha, thisStat)
18  
19   end subroutine initFortranFF
20  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines