Make PBC type enumeration into PbcType enum class
[alexxy/gromacs.git] / src / gromacs / fileio / tpxio.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
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,2017 by the GROMACS development team.
7  * Copyright (c) 2018,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.
11  *
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.
16  *
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.
21  *
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.
26  *
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.
34  *
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.
37  */
38 #ifndef GMX_FILEIO_TPXIO_H
39 #define GMX_FILEIO_TPXIO_H
40
41 #include <cstdio>
42
43 #include <vector>
44
45 #include "gromacs/math/vectypes.h"
46 #include "gromacs/pbcutil/pbc.h"
47 #include "gromacs/utility/arrayref.h"
48 #include "gromacs/utility/basedefinitions.h"
49 #include "gromacs/utility/real.h"
50
51 struct gmx_mtop_t;
52 struct t_atoms;
53 struct t_block;
54 struct t_inputrec;
55 class t_state;
56 struct t_topology;
57
58 /*! \libinternal
59  * \brief
60  * First part of the TPR file structure containing information about
61  * the general aspect of the system.
62  */
63 struct TpxFileHeader
64 {
65     //! Non zero if input_rec is present.
66     bool bIr = false;
67     //! Non zero if a box is present.
68     bool bBox = false;
69     //! Non zero if a topology is present.
70     bool bTop = false;
71     //! Non zero if coordinates are present.
72     bool bX = false;
73     //! Non zero if velocities are present.
74     bool bV = false;
75     //! Non zero if forces are present (no longer supported, but retained so old .tpr can be read)
76     bool bF = false;
77     //! The total number of atoms.
78     int natoms = 0;
79     //! The number of temperature coupling groups.
80     int ngtc = 0;
81     //! Current value of lambda.
82     real lambda = 0;
83     //! Current value of the alchemical state - not yet printed out.
84     int fep_state = 0;
85     /*a better decision will eventually (5.0 or later) need to be made
86        on how to treat the alchemical state of the system, which can now
87        vary through a simulation, and cannot be completely described
88        though a single lambda variable, or even a single state
89        index. Eventually, should probably be a vector. MRS*/
90     //! Size of the TPR body in chars (equal to number of bytes) during I/O.
91     int64_t sizeOfTprBody = 0;
92     //! File version.
93     int fileVersion = 0;
94     //! File generation.
95     int fileGeneration = 0;
96     //! If the tpr file was written in double precision.
97     bool isDouble = false;
98 };
99
100 /*! \brief
101  * Contains the partly deserialized contents of a TPR file.
102  *
103  * Convenience struct that holds a fully deserialized TPR file header,
104  * and the body of the TPR file as char buffer that can be deserialized
105  * independently from the header.
106  */
107 struct PartialDeserializedTprFile
108 {
109     //! The file header.
110     TpxFileHeader header;
111     //! The file body.
112     std::vector<char> body;
113     //! Flag for PBC needed by legacy implementation.
114     PbcType pbcType = PbcType::Unset;
115 };
116
117 /*
118  * These routines handle reading and writing of preprocessed
119  * topology files in any of the following formats:
120  * TPR : topology in XDR format, portable accross platforms
121  *
122  * Files are written in the precision with which the source are compiled,
123  * but double and single precision can be read by either.
124  */
125
126 /*! \brief
127  * Read the header from a tpx file and then close it again.
128  *
129  * By setting \p canReadTopologyOnly to true, it is possible to read future
130  * versions too (we skip the changed inputrec), provided we havent
131  * changed the topology description. If it is possible to read
132  * the inputrec it will still be done even if canReadTopologyOnly is true.
133  *
134  * \param[in] fileName The name of the input file.
135  * \param[in] canReadTopologyOnly If reading the inputrec can be skipped or not.
136  * \returns An initialized and populated TPX File header object.
137  */
138 TpxFileHeader readTpxHeader(const char* fileName, bool canReadTopologyOnly);
139
140 void write_tpx_state(const char* fn, const t_inputrec* ir, const t_state* state, const gmx_mtop_t* mtop);
141 /* Write a file, and close it again.
142  */
143
144 /*! \brief
145  * Complete deserialization of TPR file into the individual data structures.
146  *
147  * If \p state is nullptr, only populates ir and mtop.
148  *
149  * \param[in] partialDeserializedTpr Struct with header and char buffer needed to populate system.
150  * \param[out] ir Input rec to populate.
151  * \param[out] state System state variables to populate.
152  * \param[out] x Separate vector for coordinates, deprecated.
153  * \param[out] v Separate vector for velocities, deprecated.
154  * \param[out] mtop Global topology to populate.
155  *
156  * \returns PBC flag.
157  */
158 PbcType completeTprDeserialization(PartialDeserializedTprFile* partialDeserializedTpr,
159                                    t_inputrec*                 ir,
160                                    t_state*                    state,
161                                    rvec*                       x,
162                                    rvec*                       v,
163                                    gmx_mtop_t*                 mtop);
164
165 //! Overload for final TPR deserialization when not using state vectors.
166 PbcType completeTprDeserialization(PartialDeserializedTprFile* partialDeserializedTpr,
167                                    t_inputrec*                 ir,
168                                    gmx_mtop_t*                 mtop);
169
170 /*! \brief
171  * Read a file to set up a simulation and close it after reading.
172  *
173  * Main function used to initialize simulations. Reads the input \p fn
174  * to populate the \p state, \p ir and \p mtop needed to run a simulations.
175  *
176  * This function returns the partial deserialized TPR file
177  * that can then be communicated to set up non-master nodes to run simulations.
178  *
179  * \param[in] fn Input file name.
180  * \param[out] ir Input parameters to be set, or nullptr.
181  * \param[out] state State variables for the simulation.
182  * \param[out] mtop Global simulation topolgy.
183  * \returns Struct with header and body in char vector.
184  */
185 PartialDeserializedTprFile read_tpx_state(const char* fn, t_inputrec* ir, t_state* state, gmx_mtop_t* mtop);
186
187 /*! \brief
188  * Read a file and close it again.
189  *
190  * Reads a topology input file and populates the fields if the passed
191  * variables are valid. It is possible to pass \p ir, \p natoms,
192  * \p x, \p v or \p mtop as nullptr to the function. In those cases,
193  * the variables will not be populated from the input file. Passing both
194  * \p x and \p v as nullptr is not supported. If both \p natoms and
195  * \p mtop are passed as valid objects to the function, the total atom
196  * number from \p mtop will be set in \p natoms. Otherwise \p natoms
197  * will not be changed. If \p box is valid, the box will be set from
198  * the information read in from the file.
199  *
200  * \param[in] fn Input file name.
201  * \param[out] ir Input parameters to be set, or nullptr.
202  * \param[out] box Box matrix.
203  * \param[out] natoms Total atom numbers to be set, or nullptr.
204  * \param[out] x Positions to be filled from file, or nullptr.
205  * \param[out] v Velocities to be filled from file, or nullptr.
206  * \param[out] mtop Topology to be populated, or nullptr.
207  * \returns ir->pbcType if it was read from the file.
208  */
209 PbcType read_tpx(const char* fn, t_inputrec* ir, matrix box, int* natoms, rvec* x, rvec* v, gmx_mtop_t* mtop);
210
211 PbcType read_tpx_top(const char* fn, t_inputrec* ir, matrix box, int* natoms, rvec* x, rvec* v, t_topology* top);
212 /* As read_tpx, but for the old t_topology struct */
213
214 gmx_bool fn2bTPX(const char* file);
215 /* return if *file is one of the TPX file types */
216
217 void pr_tpxheader(FILE* fp, int indent, const char* title, const TpxFileHeader* sh);
218
219 #endif