3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
10 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12 * Copyright (c) 2001-2004, The GROMACS development team,
13 * check out http://www.gromacs.org for more information.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * If you want to redistribute modifications, please consider that
21 * scientific software is very special. Version control is crucial -
22 * bugs must be traceable. We will be happy to consider code for
23 * inclusion in the official distribution, but derived work must not
24 * be called official GROMACS. Details are found in the README & COPYING
25 * files - if they are missing, get the official version at www.gromacs.org.
27 * To help us fund GROMACS development, we humbly ask that you cite
28 * the papers on the package - you can find them in the top README file.
30 * For more info, check our website at http://www.gromacs.org
33 * Gromacs Runs On Most of All Computer Systems
36 #ifndef _gpp_atomtype_h
37 #define _gpp_atomtype_h
52 typedef struct gpp_atomtype
*gpp_atomtype_t
;
54 extern int get_atomtype_type(const char *str
,gpp_atomtype_t at
);
55 /* Return atomtype corresponding to case-insensitive str
56 or NOTSET if not found */
58 extern int get_atomtype_ntypes(gpp_atomtype_t at
);
59 /* Return number of atomtypes */
61 extern char *get_atomtype_name(int nt
,gpp_atomtype_t at
);
62 /* Return name corresponding to atomtype nt, or NULL if not found */
64 extern real
get_atomtype_massA(int nt
,gpp_atomtype_t at
);
65 extern real
get_atomtype_massB(int nt
,gpp_atomtype_t at
);
66 extern real
get_atomtype_qA(int nt
,gpp_atomtype_t at
);
67 extern real
get_atomtype_qB(int nt
,gpp_atomtype_t at
);
68 extern real
get_atomtype_radius(int nt
,gpp_atomtype_t at
);
69 extern real
get_atomtype_vol(int nt
,gpp_atomtype_t at
);
70 extern real
get_atomtype_surftens(int nt
,gpp_atomtype_t at
);
71 extern real
get_atomtype_gb_radius(int nt
,gpp_atomtype_t at
);
72 extern real
get_atomtype_S_hct(int nt
,gpp_atomtype_t at
);
73 extern int get_atomtype_ptype(int nt
,gpp_atomtype_t at
);
74 extern int get_atomtype_batype(int nt
,gpp_atomtype_t at
);
75 extern int get_atomtype_atomnumber(int nt
,gpp_atomtype_t at
);
77 /* Return the above variable for atomtype nt, or NOTSET if not found */
79 extern real
get_atomtype_nbparam(int nt
,int param
,gpp_atomtype_t at
);
80 /* Similar to the previous but returns the paramth parameter or NOTSET */
82 extern gpp_atomtype_t
init_atomtype(void);
83 /* Return a new atomtype structure */
85 extern void done_atomtype(gpp_atomtype_t at
);
86 /* Free the memory in the structure */
88 extern int set_atomtype(int nt
,gpp_atomtype_t at
,t_symtab
*tab
,
89 t_atom
*a
,const char *name
,t_param
*nb
,
91 real radius
,real vol
,real surftens
,int atomnumber
,
92 real gb_radius
, real S_hct
);
93 /* Set the values of an existing atom type nt. Returns nt on success or
97 set_atomtype_gbparam(gpp_atomtype_t at
, int i
,
98 real radius
,real vol
,real surftens
,
99 real gb_radius
, real S_hct
);
101 extern int add_atomtype(gpp_atomtype_t at
,t_symtab
*tab
,
102 t_atom
*a
,const char *name
,t_param
*nb
,
104 real radius
,real vol
,real surftens
,real atomnumber
,
105 real gb_radius
, real S_hct
);
106 /* Add a complete new atom type to an existing atomtype structure. Returns
107 the number of the atom type. */
109 extern void print_at (FILE * out
, gpp_atomtype_t at
);
110 /* Print an atomtype record to a text file */
112 extern void renum_atype(t_params plist
[],gmx_mtop_t
*mtop
,
114 gpp_atomtype_t at
,bool bVerbose
);
116 extern void copy_atomtype_atomtypes(gpp_atomtype_t atype
,t_atomtypes
*atypes
);
117 /* Copy from one structure to another */
123 #endif /* _gpp_atomtype_h */