| Revision: | 215 |
| Committed: | Thu Dec 19 21:59:51 2002 UTC (22 years, 10 months ago) by chuckv |
| Content type: | text/plain |
| File size: | 449 byte(s) |
| Log Message: | + added lennard-jones force module and corresponding class. + created forceFactory directory. |
| # | Content |
|---|---|
| 1 | /* Wrappers for f90 proceedures |
| 2 | All f90 functions and subroutines accessable from C need to be |
| 3 | declared in here. |
| 4 | */ |
| 5 | |
| 6 | int is_initialized = 0; /* have we initialized our wrappers yet */ |
| 7 | external void init_fortran_wrappers(void); /* Initializes function pointers to f90 routines */ |
| 8 | void (*setupSimParallel)(mpiSimData* mpiPlug, int &status) |
| 9 | void (*setup_lr_force)(int *nComponents,int *tag_local, int *ident_local); |
| 10 | void (*long_range_force)(); |