Merge branch 'master' of git.gromacs.org:gromacs
[gromacs/rigid-bodies.git] / include / tpxio.h
blob47ca78188f16eefdeb178f8a12e091be510e754a
1 /*
2 *
3 * This source code is part of
4 *
5 * G R O M A C S
6 *
7 * GROningen MAchine for Chemical Simulations
8 *
9 * VERSION 3.2.0
10 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12 * Copyright (c) 2001-2004, The GROMACS development team,
13 * check out http://www.gromacs.org for more information.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * If you want to redistribute modifications, please consider that
21 * scientific software is very special. Version control is crucial -
22 * bugs must be traceable. We will be happy to consider code for
23 * inclusion in the official distribution, but derived work must not
24 * be called official GROMACS. Details are found in the README & COPYING
25 * files - if they are missing, get the official version at www.gromacs.org.
27 * To help us fund GROMACS development, we humbly ask that you cite
28 * the papers on the package - you can find them in the top README file.
30 * For more info, check our website at http://www.gromacs.org
32 * And Hey:
33 * Gromacs Runs On Most of All Computer Systems
36 #ifndef _tpxio_h
37 #define _tpxio_h
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
43 /**************************************************************
45 * The routines in the corresponding c-file tpxio.c
46 * are based on the lower level routines in gmxfio.c
47 * The integer file pointer returned from open_tpx
48 * can also be used with the routines in gmxfio.h
50 **************************************************************/
51 #include "typedefs.h"
52 #include "gmxfio.h"
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
58 typedef struct
60 int bIr; /* Non zero if input_rec is present */
61 int bBox; /* Non zero if a box is present */
62 int bTop; /* Non zero if a topology is present */
63 int bX; /* Non zero if coordinates are present */
64 int bV; /* Non zero if velocities are present */
65 int bF; /* Non zero if forces are present */
67 int natoms; /* The total number of atoms */
68 int ngtc; /* The number of temperature coupling groups */
69 real lambda; /* Current value of lambda */
70 } t_tpxheader;
72 /*
73 * These routines handle reading and writing of preprocessed
74 * topology files in any of the following formats:
75 * TPR : topology in XDR format, portable accross platforms
76 * TPB : binary topology, not portable accross platforms
77 * TPA : ascii topology (possibbly huge)
78 * TRR : trajectory in XDR format (non compressed)
79 * TRJ : trajectory in binary format
81 * Files are written in the precision with which the source are compiled,
82 * but double and single precision can be read by either.
85 extern t_fileio *open_tpx(const char *fn, const char *mode);
86 /* Return an file pointer corresponding to the file you have just opened */
88 extern void close_tpx(t_fileio *fio);
89 /* Close the file corresponding to fio */
91 extern void read_tpxheader(const char *fn, t_tpxheader *tpx, bool TopOnlyOK,
92 int *version, int *generation);
93 /* Read the header from a tpx file and then close it again.
94 * By setting TopOnlyOK to true, it is possible to read future
95 * versions too (we skip the changed inputrec), provided we havent
96 * changed the topology description. If it is possible to read
97 * the inputrec it will still be done even if TopOnlyOK is TRUE.
99 * The version and generation if the topology (see top of tpxio.c)
100 * are returned in the two last arguments.
103 extern void write_tpx_state(const char *fn,
104 t_inputrec *ir,t_state *state,gmx_mtop_t *mtop);
105 /* Write a file, and close it again.
106 * If fn == NULL, an efTPA file will be written to stdout (which
107 * will not be closed afterwards)
110 extern void read_tpx_state(const char *fn,
111 t_inputrec *ir,t_state *state,rvec *f,
112 gmx_mtop_t *mtop);
113 extern int read_tpx(const char *fn,
114 t_inputrec *ir,matrix box,int *natoms,
115 rvec *x,rvec *v,rvec *f,gmx_mtop_t *mtop);
116 /* Read a file, and close it again.
117 * If fn == NULL, an efTPA file will be read from stdin (which
118 * will not be closed afterwards)
119 * When step, t or lambda are NULL they will not be stored.
120 * Returns ir->ePBC, if it could be read from the file.
123 extern int read_tpx_top(const char *fn,
124 t_inputrec *ir, matrix box,int *natoms,
125 rvec *x,rvec *v,rvec *f,t_topology *top);
126 /* As read_tpx, but for the old t_topology struct */
128 extern bool fn2bTPX(const char *file);
129 /* return if *file is one of the TPX file types */
131 extern bool read_tps_conf(const char *infile,char *title,t_topology *top,
132 int *ePBC, rvec **x,rvec **v,matrix box,bool bMass);
133 /* Read title, top.atoms, x, v (if not NULL) and box from an STX file,
134 * memory for atoms, x and v will be allocated.
135 * Return TRUE if a complete topology was read.
136 * If infile is a TPX file read the whole top,
137 * else if bMass=TRUE, read the masses into top.atoms from the mass database.
140 void tpx_make_chain_identifiers(t_atoms *atoms,t_block *mols);
142 #ifdef __cplusplus
144 #endif
146 #endif