ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE_old/src/mdtools/libmdCode/wrappers.F90
Revision: 293
Committed: Thu Mar 6 16:07:57 2003 UTC (21 years, 6 months ago) by mmeineke
File size: 542 byte(s)
Log Message:
cleaning up all of the function wrapping

File Contents

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