ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/src/UseTheForce/DarkSide/charge_interface.F90
Revision: 1948
Committed: Fri Jan 14 20:31:16 2005 UTC (19 years, 7 months ago) by gezelter
File size: 361 byte(s)
Log Message:
separating modules and C/Fortran interface subroutines

File Contents

# Content
1 subroutine newChargeType(ident, charge, status)
2
3 use charge_charge, ONLY : module_newChargeType => newChargeType
4
5 integer, parameter :: DP = selected_real_kind(15)
6 integer,intent(inout) :: ident
7 real(kind=dp),intent(inout) :: charge
8 integer,intent(inout) :: status
9
10 call module_newChargeType(ident, charge, status)
11
12 end subroutine newChargeType