ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/wrappers.F90
Revision: 572
Committed: Wed Jul 2 21:26:55 2003 UTC (21 years ago) by mmeineke
File size: 803 byte(s)
Log Message:
fixed the bugs introduced by switching the periodic box to a matrix

File Contents

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