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

# User Rev Content
1 gezelter 264 subroutine setFsimParallel(thisComponentPlan, nAtomTags, atomTags, &
2     nGroupTags, groupTags, status)
3 gezelter 265
4 gezelter 264 use mpiSimulation
5 gezelter 507
6 gezelter 264 !! 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 gezelter 265
18 gezelter 264 call setupSimParallel(thisComponentPlan, nAtomTags, atomTags, &
19 gezelter 265 nGroupTags, groupTags, status)
20    
21 gezelter 507 end subroutine setFsimParallel
22