Split lines with many copyright years
[gromacs.git] / src / gromacs / pbcutil / mshift.h
blobbc73a6db54081e8b5fd45716c01e97740cefe014
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2018 by the GROMACS development team.
7 * Copyright (c) 2019,2020, by the GROMACS development team, led by
8 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
9 * and including many others, as listed in the AUTHORS file in the
10 * top-level source directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
38 #ifndef GMX_PBCUTIL_MSHIFT_H
39 #define GMX_PBCUTIL_MSHIFT_H
41 #include <stdio.h>
43 #include "gromacs/math/vectypes.h"
44 #include "gromacs/utility/basedefinitions.h"
46 struct InteractionList;
47 struct gmx_moltype_t;
48 struct t_idef;
50 typedef enum
52 egcolWhite,
53 egcolGrey,
54 egcolBlack,
55 egcolNR
56 } egCol;
58 struct t_graph
60 /* Described the connectivity between, potentially, multiple parts of
61 * the ilist that are internally chemically bonded together.
63 enum class BondedParts
65 Single, /* All atoms are connected through chemical bonds */
66 MultipleDisconnected, /* There are multiple parts, e.g. monomers, that are all disconnected */
67 MultipleConnected /* There are multiple parts, e.g. monomers, that are partially or fully connected between each other by interactions other than chemical bonds */
70 int at0; /* The first atom the graph was constructed for */
71 int at1; /* The last atom the graph was constructed for */
72 int nnodes; /* The number of nodes, nnodes=at_end-at_start */
73 int nbound; /* The number of nodes with edges */
74 int at_start; /* The first connected atom in this graph */
75 int at_end; /* The last+1 connected atom in this graph */
76 int* nedge; /* For each node the number of edges */
77 int** edge; /* For each node, the actual edges (bidirect.) */
78 gmx_bool bScrewPBC; /* Screw boundary conditions */
79 ivec* ishift; /* Shift for each particle */
80 int negc;
81 egCol* egc; /* color of each node */
82 BondedParts parts; /* How chemically bonded parts are connected */
85 #define SHIFT_IVEC(g, i) ((g)->ishift[i])
87 t_graph* mk_graph(FILE* fplog, const struct t_idef* idef, int at_start, int at_end, gmx_bool bShakeOnly, gmx_bool bSettle);
88 /* Build a graph from an idef description. The graph can be used
89 * to generate mol-shift indices.
90 * at_start and at_end should coincide will molecule boundaries,
91 * for the whole system this is simply 0 and natoms.
92 * If bShakeOnly, only the connections in the shake list are used.
93 * If bSettle && bShakeOnly the settles are used too.
96 void mk_graph_moltype(const gmx_moltype_t& moltype, t_graph* g);
97 /* As mk_graph, but takes gmx_moltype_t iso t_idef and does not allocate g */
100 void done_graph(t_graph* g);
101 /* Free the memory in g */
103 void p_graph(FILE* log, const char* title, t_graph* g);
104 /* Print a graph to log */
106 void mk_mshift(FILE* log, t_graph* g, int ePBC, const matrix box, const rvec x[]);
107 /* Calculate the mshift codes, based on the connection graph in g. */
109 void shift_x(const t_graph* g, const matrix box, const rvec x[], rvec x_s[]);
110 /* Add the shift vector to x, and store in x_s (may be same array as x) */
112 void shift_self(const t_graph* g, const matrix box, rvec x[]);
113 /* Id. but in place */
115 void unshift_x(const t_graph* g, const matrix box, rvec x[], const rvec x_s[]);
116 /* Subtract the shift vector from x_s, and store in x (may be same array) */
118 void unshift_self(const t_graph* g, const matrix box, rvec x[]);
119 /* Id, but in place */
121 #endif