| Revision: | 270 |
| Committed: | Fri Feb 14 17:08:46 2003 UTC (22 years, 8 months ago) by mmeineke |
| File size: | 334 byte(s) |
| Log Message: | added libmdCode and a couple help scripts |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | mmeineke | 270 | subroutine wrapSimMod(infoWrapper) |
| 2 | use simulation | ||
| 3 | |||
| 4 | external infoWrapper | ||
| 5 | |||
| 6 | call infoWrapper( setSimulation ) | ||
| 7 | |||
| 8 | end subroutine wrapSimMod | ||
| 9 | |||
| 10 | |||
| 11 | |||
| 12 | #ifdef IS_MPI | ||
| 13 | |||
| 14 | subroutine wrapSimParallelMod(infoWrapper) | ||
| 15 | use mpiSimulation | ||
| 16 | |||
| 17 | external infoWrapper | ||
| 18 | |||
| 19 | call infoWrapper( setupSimParallel ) | ||
| 20 | |||
| 21 | end subroutine wrapSimParallelMod | ||
| 22 | |||
| 23 | #endif |