ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/headers/fortranFncs.h
Revision: 215
Committed: Thu Dec 19 21:59:51 2002 UTC (21 years, 7 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.

File Contents

# User Rev Content
1 chuckv 191 /* 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 chuckv 215 void (*setupSimParallel)(mpiSimData* mpiPlug, int &status)
9     void (*setup_lr_force)(int *nComponents,int *tag_local, int *ident_local);
10 chuckv 191 void (*long_range_force)();