ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/UseTheForce/DarkSide/eam_interface.h
Revision: 124
Committed: Wed Oct 20 20:46:20 2004 UTC (20 years, 6 months ago) by chuckv
Content type: text/plain
File size: 611 byte(s)
Log Message:
Fortran/C++ interface de-obfuscation project (It is a very long story)

File Contents

# User Rev Content
1 gezelter 115 #ifndef USETHEFORCE_DARKSIDE_EAM_INTERFACE_H
2     #define USETHEFORCE_DARKSIDE_EAM_INTERFACE_H
3    
4     #define __C
5 chuckv 124
6 gezelter 115 #include "config.h"
7 chuckv 124
8     #define newEAMtype F90_FUNC(neweamtype, NEWEAMTYPE)
9    
10 gezelter 115 extern "C"{
11     void newEAMtype( double* lattice_constant,
12     int* eam_nrho,
13     double* eam_drho,
14     int* eam_nr,
15     double* eam_dr,
16     double* eam_rcut,
17     double* eam_rvals,
18     double* eam_rhovals,
19     double* eam_Frhovals,
20     int* eam_ident,
21 chuckv 124 int* status );
22     }
23 gezelter 115 #endif