ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/wrappers.F90
Revision: 378
Committed: Fri Mar 21 17:42:12 2003 UTC (21 years, 3 months ago) by mmeineke
File size: 640 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r377,
which included commits to RCS files with non-trunk default branches.

File Contents

# User Rev Content
1 mmeineke 377
2     subroutine wrapForceField(infoWrapper)
3    
4     use atype_module, ONLY: new_atype
5     use do_Forces, ONLY: init_FF, do_force_loop
6     external infoWrapper
7    
8     call infoWrapper(new_atype,init_FF,do_force_loop)
9    
10     end subroutine wrapForceField
11    
12    
13    
14     subroutine wrapSimMod(infoWrapper)
15     use simulation, only: simulationSetup, setBox_3d
16    
17     external infoWrapper
18    
19     call infoWrapper( simulationSetup, setBox_3d )
20    
21     end subroutine wrapSimMod
22    
23    
24    
25     #ifdef IS_MPI
26    
27     subroutine wrapSimParallelMod(infoWrapper)
28     use mpiSimulation, only: setupSimParallel
29    
30     external infoWrapper
31    
32     call infoWrapper( setupSimParallel )
33    
34     end subroutine wrapSimParallelMod
35    
36     #endif