ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/wrappers.F90
Revision: 657
Committed: Wed Jul 30 21:17:01 2003 UTC (20 years, 11 months ago) by chuckv
File size: 856 byte(s)
Log Message:
More bug fixes for eam.

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 gezelter 462 use sticky_pair, ONLY: set_sticky_params
7     use gb_pair, ONLY: set_gb_pair_params
8 chuckv 657 use eam, ONLY: newEAMtype
9 mmeineke 377 external infoWrapper
10    
11 chuckv 460 call infoWrapper(new_atype,init_FF,do_force_loop, &
12 chuckv 657 set_sticky_params,set_gb_pair_params,newEAMtype)
13 mmeineke 377
14     end subroutine wrapForceField
15    
16    
17     subroutine wrapSimMod(infoWrapper)
18 mmeineke 572 use simulation, only: simulationSetup, setBox
19 mmeineke 626 use notifyCutoffs, only: cutoffNotify
20 mmeineke 377
21     external infoWrapper
22    
23 mmeineke 626 call infoWrapper( simulationSetup, setBox, cutoffNotify )
24 mmeineke 377
25     end subroutine wrapSimMod
26    
27    
28    
29     #ifdef IS_MPI
30    
31     subroutine wrapSimParallelMod(infoWrapper)
32     use mpiSimulation, only: setupSimParallel
33    
34     external infoWrapper
35    
36     call infoWrapper( setupSimParallel )
37    
38     end subroutine wrapSimParallelMod
39    
40     #endif