Split espresso I/O routines from confio.cpp
[alexxy/gromacs.git] / src / gromacs / fileio / trnio.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, 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.
10  *
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.
15  *
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.
20  *
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.
25  *
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.
33  *
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.
36  */
37
38 #ifndef GMX_FILEIO_TRNIO_H
39 #define GMX_FILEIO_TRNIO_H
40
41 #include "gromacs/math/vectypes.h"
42 #include "gromacs/utility/basedefinitions.h"
43 #include "gromacs/utility/real.h"
44
45 /**************************************************************
46  *
47  * These routines handle trr (trajectory) I/O, they read and
48  * write trr files. The routines should be able to read single
49  * and double precision files without the user noting it.
50  * The files are backward compatible, therefore the header holds
51  * some unused variables.
52  *
53  * The routines in the corresponding c-file trnio.c
54  * are based on the lower level routines in gmxfio.c
55  * The integer file pointer returned from open_trn
56  * can also be used with the routines in gmxfio.h
57  *
58  **************************************************************/
59
60 #ifdef __cplusplus
61 extern "C" {
62 #endif
63
64 struct t_fileio;
65
66 typedef struct           /* This struct describes the order and the     */
67                          /* sizes of the structs in a trjfile, sizes are given in bytes.        */
68 {
69     gmx_bool  bDouble;   /* Double precision?                            */
70     int       ir_size;   /* Backward compatibility                      */
71     int       e_size;    /* Backward compatibility                      */
72     int       box_size;  /* Non zero if a box is present                        */
73     int       vir_size;  /* Backward compatibility                      */
74     int       pres_size; /* Backward compatibility                      */
75     int       top_size;  /* Backward compatibility                      */
76     int       sym_size;  /* Backward compatibility                      */
77     int       x_size;    /* Non zero if coordinates are present         */
78     int       v_size;    /* Non zero if velocities are present          */
79     int       f_size;    /* Non zero if forces are present              */
80
81     int       natoms;    /* The total number of atoms                   */
82     int       step;      /* Current step number                         */
83     int       nre;       /* Backward compatibility                      */
84     real      t;         /* Current time                                        */
85     real      lambda;    /* Current value of lambda                     */
86     int       fep_state; /* Current value of alchemical state */
87 } t_trnheader;
88
89 struct t_fileio *open_trn(const char *fn, const char *mode);
90 /* Open a trr / trr file */
91
92 void close_trn(struct t_fileio *fio);
93 /* Close it */
94
95 gmx_bool fread_trnheader(struct t_fileio *fio, t_trnheader *trn, gmx_bool *bOK);
96 /* Read the header of a trn file. Return FALSE if there is no frame.
97  * bOK will be FALSE when the header is incomplete.
98  */
99
100 void read_trnheader(const char *fn, t_trnheader *header);
101 /* Read the header of a trn file from fn, and close the file afterwards.
102  */
103
104 void fwrite_trn(struct t_fileio *fio, int step, real t, real lambda,
105                 rvec *box, int natoms, rvec *x, rvec *v, rvec *f);
106 /* Write a trn frame to file fp, box, x, v, f may be NULL */
107
108 gmx_bool fread_htrn(struct t_fileio *fio, t_trnheader *sh,
109                     rvec *box, rvec *x, rvec *v, rvec *f);
110 /* Extern read a frame except the header (that should be pre-read,
111  * using routine read_trnheader, see above) from a trn file.
112  * Return FALSE on error
113  */
114
115 gmx_bool fread_trn(struct t_fileio *fio, int *step, real *t, real *lambda,
116                    rvec *box, int *natoms, rvec *x, rvec *v, rvec *f);
117 /* Read a trn frame, including the header from fp. box, x, v, f may
118  * be NULL, in which case the data will be skipped over.
119  * return FALSE on error
120  */
121
122 void write_trn(const char *fn, int step, real t, real lambda,
123                rvec *box, int natoms, rvec *x, rvec *v, rvec *f);
124 /* Write a single trn frame to file fn, which is closed afterwards */
125
126 void read_trn(const char *fn, int *step, real *t, real *lambda,
127               rvec *box, int *natoms, rvec *x, rvec *v, rvec *f);
128 /* Read a single trn frame from file fn, which is closed afterwards
129  */
130
131 #ifdef __cplusplus
132 }
133 #endif
134
135
136 #endif