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

Comparing trunk/OOPSE-4/src/UseTheForce/DarkSide/lj_interface.F90 (file contents):
Revision 1948 by gezelter, Fri Jan 14 20:31:16 2005 UTC vs.
Revision 2189 by chuckv, Wed Apr 13 20:36:45 2005 UTC

# Line 1 | Line 1
1 < subroutine newLJtype(c_ident, sigma, epsilon, status)
1 > subroutine newLJtype(c_ident, sigma, epsilon, soft_pot, status)
2    use lj, ONLY : module_newLJtype => newLJtype
3    integer, parameter :: DP = selected_real_kind(15)
4    integer,intent(inout) :: c_ident
5    real(kind=dp),intent(inout) :: sigma
6    real(kind=dp),intent(inout) :: epsilon
7 +  integer,intent(inout) :: soft_pot
8    integer,intent(inout) :: status
9    
10 <  call module_newLJtype(c_ident, sigma, epsilon, status)
10 >  call module_newLJtype(c_ident, sigma, epsilon, soft_pot, status)
11    
12   end subroutine newLJtype
13  
# Line 16 | Line 17 | end subroutine useGeometricMixing
17    call module_useGeometricMixing()
18    return
19   end subroutine useGeometricMixing
20 +
21 + subroutine destroyLJTypes()
22 + use lj, ONLY: module_destroyLJTypes => destroyLJTypes
23 +
24 + call module_destroyLJTypes()
25 +
26 + end subroutine destroyLJTypes

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines