ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/UseTheForce/wrappers.F90
Revision: 1610
Committed: Wed Oct 20 04:19:55 2004 UTC (19 years, 10 months ago) by gezelter
File size: 854 byte(s)
Log Message:
Fortran name cleanup continues

File Contents

# User Rev Content
1 gezelter 1490
2     subroutine wrapForceField(infoWrapper)
3    
4     use atype_module, ONLY: new_atype
5 gezelter 1610 use doForces, ONLY: init_FF, do_force_loop
6 gezelter 1490 use sticky_pair, ONLY: set_sticky_params
7     use gb_pair, ONLY: set_gb_pair_params
8     use eam, ONLY: newEAMtype
9     external infoWrapper
10    
11     call infoWrapper(new_atype,init_FF,do_force_loop, &
12     set_sticky_params,set_gb_pair_params,newEAMtype)
13    
14     end subroutine wrapForceField
15    
16    
17     subroutine wrapSimMod(infoWrapper)
18     use simulation, only: simulationSetup, setBox
19     use notifyCutoffs, only: cutoffNotify
20    
21     external infoWrapper
22    
23     call infoWrapper( simulationSetup, setBox, cutoffNotify )
24    
25     end subroutine wrapSimMod
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