Split g96 I/O routines from confio.cpp
[gromacs.git] / src / gromacs / topology / block.cpp
blobc4b2e51c27d4c9484129b0b1a8a642190d2a2100
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, 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.
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.
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.
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.
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.
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.
37 #include "gmxpre.h"
39 #include "block.h"
41 #include <algorithm>
43 #include "gromacs/utility/smalloc.h"
45 void init_block(t_block *block)
47 block->nr = 0;
48 block->nalloc_index = 1;
49 snew(block->index, block->nalloc_index);
50 block->index[0] = 0;
53 void init_blocka(t_blocka *block)
55 block->nr = 0;
56 block->nra = 0;
57 block->nalloc_index = 1;
58 snew(block->index, block->nalloc_index);
59 block->index[0] = 0;
60 block->nalloc_a = 0;
61 block->a = NULL;
64 t_blocka *new_blocka(void)
66 t_blocka *block;
68 snew(block, 1);
69 snew(block->index, 1);
71 return block;
74 void done_block(t_block *block)
76 block->nr = 0;
77 sfree(block->index);
78 block->nalloc_index = 0;
81 void done_blocka(t_blocka *block)
83 block->nr = 0;
84 block->nra = 0;
85 sfree(block->index);
86 sfree(block->a);
87 block->index = NULL;
88 block->a = NULL;
89 block->nalloc_index = 0;
90 block->nalloc_a = 0;
93 void stupid_fill_block(t_block *grp, int natom, gmx_bool bOneIndexGroup)
95 if (bOneIndexGroup)
97 grp->nalloc_index = 2;
98 snew(grp->index, grp->nalloc_index);
99 grp->index[0] = 0;
100 grp->index[1] = natom;
101 grp->nr = 1;
103 else
105 grp->nalloc_index = natom+1;
106 snew(grp->index, grp->nalloc_index);
107 snew(grp->index, natom+1);
108 for (int i = 0; i <= natom; ++i)
110 grp->index[i] = i;
112 grp->nr = natom;
116 void stupid_fill_blocka(t_blocka *grp, int natom)
118 grp->nalloc_a = natom;
119 snew(grp->a, grp->nalloc_a);
120 for (int i = 0; i < natom; ++i)
122 grp->a[i] = i;
124 grp->nra = natom;
126 grp->nalloc_index = natom + 1;
127 snew(grp->index, grp->nalloc_index);
128 for (int i = 0; i <= natom; ++i)
130 grp->index[i] = i;
132 grp->nr = natom;
135 void copy_blocka(const t_blocka *src, t_blocka *dest)
137 dest->nr = src->nr;
138 /* Workaround for inconsistent handling of nalloc_index in
139 * other parts of the code. Often nalloc_index and nalloc_a
140 * are not set.
142 dest->nalloc_index = std::max(src->nalloc_index, dest->nr + 1);
143 snew(dest->index, dest->nalloc_index);
144 for (int i = 0; i < dest->nr+1; ++i)
146 dest->index[i] = src->index[i];
148 dest->nra = src->nra;
149 /* See above. */
150 dest->nalloc_a = std::max(src->nalloc_a, dest->nra);
151 snew(dest->a, dest->nalloc_a);
152 for (int i = 0; i < dest->nra; ++i)
154 dest->a[i] = src->a[i];