ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/UseTheForce/DarkSide/lj_interface.h
Revision: 130
Committed: Thu Oct 21 15:24:55 2004 UTC (20 years, 6 months ago) by chuckv
Content type: text/plain
File size: 496 byte(s)
Log Message:
Added interface for fortran lj module.

File Contents

# Content
1 /*
2 * lj_interface.h
3 * oopse
4 *
5 * Created by Charles Vardeman II on 10/21/04.
6 * Copyright 2004 University of Notre Dame. All rights reserved.
7 *
8 */
9
10
11
12
13 #ifndef USETHEFORCE_DARKSIDE_LJ_INTERFACE_H
14 #define USETHEFORCE_DARKSIDE_LJ_INTERFACE_H
15
16 #define __C
17
18 #include "config.h"
19
20 #define newLJtype F90_FUNC(newljtype, NEWLJTYPE)
21
22 extern "C"{
23 void newEAMtype( int* ident,
24 double* lj_sigma,
25 double* lj_epsilon
26 int* status);
27 }
28 #endif
29