2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
37 * Implements classes in topologyinformation.h.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_trajectoryanalysis
44 #include "topologyinformation.h"
46 #include "gromacs/compat/make_unique.h"
47 #include "gromacs/fileio/confio.h"
48 #include "gromacs/math/vec.h"
49 #include "gromacs/pbcutil/rmpbc.h"
50 #include "gromacs/topology/mtop_util.h"
51 #include "gromacs/topology/topology.h"
52 #include "gromacs/utility/arrayref.h"
53 #include "gromacs/utility/exceptions.h"
54 #include "gromacs/utility/gmxassert.h"
55 #include "gromacs/utility/smalloc.h"
56 #include "gromacs/utility/unique_cptr.h"
61 TopologyInformation::TopologyInformation()
62 : mtop_(compat::make_unique
<gmx_mtop_t
>()),
63 hasLoadedMtop_(false),
64 expandedTopology_(nullptr),
66 bTop_(false), ePBC_(-1)
71 TopologyInformation::~TopologyInformation()
75 void TopologyInformation::fillFromInputFile(const std::string
&filename
)
77 mtop_
= gmx::compat::make_unique
<gmx_mtop_t
>();
78 // TODO When filename is not a .tpr, then using readConfAndAtoms
79 // would be efficient for not doing multiple conversions for
80 // makeAtomsData. However we'd also need to be able to copy the
81 // t_atoms that we'd keep, which we currently can't do.
82 // TODO Once there are fewer callers of the file-reading
83 // functionality, make them read directly into std::vector.
85 readConfAndTopology(filename
.c_str(), &bTop_
, mtop_
.get(),
88 xtop_
.assign(x
, x
+ mtop_
->natoms
);
89 vtop_
.assign(v
, v
+ mtop_
->natoms
);
92 hasLoadedMtop_
= true;
93 // TODO: Only load this here if the tool actually needs it; selections
94 // take care of themselves.
95 for (gmx_moltype_t
&moltype
: mtop_
->moltype
)
97 if (!moltype
.atoms
.haveMass
)
99 // Try to read masses from database, be silent about missing masses
100 atomsSetMassesBasedOnNames(&moltype
.atoms
, FALSE
);
105 const gmx_localtop_t
*TopologyInformation::expandedTopology() const
107 // Do lazy initialization
108 if (expandedTopology_
== nullptr && hasTopology())
110 expandedTopology_
.reset(gmx_mtop_generate_local_top(mtop_
.get(), false));
113 return expandedTopology_
.get();
119 //! Helps implement lazy initialization.
120 AtomsDataPtr
makeAtoms(const TopologyInformation
&top_
)
122 AtomsDataPtr
atoms(new t_atoms
);
123 if (top_
.hasTopology())
125 *atoms
= gmx_mtop_global_atoms(top_
.mtop());
129 init_atom(atoms
.get());
136 const t_atoms
*TopologyInformation::atoms() const
138 // Do lazy initialization
139 if (atoms_
== nullptr)
141 atoms_
= makeAtoms(*this);
147 AtomsDataPtr
TopologyInformation::copyAtoms() const
149 // Note that we do not return atoms_, so that regardless of
150 // whether the user has already used it, or will use it in the
151 // future, any transformation operations on the data structure
152 // returned here cannot have unintended effects.
153 return makeAtoms(*this);
157 TopologyInformation::x() const
161 GMX_THROW(APIError("Topology coordinates requested without setting efUseTopX"));
167 TopologyInformation::v() const
171 GMX_THROW(APIError("Topology coordinates requested without setting efUseTopV"));
177 TopologyInformation::getBox(matrix box
) const
179 GMX_RELEASE_ASSERT(box
!= nullptr, "Must have valid box to fill");
180 copy_mat(const_cast<rvec
*>(boxtop_
), box
);
184 TopologyInformation::name() const
186 if (hasTopology() && mtop_
->name
)
193 gmx_rmpbc_t
gmx_rmpbc_init(const gmx::TopologyInformation
&topInfo
)
195 GMX_RELEASE_ASSERT(topInfo
.hasTopology(), "Cannot remove PBC without a topology");
197 return gmx_rmpbc_init(&topInfo
.expandedTopology()->idef
, topInfo
.ePBC(), topInfo
.mtop()->natoms
);