| 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 | 
| 6 |  | use sticky_pair, ONLY: set_sticky_params | 
| 7 |  | use gb_pair, ONLY: set_gb_pair_params | 
| 8 |  | external infoWrapper | 
| 9 |  |  | 
| 10 |  | call infoWrapper(new_atype,init_FF,do_force_loop, & | 
| 11 | < | LJ_new_rcut,set_sticky_params,set_gb_pair_params) | 
| 11 | > | set_sticky_params,set_gb_pair_params) | 
| 12 |  |  | 
| 13 |  | end subroutine wrapForceField | 
| 14 |  |  | 
| 15 |  |  | 
| 16 |  | subroutine wrapSimMod(infoWrapper) | 
| 17 |  | use simulation, only: simulationSetup, setBox | 
| 18 | + | use notifyCutoffs, only: cutoffNotify | 
| 19 |  |  | 
| 20 |  | external infoWrapper | 
| 21 |  |  | 
| 22 | < | call infoWrapper( simulationSetup, setBox ) | 
| 22 | > | call infoWrapper( simulationSetup, setBox, cutoffNotify ) | 
| 23 |  |  | 
| 24 |  | end subroutine wrapSimMod | 
| 25 |  |  |