Added conditional inclusion of config.h to source files
[gromacs.git] / src / gmxlib / rmpbc.c
blobfcad893856a59a434b8ac54cb6d4e1c5b6c69996
1 /*
2 * $Id$
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.
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.
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.
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.
31 * For more info, check our website at http://www.gromacs.org
33 * And Hey:
34 * GROningen Mixture of Alchemy and Childrens' Stories
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
40 #include "sysstuff.h"
41 #include "typedefs.h"
42 #include "smalloc.h"
43 #include "mshift.h"
44 #include "pbc.h"
45 #include "gstat.h"
46 #include "futil.h"
47 #include "vec.h"
49 void rm_pbc(t_idef *idef,int natoms,matrix box,rvec x[],rvec x_s[])
51 typedef struct {
52 int natoms;
53 t_graph *gr;
54 } multi_graph;
56 static int ngraph=0;
57 static multi_graph *mgraph=NULL;
58 static bool bFirst=TRUE;
59 rvec sv[SHIFTS],box_size;
60 int n,i;
61 bool bNeedToCopy;
63 bNeedToCopy = (x != x_s);
65 if (box[0][0]) {
66 if (idef->ntypes!=-1) {
67 n=-1;
68 for(i=0; i<ngraph; i++)
69 if (mgraph[i].natoms==natoms)
70 n=i;
71 if (n==-1) {
72 /* make a new graph if there isn't one with this number of atoms */
73 n=ngraph;
74 ngraph++;
75 srenew(mgraph,ngraph);
76 mgraph[n].natoms=natoms;
77 mgraph[n].gr=mk_graph(idef,natoms,FALSE,FALSE);
79 mk_mshift(stdout,mgraph[n].gr,box,x);
80 calc_shifts(box,box_size,sv);
81 shift_x(mgraph[n].gr,box,x,x_s);
82 bNeedToCopy=FALSE;
83 } else if (bFirst) {
84 fprintf(stderr,
85 "\nWarning: can not make broken molecules whole without a run input file,\n don't worry, mdrun doesn't write broken molecules\n\n");
86 bFirst=FALSE;
89 if (bNeedToCopy)
90 for (i=0; i<natoms; i++)
91 copy_rvec(x[i],x_s[i]);