4 * This source code is part of
8 * GROningen MAchine for Chemical Simulations
12 * Copyright (c) 1991-1999
13 * BIOSON Research Institute, Dept. of Biophysical Chemistry
14 * University of Groningen, The Netherlands
17 * GROMACS: A message-passing parallel molecular dynamics implementation
18 * H.J.C. Berendsen, D. van der Spoel and R. van Drunen
19 * Comp. Phys. Comm. 91, 43-56 (1995)
21 * Also check out our WWW page:
22 * http://md.chem.rug.nl/~gmx
27 * Green Red Orange Magenta Azure Cyan Skyblue
29 static char *SRCID_sheader_c
= "$Id$";
36 static char *version
="@(#) sheader.c 1.5 12/16/92";
38 void pr_header(FILE *fp
,int indent
,char *title
,t_tpxheader
*sh
)
40 if (available(fp
,sh
,title
))
42 indent
=pr_title(fp
,indent
,title
);
44 fprintf(fp
,"bIr = %spresent\n",sh
->bIr
?"":"not ");
46 fprintf(fp
,"bBox = %spresent\n",sh
->bBox
?"":"not ");
48 fprintf(fp
,"bTop = %spresent\n",sh
->bTop
?"":"not ");
50 fprintf(fp
,"bX = %spresent\n",sh
->bX
?"":"not ");
52 fprintf(fp
,"bV = %spresent\n",sh
->bV
?"":"not ");
54 fprintf(fp
,"bF = %spresent\n",sh
->bF
?"":"not ");
57 fprintf(fp
,"natoms = %d\n",sh
->natoms
);
59 fprintf(fp
,"step = %d\n",sh
->step
);
61 fprintf(fp
,"t = %e\n",sh
->t
);
63 fprintf(fp
,"lambda = %e\n",sh
->lambda
);