ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/UseTheForce/DarkSide/simParallel_interface.F90
Revision: 1228
Committed: Thu Feb 14 21:37:05 2008 UTC (17 years, 2 months ago) by chuckv
File size: 728 byte(s)
Log Message:
Changes to simparalell to remove MPI stuff.

File Contents

# Content
1 subroutine setFsimParallel(thisComponentPlan, nAtomTags, atomTags, &
2 nGroupTags, groupTags, status)
3
4 use mpiSimulation
5
6 !! Passed Arguments
7 !! mpiComponentPlan struct from C
8 type (mpiComponentPlan), intent(inout) :: thisComponentPlan
9 !! Number of tags passed
10 integer, intent(in) :: nAtomTags, nGroupTags
11 !! Result status, 0 = normal, -1 = error
12 integer, intent(out) :: status
13 integer :: localStatus
14 !! Global reference tag for local particles
15 integer, dimension(nAtomTags), intent(inout) :: atomTags
16 integer, dimension(nGroupTags), intent(inout) :: groupTags
17
18 call setupSimParallel(thisComponentPlan, nAtomTags, atomTags, &
19 nGroupTags, groupTags, status)
20
21 end subroutine setFsimParallel
22