3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
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
33 * Gromacs Runs On Most of All Computer Systems
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 **************************************************************/
59 int bIr
; /* Non zero if input_rec is present */
60 int bBox
; /* Non zero if a box is present */
61 int bTop
; /* Non zero if a topology is present */
62 int bX
; /* Non zero if coordinates are present */
63 int bV
; /* Non zero if velocities are present */
64 int bF
; /* Non zero if forces are present */
66 int natoms
; /* The total number of atoms */
67 int ngtc
; /* The number of temperature coupling groups */
68 real lambda
; /* Current value of lambda */
72 * These routines handle reading and writing of preprocessed
73 * topology files in any of the following formats:
74 * TPR : topology in XDR format, portable accross platforms
75 * TPB : binary topology, not portable accross platforms
76 * TPA : ascii topology (possibbly huge)
77 * TRR : trajectory in XDR format (non compressed)
78 * TRJ : trajectory in binary format
80 * Files are written in the precision with which the source are compiled,
81 * but double and single precision can be read by either.
84 extern int open_tpx(const char *fn
, const char *mode
);
85 /* Return an integer corresponding to the file you have just opened */
87 extern void close_tpx(int fp
);
88 /* Close the file corresponding to fp */
90 extern void read_tpxheader(const char *fn
, t_tpxheader
*tpx
, bool TopOnlyOK
,
91 int *version
, int *generation
);
92 /* Read the header from a tpx file and then close it again.
93 * By setting TopOnlyOK to true, it is possible to read future
94 * versions too (we skip the changed inputrec), provided we havent
95 * changed the topology description. If it is possible to read
96 * the inputrec it will still be done even if TopOnlyOK is TRUE.
98 * The version and generation if the topology (see top of tpxio.c)
99 * are returned in the two last arguments.
102 extern void write_tpx_state(const char *fn
,
103 t_inputrec
*ir
,t_state
*state
,gmx_mtop_t
*mtop
);
104 /* Write a file, and close it again.
105 * If fn == NULL, an efTPA file will be written to stdout (which
106 * will not be closed afterwards)
109 extern void read_tpx_state(const char *fn
,
110 t_inputrec
*ir
,t_state
*state
,rvec
*f
,
112 extern int read_tpx(const char *fn
,
113 t_inputrec
*ir
,matrix box
,int *natoms
,
114 rvec
*x
,rvec
*v
,rvec
*f
,gmx_mtop_t
*mtop
);
115 /* Read a file, and close it again.
116 * If fn == NULL, an efTPA file will be read from stdin (which
117 * will not be closed afterwards)
118 * When step, t or lambda are NULL they will not be stored.
119 * Returns ir->ePBC, if it could be read from the file.
122 extern int read_tpx_top(const char *fn
,
123 t_inputrec
*ir
, matrix box
,int *natoms
,
124 rvec
*x
,rvec
*v
,rvec
*f
,t_topology
*top
);
125 /* As read_tpx, but for the old t_topology struct */
127 extern bool fn2bTPX(const char *file
);
128 /* return if *file is one of the TPX file types */
130 extern bool read_tps_conf(const char *infile
,char *title
,t_topology
*top
,
131 int *ePBC
, rvec
**x
,rvec
**v
,matrix box
,bool bMass
);
132 /* Read title, top.atoms, x, v (if not NULL) and box from an STX file,
133 * memory for atoms, x and v will be allocated.
134 * Return TRUE if a complete topology was read.
135 * If infile is a TPX file read the whole top,
136 * else if bMass=TRUE, read the masses into top.atoms from the mass database.
140 tpx_make_chain_identifiers(t_atoms
*atoms
,t_block
*mols
);