b229341bee6ac75b0ff27bb048cdf2c449e55c72
[alexxy/gromacs.git] / src / gromacs / legacyheaders / index.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2010, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37
38 #ifndef _index_h
39 #define _index_h
40
41 #include "typedefs.h"
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 void check_index(char *gname, int n, atom_id index[],
48                  char *traj, int natoms);
49 /* Checks if any index is smaller than zero or larger than natoms,
50  * if so a fatal_error is given with the gname (if gname=NULL, "Index" is used)
51  * and traj (if traj=NULL, "the trajectory" is used).
52  */
53
54 t_blocka *init_index(const char *gfile, char ***grpname);
55 /* Lower level routine than the next */
56
57 void rd_index(const char *statfile, int ngrps, int isize[],
58               atom_id *index[], char *grpnames[]);
59 /* Assume the group file is generated, so the
60  * format need not be user-friendly. The format is:
61  * nr of groups, total nr of atoms
62  * for each group: name nr of element, elements.
63  *
64  * The function opens a file, reads ngrps groups, asks the
65  * user for group numbers, and puts the resulting sizes in
66  * isize, the atom_id s in index and the names of
67  * the groups in grpnames.
68  *
69  * It is also assumed, that when ngrps groups are requested
70  * memory has been allocated for ngrps index arrays, and that
71  * the dimension of the isize and grpnames arrays are ngrps.
72  */
73
74 void rd_index_nrs(char *statfile, int ngrps, int isize[],
75                   atom_id *index[], char *grpnames[], int grpnr[]);
76 /* the same but also reads the number of the selected group*/
77
78 void get_index(t_atoms *atoms, const char *fnm, int ngrps,
79                int isize[], atom_id *index[], char *grpnames[]);
80 /* Does the same as rd_index, but if the fnm pointer is NULL it
81  * will not read from fnm, but it will make default index groups
82  * for the atoms in *atoms.
83  */
84
85 typedef struct {
86     int        maxframe;
87     char     **grpname;
88     t_blocka  *clust;
89     atom_id   *inv_clust;
90 } t_cluster_ndx;
91
92 t_cluster_ndx *cluster_index(FILE *fplog, const char *ndx);
93
94 typedef struct {
95     int    n;
96     char **name;
97 } t_names;
98
99 typedef struct gmx_residuetype *
100     gmx_residuetype_t;
101
102 int
103 gmx_residuetype_init(gmx_residuetype_t *rt);
104
105 int
106 gmx_residuetype_destroy(gmx_residuetype_t rt);
107
108 int
109 gmx_residuetype_get_type(gmx_residuetype_t rt, const char * resname, const char ** p_restype);
110
111 int
112 gmx_residuetype_add(gmx_residuetype_t rt, const char *newresname, const char *newrestype);
113
114 int
115 gmx_residuetype_get_alltypes(gmx_residuetype_t    rt,
116                              const char ***       p_typenames,
117                              int *                ntypes);
118
119 gmx_bool
120 gmx_residuetype_is_protein(gmx_residuetype_t rt, const char *resnm);
121
122 gmx_bool
123 gmx_residuetype_is_dna(gmx_residuetype_t rt, const char *resnm);
124
125 gmx_bool
126 gmx_residuetype_is_rna(gmx_residuetype_t rt, const char *resnm);
127
128 int
129 gmx_residuetype_get_size(gmx_residuetype_t rt);
130
131 int
132 gmx_residuetype_get_index(gmx_residuetype_t rt, const char *resnm);
133
134 const char *
135 gmx_residuetype_get_name(gmx_residuetype_t rt, int index);
136
137
138
139
140
141
142 t_blocka *new_blocka(void);
143 /* allocate new block */
144
145 void write_index(const char *outf, t_blocka *b, char **gnames);
146 /* Writes index blocks to outf (writes an indexfile) */
147
148 void add_grp(t_blocka *b, char ***gnames, int nra, atom_id a[], const char *name);
149 /* Ads group a with name name to block b and namelist gnames */
150
151 void analyse(t_atoms *atoms, t_blocka *gb, char ***gn,
152              gmx_bool bASK, gmx_bool bVerb);
153 /* Makes index groups gb with names gn for atoms in atoms.
154  * bASK=FALSE gives default groups.
155  */
156
157 int find_group(char s[], int ngrps, char **grpname);
158
159
160 #ifdef __cplusplus
161 }
162 #endif
163
164 #endif  /* _index_h */