Merge release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / legacyheaders / typedefs.h
1 /*
2  * 
3  *                This source code is part of
4  * 
5  *                 G   R   O   M   A   C   S
6  * 
7  *          GROningen MAchine for Chemical Simulations
8  * 
9  *                        VERSION 3.2.0
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.
14
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.
19  * 
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.
26  * 
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.
29  * 
30  * For more info, check our website at http://www.gromacs.org
31  * 
32  * And Hey:
33  * Gromacs Runs On Most of All Computer Systems
34  */
35
36 #ifndef _typedefs_h
37 #define _typedefs_h
38
39
40 #define STRLEN 4096
41 #define NOTSET -12345
42 #define BIG_STRLEN 1048576
43
44 #include <sys/types.h>
45 #include "sysstuff.h"
46 #include "types/simple.h"
47 #include "types/enums.h"
48 #include "types/block.h"
49 #include "types/symtab.h"
50 #include "types/idef.h"
51 #include "types/atoms.h"
52 #include "types/trx.h"
53 #include "types/topology.h"
54 #include "types/energy.h"
55 #include "types/inputrec.h"
56 #include "types/ishift.h"
57 #include "types/graph.h"
58 #include "types/nrnb.h"
59 #include "types/nblist.h"
60 #include "types/nsgrid.h"
61 #include "types/commrec.h"
62 #include "types/forcerec.h"
63 #include "types/fcdata.h"
64 #include "types/mdatom.h"
65 #include "types/pbc.h"
66 #include "types/ifunc.h"
67 #include "types/filenm.h"
68 #include "types/group.h"
69 #include "types/state.h"
70 #include "types/shellfc.h"
71 #include "types/constr.h"
72 #include "types/matrix.h"
73 #include "types/oenv.h"
74 #include "types/globsig.h"
75 #include "types/nlistheuristics.h"
76 #include "types/iteratedconstraints.h"
77 #include "types/membedt.h"
78
79 #ifdef __cplusplus
80 extern "C" {
81 #endif
82
83 /* 
84  * Memory (re)allocation can be VERY slow, especially with some
85  * MPI libraries that replace the standard malloc and realloc calls.
86  * To avoid slow memory allocation we use over_alloc to set the memory
87  * allocation size for large data blocks. Since this scales the size
88  * with a factor, we use log(n) realloc calls instead of n.
89  * This can reduce allocation times from minutes to seconds.
90  */
91 /* This factor leads to 4 realloc calls to double the array size */
92 #define OVER_ALLOC_FAC 1.19
93
94 void set_over_alloc_dd(gmx_bool set);
95   /* Turns over allocation for variable size atoms/cg/top arrays on or off,
96    * default is off.
97    */
98   
99 int over_alloc_dd(int n);
100   /* Returns n when domain decomposition over allocation is off.
101    * Returns OVER_ALLOC_FAC*n + 100 when over allocation in on.
102    * This is to avoid frequent reallocation
103    * during domain decomposition in mdrun.
104    */
105
106 /* Over allocation for small data types: int, real etc. */
107 #define over_alloc_small(n) (OVER_ALLOC_FAC*(n) + 8000)
108
109 /* Over allocation for large data types: complex structs */
110 #define over_alloc_large(n) (OVER_ALLOC_FAC*(n) + 1000)
111
112 int gmx_large_int_to_int(gmx_large_int_t step,const char *warn);
113 /* Convert a gmx_large_int_t value to int.
114  * If warn!=NULL a warning message will be written
115  * to stderr when step does not fit in an int,
116  * the first line is:
117  * "WARNING during %s:", where warn is printed in %s.
118  */
119
120 #define STEPSTRSIZE 22
121
122 char *gmx_step_str(gmx_large_int_t i,char *buf);
123 /* Prints a gmx_large_int_t value in buf and returns the pointer to buf.
124  * buf should be large enough to contain i: STEPSTRSIZE (22) chars.
125  * When multiple gmx_large_int_t values are printed in the same printf call,
126  * be sure to call gmx_step_str with different buffers.
127  */
128
129 /* Functions to initiate and delete structures *
130  * These functions are defined in gmxlib/typedefs.c 
131  */
132 void init_block(t_block *block);
133 void init_blocka(t_blocka *block);
134 void init_atom (t_atoms *at);
135 void init_mtop(gmx_mtop_t *mtop);
136 void init_top (t_topology *top);
137 void init_inputrec(t_inputrec *ir);
138 void init_energyhistory(energyhistory_t * enerhist);
139 void done_energyhistory(energyhistory_t * enerhist);
140 void init_gtc_state(t_state *state,int ngtc, int nnhpres, int nhchainlength);
141 void init_state(t_state *state,int natoms,int ngtc, int nnhpres, int nhchainlength, int nlambda);
142 void init_df_history(df_history_t *dfhist, int nlambda, real wl_delta);
143 void copy_df_history(df_history_t * df_dest, df_history_t *df_source);
144
145 void copy_blocka(const t_blocka *src,t_blocka *dest);
146
147 void done_block(t_block *block);
148 void done_blocka(t_blocka *block);
149 void done_atom (t_atoms *at);
150 void done_moltype(gmx_moltype_t *molt);
151 void done_molblock(gmx_molblock_t *molb);
152 void done_mtop(gmx_mtop_t *mtop,gmx_bool bDoneSymtab);
153 void done_top(t_topology *top);
154 void done_inputrec(t_inputrec *ir);
155 void done_state(t_state *state);
156
157 void set_box_rel(t_inputrec *ir,t_state *state);
158 /* Set state->box_rel used in mdrun to preserve the box shape */
159
160 void preserve_box_shape(t_inputrec *ir,matrix box_rel,matrix b);
161 /* Preserve the box shape, b can be box or boxv */
162
163 void stupid_fill_block(t_block *grp, int natom,gmx_bool bOneIndexGroup);
164 /* Fill a block structure with numbers identical to the index
165  * (0, 1, 2, .. natom-1)
166  * If bOneIndexGroup, then all atoms are  lumped in one index group,
167  * otherwise there is one atom per index entry
168  */
169
170 void stupid_fill_blocka(t_blocka *grp, int natom);
171 /* Fill a block structure with numbers identical to the index
172  * (0, 1, 2, .. natom-1)
173  * There is one atom per index entry
174  */
175
176 void init_t_atoms(t_atoms *atoms, int natoms, gmx_bool bPdbinfo);
177 /* allocate memory for the arrays, set nr to natoms and nres to 0
178  * set pdbinfo to NULL or allocate memory for it */  
179
180 t_atoms *copy_t_atoms(t_atoms *src);
181 /* copy an atoms struct from src to a new one */
182   
183 void add_t_atoms(t_atoms *atoms,int natom_extra,int nres_extra);
184 /* allocate extra space for more atoms and or residues */
185  
186 void t_atoms_set_resinfo(t_atoms *atoms,int atom_ind,t_symtab *symtab,
187                                 const char *resname,int resnr,unsigned char ic,
188                                 int chainnum, char chainid);
189 /* Set the residue name, number, insertion code and chain identifier
190  * of atom index atom_ind.
191  */
192
193 void free_t_atoms(t_atoms *atoms,gmx_bool bFreeNames);
194 /* Free all the arrays and set the nr and nres to 0.
195  * bFreeNames tells if to free the atom and residue name strings,
196  * don't free them if they still need to be used in e.g. the topology struct.
197  */
198
199 t_atoms *mtop2atoms(gmx_mtop_t *mtop);
200 /* generate a t_atoms struct for the system from gmx_mtop_t */ 
201
202 real max_cutoff(real cutoff1,real cutoff2);
203 /* Returns the maximum of the cut-off's, taking into account that 0=inf. */
204
205 #ifdef __cplusplus
206 }
207 #endif
208
209
210 #endif  /* _typedefs_h */