Merge release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / gmxlib / typedefs.c
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2  *
3  *
4  *                This source code is part of
5  *
6  *                 G   R   O   M   A   C   S
7  *
8  *          GROningen MAchine for Chemical Simulations
9  *
10  *                        VERSION 3.2.0
11  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
12  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
13  * Copyright (c) 2001-2004, The GROMACS development team,
14  * check out http://www.gromacs.org for more information.
15
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  *
21  * If you want to redistribute modifications, please consider that
22  * scientific software is very special. Version control is crucial -
23  * bugs must be traceable. We will be happy to consider code for
24  * inclusion in the official distribution, but derived work must not
25  * be called official GROMACS. Details are found in the README & COPYING
26  * files - if they are missing, get the official version at www.gromacs.org.
27  *
28  * To help us fund GROMACS development, we humbly ask that you cite
29  * the papers on the package - you can find them in the top README file.
30  *
31  * For more info, check our website at http://www.gromacs.org
32  *
33  * And Hey:
34  * GROningen Mixture of Alchemy and Childrens' Stories
35  */
36 /* This file is completely threadsafe - keep it that way! */
37 #ifdef HAVE_CONFIG_H
38 #include <config.h>
39 #endif
40
41 #include "smalloc.h"
42 #include "symtab.h"
43 #include "vec.h"
44 #include "pbc.h"
45 #include "macros.h"
46 #include <string.h>
47
48 #ifdef GMX_THREAD_MPI
49 #include "thread_mpi.h"
50 #endif
51
52 /* The source code in this file should be thread-safe.
53       Please keep it that way. */
54
55
56
57 static gmx_bool            bOverAllocDD = FALSE;
58 #ifdef GMX_THREAD_MPI
59 static tMPI_Thread_mutex_t over_alloc_mutex = TMPI_THREAD_MUTEX_INITIALIZER;
60 #endif
61
62
63 void set_over_alloc_dd(gmx_bool set)
64 {
65 #ifdef GMX_THREAD_MPI
66     tMPI_Thread_mutex_lock(&over_alloc_mutex);
67     /* we just make sure that we don't set this at the same time.
68        We don't worry too much about reading this rarely-set variable */
69 #endif
70     bOverAllocDD = set;
71 #ifdef GMX_THREAD_MPI
72     tMPI_Thread_mutex_unlock(&over_alloc_mutex);
73 #endif
74 }
75
76 int over_alloc_dd(int n)
77 {
78     if (bOverAllocDD)
79     {
80         return OVER_ALLOC_FAC*n + 100;
81     }
82     else
83     {
84         return n;
85     }
86 }
87
88 int gmx_large_int_to_int(gmx_large_int_t step, const char *warn)
89 {
90     int i;
91
92     i = (int)step;
93
94     if (warn != NULL && (step < INT_MIN || step > INT_MAX))
95     {
96         fprintf(stderr, "\nWARNING during %s:\n", warn);
97         fprintf(stderr, "step value ");
98         fprintf(stderr, gmx_large_int_pfmt, step);
99         fprintf(stderr, " does not fit in int, converted to %d\n\n", i);
100     }
101
102     return i;
103 }
104
105 char *gmx_step_str(gmx_large_int_t i, char *buf)
106 {
107     sprintf(buf, gmx_large_int_pfmt, i);
108
109     return buf;
110 }
111
112 void init_block(t_block *block)
113 {
114     int i;
115
116     block->nr           = 0;
117     block->nalloc_index = 1;
118     snew(block->index, block->nalloc_index);
119     block->index[0]     = 0;
120 }
121
122 void init_blocka(t_blocka *block)
123 {
124     int i;
125
126     block->nr           = 0;
127     block->nra          = 0;
128     block->nalloc_index = 1;
129     snew(block->index, block->nalloc_index);
130     block->index[0]     = 0;
131     block->nalloc_a     = 0;
132     block->a            = NULL;
133 }
134
135 void init_atom(t_atoms *at)
136 {
137     int i;
138
139     at->nr        = 0;
140     at->nres      = 0;
141     at->atom      = NULL;
142     at->resinfo   = NULL;
143     at->atomname  = NULL;
144     at->atomtype  = NULL;
145     at->atomtypeB = NULL;
146     at->pdbinfo   = NULL;
147 }
148
149 void init_atomtypes(t_atomtypes *at)
150 {
151     at->nr         = 0;
152     at->radius     = NULL;
153     at->vol        = NULL;
154     at->atomnumber = NULL;
155     at->gb_radius  = NULL;
156     at->S_hct      = NULL;
157 }
158
159 void init_groups(gmx_groups_t *groups)
160 {
161     int g;
162
163     groups->ngrpname = 0;
164     groups->grpname  = NULL;
165     for (g = 0; (g < egcNR); g++)
166     {
167         groups->grps[g].nm_ind = NULL;
168         groups->ngrpnr[g]      = 0;
169         groups->grpnr[g]       = NULL;
170     }
171
172 }
173
174 void init_mtop(gmx_mtop_t *mtop)
175 {
176     mtop->name         = NULL;
177     mtop->nmoltype     = 0;
178     mtop->moltype      = NULL;
179     mtop->nmolblock    = 0;
180     mtop->molblock     = NULL;
181     mtop->maxres_renum = 0;
182     mtop->maxresnr     = -1;
183     init_groups(&mtop->groups);
184     init_block(&mtop->mols);
185     open_symtab(&mtop->symtab);
186 }
187
188 void init_top (t_topology *top)
189 {
190     int i;
191
192     top->name = NULL;
193     init_atom (&(top->atoms));
194     init_atomtypes(&(top->atomtypes));
195     init_block(&top->cgs);
196     init_block(&top->mols);
197     init_blocka(&top->excls);
198     open_symtab(&top->symtab);
199 }
200
201 void init_inputrec(t_inputrec *ir)
202 {
203     memset(ir, 0, (size_t)sizeof(*ir));
204     snew(ir->fepvals, 1);
205     snew(ir->expandedvals, 1);
206     snew(ir->simtempvals, 1);
207 }
208
209 void stupid_fill_block(t_block *grp, int natom, gmx_bool bOneIndexGroup)
210 {
211     int i;
212
213     if (bOneIndexGroup)
214     {
215         grp->nalloc_index = 2;
216         snew(grp->index, grp->nalloc_index);
217         grp->index[0] = 0;
218         grp->index[1] = natom;
219         grp->nr       = 1;
220     }
221     else
222     {
223         grp->nalloc_index = natom+1;
224         snew(grp->index, grp->nalloc_index);
225         snew(grp->index, natom+1);
226         for (i = 0; (i <= natom); i++)
227         {
228             grp->index[i] = i;
229         }
230         grp->nr = natom;
231     }
232 }
233
234 void stupid_fill_blocka(t_blocka *grp, int natom)
235 {
236     int i;
237
238     grp->nalloc_a = natom;
239     snew(grp->a, grp->nalloc_a);
240     for (i = 0; (i < natom); i++)
241     {
242         grp->a[i] = i;
243     }
244     grp->nra = natom;
245
246     grp->nalloc_index = natom + 1;
247     snew(grp->index, grp->nalloc_index);
248     for (i = 0; (i <= natom); i++)
249     {
250         grp->index[i] = i;
251     }
252     grp->nr = natom;
253 }
254
255 void copy_blocka(const t_blocka *src, t_blocka *dest)
256 {
257     int i;
258
259     dest->nr           = src->nr;
260     dest->nalloc_index = dest->nr + 1;
261     snew(dest->index, dest->nalloc_index);
262     for (i = 0; i < dest->nr+1; i++)
263     {
264         dest->index[i] = src->index[i];
265     }
266     dest->nra      = src->nra;
267     dest->nalloc_a = dest->nra + 1;
268     snew(dest->a, dest->nalloc_a);
269     for (i = 0; i < dest->nra+1; i++)
270     {
271         dest->a[i] = src->a[i];
272     }
273 }
274
275 void done_block(t_block *block)
276 {
277     block->nr    = 0;
278     sfree(block->index);
279     block->nalloc_index = 0;
280 }
281
282 void done_blocka(t_blocka *block)
283 {
284     block->nr    = 0;
285     block->nra   = 0;
286     sfree(block->index);
287     if (block->a)
288     {
289         sfree(block->a);
290     }
291     block->nalloc_index = 0;
292     block->nalloc_a     = 0;
293 }
294
295 void done_atom (t_atoms *at)
296 {
297     at->nr       = 0;
298     at->nres     = 0;
299     sfree(at->atom);
300     sfree(at->resinfo);
301     sfree(at->atomname);
302     sfree(at->atomtype);
303     sfree(at->atomtypeB);
304     if (at->pdbinfo)
305     {
306         sfree(at->pdbinfo);
307     }
308 }
309
310 void done_atomtypes(t_atomtypes *atype)
311 {
312     atype->nr = 0;
313     sfree(atype->radius);
314     sfree(atype->vol);
315     sfree(atype->surftens);
316     sfree(atype->atomnumber);
317     sfree(atype->gb_radius);
318     sfree(atype->S_hct);
319 }
320
321 void done_moltype(gmx_moltype_t *molt)
322 {
323     int f;
324
325     done_atom(&molt->atoms);
326     done_block(&molt->cgs);
327     done_blocka(&molt->excls);
328
329     for (f = 0; f < F_NRE; f++)
330     {
331         sfree(molt->ilist[f].iatoms);
332         molt->ilist[f].nalloc = 0;
333     }
334 }
335
336 void done_molblock(gmx_molblock_t *molb)
337 {
338     if (molb->nposres_xA > 0)
339     {
340         molb->nposres_xA = 0;
341         free(molb->posres_xA);
342     }
343     if (molb->nposres_xB > 0)
344     {
345         molb->nposres_xB = 0;
346         free(molb->posres_xB);
347     }
348 }
349
350 void done_mtop(gmx_mtop_t *mtop, gmx_bool bDoneSymtab)
351 {
352     int i;
353
354     if (bDoneSymtab)
355     {
356         done_symtab(&mtop->symtab);
357     }
358
359     sfree(mtop->ffparams.functype);
360     sfree(mtop->ffparams.iparams);
361
362     for (i = 0; i < mtop->nmoltype; i++)
363     {
364         done_moltype(&mtop->moltype[i]);
365     }
366     sfree(mtop->moltype);
367     for (i = 0; i < mtop->nmolblock; i++)
368     {
369         done_molblock(&mtop->molblock[i]);
370     }
371     sfree(mtop->molblock);
372     done_block(&mtop->mols);
373 }
374
375 void done_top(t_topology *top)
376 {
377     int f;
378
379     sfree(top->idef.functype);
380     sfree(top->idef.iparams);
381     for (f = 0; f < F_NRE; ++f)
382     {
383         sfree(top->idef.il[f].iatoms);
384         top->idef.il[f].iatoms = NULL;
385         top->idef.il[f].nalloc = 0;
386     }
387
388     done_atom (&(top->atoms));
389
390     /* For GB */
391     done_atomtypes(&(top->atomtypes));
392
393     done_symtab(&(top->symtab));
394     done_block(&(top->cgs));
395     done_block(&(top->mols));
396     done_blocka(&(top->excls));
397 }
398
399 static void done_pullgrp(t_pullgrp *pgrp)
400 {
401     sfree(pgrp->ind);
402     sfree(pgrp->ind_loc);
403     sfree(pgrp->weight);
404     sfree(pgrp->weight_loc);
405 }
406
407 static void done_pull(t_pull *pull)
408 {
409     int i;
410
411     for (i = 0; i < pull->ngrp+1; i++)
412     {
413         done_pullgrp(pull->grp);
414         done_pullgrp(pull->dyna);
415     }
416 }
417
418 void done_inputrec(t_inputrec *ir)
419 {
420     int m;
421
422     for (m = 0; (m < DIM); m++)
423     {
424         if (ir->ex[m].a)
425         {
426             sfree(ir->ex[m].a);
427         }
428         if (ir->ex[m].phi)
429         {
430             sfree(ir->ex[m].phi);
431         }
432         if (ir->et[m].a)
433         {
434             sfree(ir->et[m].a);
435         }
436         if (ir->et[m].phi)
437         {
438             sfree(ir->et[m].phi);
439         }
440     }
441
442     sfree(ir->opts.nrdf);
443     sfree(ir->opts.ref_t);
444     sfree(ir->opts.annealing);
445     sfree(ir->opts.anneal_npoints);
446     sfree(ir->opts.anneal_time);
447     sfree(ir->opts.anneal_temp);
448     sfree(ir->opts.tau_t);
449     sfree(ir->opts.acc);
450     sfree(ir->opts.nFreeze);
451     sfree(ir->opts.QMmethod);
452     sfree(ir->opts.QMbasis);
453     sfree(ir->opts.QMcharge);
454     sfree(ir->opts.QMmult);
455     sfree(ir->opts.bSH);
456     sfree(ir->opts.CASorbitals);
457     sfree(ir->opts.CASelectrons);
458     sfree(ir->opts.SAon);
459     sfree(ir->opts.SAoff);
460     sfree(ir->opts.SAsteps);
461     sfree(ir->opts.bOPT);
462     sfree(ir->opts.bTS);
463
464     if (ir->pull)
465     {
466         done_pull(ir->pull);
467         sfree(ir->pull);
468     }
469 }
470
471 static void zero_ekinstate(ekinstate_t *eks)
472 {
473     eks->ekin_n         = 0;
474     eks->ekinh          = NULL;
475     eks->ekinf          = NULL;
476     eks->ekinh_old      = NULL;
477     eks->ekinscalef_nhc = NULL;
478     eks->ekinscaleh_nhc = NULL;
479     eks->vscale_nhc     = NULL;
480     eks->dekindl        = 0;
481     eks->mvcos          = 0;
482 }
483
484 void init_energyhistory(energyhistory_t * enerhist)
485 {
486     enerhist->nener = 0;
487
488     enerhist->ener_ave     = NULL;
489     enerhist->ener_sum     = NULL;
490     enerhist->ener_sum_sim = NULL;
491     enerhist->dht          = NULL;
492
493     enerhist->nsteps     = 0;
494     enerhist->nsum       = 0;
495     enerhist->nsteps_sim = 0;
496     enerhist->nsum_sim   = 0;
497
498     enerhist->dht = NULL;
499 }
500
501 static void done_delta_h_history(delta_h_history_t *dht)
502 {
503     int i;
504
505     for (i = 0; i < dht->nndh; i++)
506     {
507         sfree(dht->dh[i]);
508     }
509     sfree(dht->dh);
510     sfree(dht->ndh);
511 }
512
513 void done_energyhistory(energyhistory_t * enerhist)
514 {
515     sfree(enerhist->ener_ave);
516     sfree(enerhist->ener_sum);
517     sfree(enerhist->ener_sum_sim);
518
519     if (enerhist->dht != NULL)
520     {
521         done_delta_h_history(enerhist->dht);
522         sfree(enerhist->dht);
523     }
524 }
525
526 void init_gtc_state(t_state *state, int ngtc, int nnhpres, int nhchainlength)
527 {
528     int i, j;
529
530     state->ngtc          = ngtc;
531     state->nnhpres       = nnhpres;
532     state->nhchainlength = nhchainlength;
533     if (state->ngtc > 0)
534     {
535         snew(state->nosehoover_xi, state->nhchainlength*state->ngtc);
536         snew(state->nosehoover_vxi, state->nhchainlength*state->ngtc);
537         snew(state->therm_integral, state->ngtc);
538         for (i = 0; i < state->ngtc; i++)
539         {
540             for (j = 0; j < state->nhchainlength; j++)
541             {
542                 state->nosehoover_xi[i*state->nhchainlength + j]   = 0.0;
543                 state->nosehoover_vxi[i*state->nhchainlength + j]  = 0.0;
544             }
545         }
546         for (i = 0; i < state->ngtc; i++)
547         {
548             state->therm_integral[i]  = 0.0;
549         }
550     }
551     else
552     {
553         state->nosehoover_xi  = NULL;
554         state->nosehoover_vxi = NULL;
555         state->therm_integral = NULL;
556     }
557
558     if (state->nnhpres > 0)
559     {
560         snew(state->nhpres_xi, state->nhchainlength*nnhpres);
561         snew(state->nhpres_vxi, state->nhchainlength*nnhpres);
562         for (i = 0; i < nnhpres; i++)
563         {
564             for (j = 0; j < state->nhchainlength; j++)
565             {
566                 state->nhpres_xi[i*nhchainlength + j]   = 0.0;
567                 state->nhpres_vxi[i*nhchainlength + j]  = 0.0;
568             }
569         }
570     }
571     else
572     {
573         state->nhpres_xi  = NULL;
574         state->nhpres_vxi = NULL;
575     }
576 }
577
578
579 void init_state(t_state *state, int natoms, int ngtc, int nnhpres, int nhchainlength, int nlambda)
580 {
581     int i;
582
583     state->natoms = natoms;
584     state->nrng   = 0;
585     state->flags  = 0;
586     state->lambda = 0;
587     snew(state->lambda, efptNR);
588     for (i = 0; i < efptNR; i++)
589     {
590         state->lambda[i] = 0;
591     }
592     state->veta   = 0;
593     clear_mat(state->box);
594     clear_mat(state->box_rel);
595     clear_mat(state->boxv);
596     clear_mat(state->pres_prev);
597     clear_mat(state->svir_prev);
598     clear_mat(state->fvir_prev);
599     init_gtc_state(state, ngtc, nnhpres, nhchainlength);
600     state->nalloc = state->natoms;
601     if (state->nalloc > 0)
602     {
603         snew(state->x, state->nalloc);
604         snew(state->v, state->nalloc);
605     }
606     else
607     {
608         state->x = NULL;
609         state->v = NULL;
610     }
611     state->sd_X = NULL;
612     state->cg_p = NULL;
613
614     zero_ekinstate(&state->ekinstate);
615
616     init_energyhistory(&state->enerhist);
617
618     init_df_history(&state->dfhist, nlambda, 0);
619
620     state->ddp_count       = 0;
621     state->ddp_count_cg_gl = 0;
622     state->cg_gl           = NULL;
623     state->cg_gl_nalloc    = 0;
624 }
625
626 void done_state(t_state *state)
627 {
628     if (state->nosehoover_xi)
629     {
630         sfree(state->nosehoover_xi);
631     }
632     if (state->x)
633     {
634         sfree(state->x);
635     }
636     if (state->v)
637     {
638         sfree(state->v);
639     }
640     if (state->sd_X)
641     {
642         sfree(state->sd_X);
643     }
644     if (state->cg_p)
645     {
646         sfree(state->cg_p);
647     }
648     state->nalloc = 0;
649     if (state->cg_gl)
650     {
651         sfree(state->cg_gl);
652     }
653     state->cg_gl_nalloc = 0;
654 }
655
656 static void do_box_rel(t_inputrec *ir, matrix box_rel, matrix b, gmx_bool bInit)
657 {
658     int d, d2;
659
660     for (d = YY; d <= ZZ; d++)
661     {
662         for (d2 = XX; d2 <= (ir->epct == epctSEMIISOTROPIC ? YY : ZZ); d2++)
663         {
664             /* We need to check if this box component is deformed
665              * or if deformation of another component might cause
666              * changes in this component due to box corrections.
667              */
668             if (ir->deform[d][d2] == 0 &&
669                 !(d == ZZ && d2 == XX && ir->deform[d][YY] != 0 &&
670                   (b[YY][d2] != 0 || ir->deform[YY][d2] != 0)))
671             {
672                 if (bInit)
673                 {
674                     box_rel[d][d2] = b[d][d2]/b[XX][XX];
675                 }
676                 else
677                 {
678                     b[d][d2] = b[XX][XX]*box_rel[d][d2];
679                 }
680             }
681         }
682     }
683 }
684
685 void set_box_rel(t_inputrec *ir, t_state *state)
686 {
687     /* Make sure the box obeys the restrictions before we fix the ratios */
688     correct_box(NULL, 0, state->box, NULL);
689
690     clear_mat(state->box_rel);
691
692     if (PRESERVE_SHAPE(*ir))
693     {
694         do_box_rel(ir, state->box_rel, state->box, TRUE);
695     }
696 }
697
698 void preserve_box_shape(t_inputrec *ir, matrix box_rel, matrix b)
699 {
700     if (PRESERVE_SHAPE(*ir))
701     {
702         do_box_rel(ir, box_rel, b, FALSE);
703     }
704 }
705
706 void add_t_atoms(t_atoms *atoms, int natom_extra, int nres_extra)
707 {
708     int i;
709
710     if (natom_extra > 0)
711     {
712         srenew(atoms->atomname, atoms->nr+natom_extra);
713         srenew(atoms->atom, atoms->nr+natom_extra);
714         if (NULL != atoms->pdbinfo)
715         {
716             srenew(atoms->pdbinfo, atoms->nr+natom_extra);
717         }
718         if (NULL != atoms->atomtype)
719         {
720             srenew(atoms->atomtype, atoms->nr+natom_extra);
721         }
722         if (NULL != atoms->atomtypeB)
723         {
724             srenew(atoms->atomtypeB, atoms->nr+natom_extra);
725         }
726         for (i = atoms->nr; (i < atoms->nr+natom_extra); i++)
727         {
728             atoms->atomname[i] = NULL;
729             memset(&atoms->atom[i], 0, sizeof(atoms->atom[i]));
730             if (NULL != atoms->pdbinfo)
731             {
732                 memset(&atoms->pdbinfo[i], 0, sizeof(atoms->pdbinfo[i]));
733             }
734             if (NULL != atoms->atomtype)
735             {
736                 atoms->atomtype[i] = NULL;
737             }
738             if (NULL != atoms->atomtypeB)
739             {
740                 atoms->atomtypeB[i] = NULL;
741             }
742         }
743         atoms->nr += natom_extra;
744     }
745     if (nres_extra > 0)
746     {
747         srenew(atoms->resinfo, atoms->nres+nres_extra);
748         for (i = atoms->nres; (i < atoms->nres+nres_extra); i++)
749         {
750             memset(&atoms->resinfo[i], 0, sizeof(atoms->resinfo[i]));
751         }
752         atoms->nres += nres_extra;
753     }
754 }
755
756 void init_t_atoms(t_atoms *atoms, int natoms, gmx_bool bPdbinfo)
757 {
758     atoms->nr   = natoms;
759     atoms->nres = 0;
760     snew(atoms->atomname, natoms);
761     atoms->atomtype  = NULL;
762     atoms->atomtypeB = NULL;
763     snew(atoms->resinfo, natoms);
764     snew(atoms->atom, natoms);
765     if (bPdbinfo)
766     {
767         snew(atoms->pdbinfo, natoms);
768     }
769     else
770     {
771         atoms->pdbinfo = NULL;
772     }
773 }
774
775 t_atoms *copy_t_atoms(t_atoms *src)
776 {
777     t_atoms *dst;
778     int      i;
779
780     snew(dst, 1);
781     init_t_atoms(dst, src->nr, (NULL != src->pdbinfo));
782     dst->nr = src->nr;
783     if (NULL != src->atomname)
784     {
785         snew(dst->atomname, src->nr);
786     }
787     if (NULL != src->atomtype)
788     {
789         snew(dst->atomtype, src->nr);
790     }
791     if (NULL != src->atomtypeB)
792     {
793         snew(dst->atomtypeB, src->nr);
794     }
795     for (i = 0; (i < src->nr); i++)
796     {
797         dst->atom[i] = src->atom[i];
798         if (NULL != src->pdbinfo)
799         {
800             dst->pdbinfo[i] = src->pdbinfo[i];
801         }
802         if (NULL != src->atomname)
803         {
804             dst->atomname[i]  = src->atomname[i];
805         }
806         if (NULL != src->atomtype)
807         {
808             dst->atomtype[i] = src->atomtype[i];
809         }
810         if (NULL != src->atomtypeB)
811         {
812             dst->atomtypeB[i] = src->atomtypeB[i];
813         }
814     }
815     dst->nres = src->nres;
816     for (i = 0; (i < src->nres); i++)
817     {
818         dst->resinfo[i] = src->resinfo[i];
819     }
820     return dst;
821 }
822
823 void t_atoms_set_resinfo(t_atoms *atoms, int atom_ind, t_symtab *symtab,
824                          const char *resname, int resnr, unsigned char ic,
825                          int chainnum, char chainid)
826 {
827     t_resinfo *ri;
828
829     ri           = &atoms->resinfo[atoms->atom[atom_ind].resind];
830     ri->name     = put_symtab(symtab, resname);
831     ri->rtp      = NULL;
832     ri->nr       = resnr;
833     ri->ic       = ic;
834     ri->chainnum = chainnum;
835     ri->chainid  = chainid;
836 }
837
838 void free_t_atoms(t_atoms *atoms, gmx_bool bFreeNames)
839 {
840     int i;
841
842     if (bFreeNames)
843     {
844         for (i = 0; i < atoms->nr; i++)
845         {
846             sfree(*atoms->atomname[i]);
847             *atoms->atomname[i] = NULL;
848         }
849         for (i = 0; i < atoms->nres; i++)
850         {
851             sfree(*atoms->resinfo[i].name);
852             *atoms->resinfo[i].name = NULL;
853         }
854     }
855     sfree(atoms->atomname);
856     /* Do we need to free atomtype and atomtypeB as well ? */
857     sfree(atoms->resinfo);
858     sfree(atoms->atom);
859     if (atoms->pdbinfo)
860     {
861         sfree(atoms->pdbinfo);
862     }
863     atoms->nr       = 0;
864     atoms->nres     = 0;
865     atoms->atomname = NULL;
866     atoms->resinfo  = NULL;
867     atoms->atom     = NULL;
868     atoms->pdbinfo  = NULL;
869 }
870
871 real max_cutoff(real cutoff1, real cutoff2)
872 {
873     if (cutoff1 == 0 || cutoff2 == 0)
874     {
875         return 0;
876     }
877     else
878     {
879         return max(cutoff1, cutoff2);
880     }
881 }
882
883 extern void init_df_history(df_history_t *dfhist, int nlambda, real wl_delta)
884 {
885     int i;
886
887     dfhist->bEquil   = 0;
888     dfhist->nlambda  = nlambda;
889     dfhist->wl_delta = wl_delta;
890     snew(dfhist->sum_weights, dfhist->nlambda);
891     snew(dfhist->sum_dg, dfhist->nlambda);
892     snew(dfhist->sum_minvar, dfhist->nlambda);
893     snew(dfhist->sum_variance, dfhist->nlambda);
894     snew(dfhist->n_at_lam, dfhist->nlambda);
895     snew(dfhist->wl_histo, dfhist->nlambda);
896
897     /* allocate transition matrices here */
898     snew(dfhist->Tij, dfhist->nlambda);
899     snew(dfhist->Tij_empirical, dfhist->nlambda);
900
901     for (i = 0; i < dfhist->nlambda; i++)
902     {
903         snew(dfhist->Tij[i], dfhist->nlambda);
904         snew(dfhist->Tij_empirical[i], dfhist->nlambda);
905     }
906
907     snew(dfhist->accum_p, dfhist->nlambda);
908     snew(dfhist->accum_m, dfhist->nlambda);
909     snew(dfhist->accum_p2, dfhist->nlambda);
910     snew(dfhist->accum_m2, dfhist->nlambda);
911
912     for (i = 0; i < dfhist->nlambda; i++)
913     {
914         snew((dfhist->accum_p)[i], dfhist->nlambda);
915         snew((dfhist->accum_m)[i], dfhist->nlambda);
916         snew((dfhist->accum_p2)[i], dfhist->nlambda);
917         snew((dfhist->accum_m2)[i], dfhist->nlambda);
918     }
919 }
920
921 extern void copy_df_history(df_history_t *df_dest, df_history_t *df_source)
922 {
923     int i, j;
924
925     init_df_history(df_dest, df_source->nlambda, df_source->wl_delta);
926     df_dest->nlambda = df_source->nlambda;
927     df_dest->bEquil  = df_source->bEquil;
928     for (i = 0; i < df_dest->nlambda; i++)
929     {
930         df_dest->sum_weights[i]  = df_source->sum_weights[i];
931         df_dest->sum_dg[i]       = df_source->sum_dg[i];
932         df_dest->sum_minvar[i]   = df_source->sum_minvar[i];
933         df_dest->sum_variance[i] = df_source->sum_variance[i];
934         df_dest->n_at_lam[i]     = df_source->n_at_lam[i];
935         df_dest->wl_histo[i]     = df_source->wl_histo[i];
936         df_dest->accum_p[i]      = df_source->accum_p[i];
937         df_dest->accum_m[i]      = df_source->accum_m[i];
938         df_dest->accum_p2[i]     = df_source->accum_p2[i];
939         df_dest->accum_m2[i]     = df_source->accum_m2[i];
940     }
941
942     for (i = 0; i < df_dest->nlambda; i++)
943     {
944         for (j = 0; j < df_dest->nlambda; j++)
945         {
946             df_dest->Tij[i][j]            = df_source->Tij[i][j];
947             df_dest->Tij_empirical[i][j]  = df_source->Tij_empirical[i][j];
948         }
949     }
950 }