ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/md_code/lj_FF.F90
(Generate patch)

Comparing trunk/mdtools/md_code/lj_FF.F90 (file contents):
Revision 230 by chuckv, Thu Jan 9 19:40:38 2003 UTC vs.
Revision 231 by chuckv, Thu Jan 9 21:31:16 2003 UTC

# Line 18 | Line 18 | module lj_ff
18       sequence
19   !! Unique number for place in linked list
20       integer :: atype_number = 0
21 !! Name of atype
22     character(len = 15) :: name = "NULL"
21   !! Unique indentifier number (ie atomic no, etc)
22       integer :: atype_ident = 0
23   !! Mass of Particle
# Line 79 | Line 77 | contains
77  
78   contains
79  
80 <  subroutine new_lj_atype(name,ident,mass,epslon,sigma,status)
83 <    character( len = 15 ) :: name
80 >  subroutine new_lj_atype(ident,mass,epslon,sigma,status)
81      real( kind = dp ), intent(in) :: mass
82      real( kind = dp ), intent(in) :: epslon
83      real( kind = dp ), intent(in) :: sigma
# Line 108 | Line 105 | contains
105      end if
106  
107   ! assign our new lj_atype information
111    this_lj_atype%name       = name
108      this_lj_atype%mass       = mass
109      this_lj_atype%epslon     = epslon
110      this_lj_atype%sigma      = sigma

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines