forked from grimme-lab/CPCM-X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpx.h
63 lines (51 loc) · 2.18 KB
/
cpx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma once
#define CPX_API_ENTRY
#define CPX_API_CALL
#define CPX_API_SUFFIX__VERSION_1_0_0
#ifdef __cplusplus
extern "C" {
#else
#include <stdbool.h>
#endif
typedef struct _cpx_calculation_type *cpx_calculation_type;
extern CPX_API_ENTRY cpx_calculation_type CPX_API_CALL
cpx_newCalculation(void) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_loadparam(char* /* Method identifier */,
char* /* Solvent name */,
cpx_calculation_type /* Calculation object */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_readparam(char* /* CRS Parameter File */,
char* /* SMD Parameter File */,
cpx_calculation_type /* Calculation object */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_loadsolvent(char* /* Solvent name */,
cpx_calculation_type /* Calculation object */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_loadsolute(char* /* Solute name */,
cpx_calculation_type /* Calculation object */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_calculate(cpx_calculation_type /* Calculation object */,
char* /* Method identifier */,
char* /* Solvent name */,
double /* Gas Phase Energy*/,
double /* Probe radius */,
double /* Temperature */,
double /* Convergence criterium */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_readCosmoFile(cpx_calculation_type /* Calculation object */,
char* /* Solvent or Solute?*/,
char* /* Cosmo file name */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_getenergies(cpx_calculation_type /* Calculation object */,
double* /* Energy array (is, cc, res, smd, ss, shift) */
) CPX_API_SUFFIX__VERSION_1_0_0;
extern CPX_API_ENTRY void CPX_API_CALL
cpx_deleteCalculation(cpx_calculation_type /* Calculation object */
) CPX_API_SUFFIX__VERSION_1_0_0;