1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
/*
* $Id$
*
* This source code is part of
*
* G R O M A C S
*
* GROningen MAchine for Chemical Simulations
*
* VERSION 3.2.0
* Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
* Copyright (c) 1991-2000, University of Groningen, The Netherlands.
* Copyright (c) 2001-2004, The GROMACS development team,
* check out http://www.gromacs.org for more information.
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* If you want to redistribute modifications, please consider that
* scientific software is very special. Version control is crucial -
* bugs must be traceable. We will be happy to consider code for
* inclusion in the official distribution, but derived work must not
* be called official GROMACS. Details are found in the README & COPYING
* files - if they are missing, get the official version at www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the papers on the package - you can find them in the top README file.
*
* For more info, check our website at http://www.gromacs.org
*
* And Hey:
* Gromacs Runs On Most of All Computer Systems
*/
#ifndef _statutil_h
#define _statutil_h
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef CPLUSPLUS
extern "C" {
#endif
#include <stdio.h>
#include "typedefs.h"
#include "filenm.h"
#include "readinp.h"
#include "wman.h"
/* The code below is to facilitate controlled begin and end of
trajectory reading. Corresponding routines in
src/gmxlib/tcontrol.c
*/
enum { TBEGIN, TEND, TDELTA, TNR };
extern bool bTimeSet(int tcontrol);
extern real rTimeValue(int tcontrol);
extern void setTimeValue(int tcontrol,real value);
/* End trajectory time control */
typedef int t_first_x(int *status,char *fn,real *t,rvec **x,matrix box);
typedef bool t_next_x(int status,real *t,int natoms,rvec x[],matrix box);
/* I/O function types */
extern char *Program(void);
/* Return the name of the program */
extern char *ShortProgram(void);
/* Id. without leading directory */
extern char *command_line(void);
/* Return the command line for this program */
extern void set_program_name(char *argvzero);
/* set the program name to the provided string, but note
* that it must be a real file - we determine the library
* directory from its location!
*/
/************************************************
* Trajectory functions
************************************************/
extern int prec2ndec(real prec);
/* Convert precision in 1/(nm) to number of decimal places */
extern void clear_trxframe(t_trxframe *fr,bool bFirst);
/* Set all content booleans to FALSE.
* When bFirst = TRUE, set natoms=-1, all pointers to NULL
* and all data to zero.
*/
extern void set_trxframe_ePBC(t_trxframe *fr,int ePBC);
/* Set the type of periodic boundary conditions, ePBC=-1 is not set */
extern int nframes_read(void);
/* Returns the number of frames read from the trajectory */
int write_trxframe_indexed(int status,t_trxframe *fr,int nind,atom_id *ind);
/* Write an indexed frame to a TRX file, see write_trxframe */
int write_trxframe(int status,t_trxframe *fr);
/* Write a frame to a TRX file.
* Only entries for which the boolean is TRUE will be written,
* except for step, time, lambda and/or box, which may not be
* omitted for certain trajectory formats.
* The precision for .xtc and .gro is fr->prec, when fr->bPrec=FALSE,
* the precision is set to 1000.
*/
int write_trx(int status,int nind,atom_id *ind,t_atoms *atoms,
int step,real time,matrix box,rvec x[],rvec *v);
/* Write an indexed frame to a TRX file.
* v can be NULL.
* atoms can be NULL for file types which don't need atom names.
*/
void close_trx(int status);
/* Close trj file as opened with read_first_x, read_frist_frame
* or open_trx. Identical to close_trj.
*/
int open_trx(char *outfile,char *filemode);
/* Open a TRX file and return the file number */
extern bool bRmod_fd(double a, double b, double c,bool bDouble);
/* Returns TRUE when (a - b) MOD c = 0, using a margin which is slightly
* larger than the float/double precision.
*/
#ifdef GMX_DOUBLE
#define bRmod(a,b,c) bRmod_fd(a,b,c,TRUE)
#else
#define bRmod(a,b,c) bRmod_fd(a,b,c,FALSE)
#endif
extern int check_times2(real t,real t0,real tp,real tpp,bool bDouble);
/* This routine checkes if the read-in time is correct or not;
* returns -1 if t<tbegin or t MOD dt = t0,
* 0 if tbegin <= t <=tend+margin,
* 1 if t>tend
* where margin is 0.1*min(t-tp,tp-tpp), if this positive, 0 otherwise.
* tp and tpp should be the time of the previous frame and the one before.
* The mod is done with single or double precision accuracy depending
* on the value of bDouble.
*/
extern int check_times(real t);
/* This routine checkes if the read-in time is correct or not;
* returns -1 if t<tbegin,
* 0 if tbegin <= t <=tend,
* 1 if t>tend
*/
extern char *time_unit(void);
/* return time unit (e.g. ps or ns) */
extern char *time_label(void);
/* return time unit label (e.g. "Time (ps)") */
extern char *xvgr_tlabel(void);
/* retrun x-axis time label for xmgr */
extern real time_factor(void);
/* return time conversion factor from ps (i.e. 1e-3 for ps->ns) */
extern real time_invfactor(void);
/* return inverse time conversion factor from ps (i.e. 1e3 for ps->ns) */
extern real convert_time(real time);
/* return converted time */
extern void convert_times(int n, real *time);
/* convert array of times */
/* For trxframe.flags, used in trxframe read routines.
* When a READ flag is set, the field will be read when present,
* but a frame might be returned which does not contain the field.
* When a NEED flag is set, frames not containing the field will be skipped.
*/
#define TRX_READ_X (1<<0)
#define TRX_NEED_X (1<<1)
#define TRX_READ_V (1<<2)
#define TRX_NEED_V (1<<3)
#define TRX_READ_F (1<<4)
#define TRX_NEED_F (1<<5)
/* Useful for reading natoms from a trajectory without skipping */
#define TRX_DONT_SKIP (1<<6)
/* For trxframe.not_ok */
#define HEADER_NOT_OK (1<<0)
#define DATA_NOT_OK (1<<1)
#define FRAME_NOT_OK (HEADER_NOT_OK | DATA_NOT_OK)
extern int read_first_frame(int *status,char *fn,t_trxframe *fr,int flags);
/* Read the first frame which is in accordance with flags, which are
* defined further up in this file.
* Returns natoms when succeeded, 0 otherwise.
* Memory will be allocated for flagged entries.
* The flags are copied to fr for subsequent calls to read_next_frame.
* Returns TRUE when succeeded, FALSE otherwise.
*/
extern bool read_next_frame(int status,t_trxframe *fr);
/* Reads the next frame which is in accordance with fr->flags.
* Returns TRUE when succeeded, FALSE otherwise.
*/
extern int read_first_x(int *status,char *fn,
real *t,rvec **x,matrix box);
/* These routines read first coordinates and box, and allocates
* memory for the coordinates, for a trajectory file.
* The routine returns the number of atoms, or 0 when something is wrong.
* The integer in status should be passed to calls of read_next_x
*/
extern bool read_next_x(int status,real *t,int natoms,rvec x[],matrix box);
/* Read coordinates and box from a trajectory file. Return TRUE when all well,
* or FALSE when end of file (or last frame requested by user).
* status is the integer set in read_first_x.
*/
extern void close_trj(int status);
/* Close trj file as opened with read_first_x, read_frist_frame
* or open_trx. Identical to close_trx.
*/
extern void rewind_trj(int status);
/* Rewind trj file as opened with read_first_x */
extern t_topology *read_top(char *fn,int *ePBC);
/* Extract a topology data structure from a topology file.
* If ePBC!=NULL *ePBC gives the pbc type.
*/
extern bool bDoView(void);
/* Return TRUE when user requested viewing of the file */
extern bool bPrintXvgrCodes(void);
/* Return TRUE when user wants printing of legends etc. in the file. */
/*****************************************************
* Some command line parsing routines
*****************************************************/
#define PCA_CAN_VIEW (1<<5)
/* add option -w to view output files (must be implemented in program) */
#define PCA_CAN_BEGIN (1<<6)
#define PCA_CAN_END (1<<7)
#define PCA_CAN_DT (1<<14)
#define PCA_CAN_TIME (PCA_CAN_BEGIN | PCA_CAN_END | PCA_CAN_DT)
/* adds options -b and -e for begin and end time for reading trajectories */
#define PCA_TIME_UNIT (1<<15)
/* set time unit for output */
#define PCA_KEEP_ARGS (1<<8)
/* keep parsed args in argv (doesn't make sense without NOEXIT_ON_ARGS) */
#define PCA_SILENT (1<<9)
/* don't print options by default */
#define PCA_CAN_SET_DEFFNM (1<<10)
/* does something for non-master mdrun nodes */
#define PCA_NOEXIT_ON_ARGS (1<<11)
/* no fatal_error when invalid options are encountered */
#define PCA_QUIET (1<<12)
/* does something for non-master mdrun nodes */
#define PCA_BE_NICE (1<<13)
/* Default to low priority, unless configured with --disable-nice */
extern int iscan(int argc,char *argv[],int *i);
/* Scan an int from the argument at *i. If the argument length
* is > 2, the int is assumed to be in the remainder of the arg,
* eg: -p32, else the int is assumed to be in the next argument
* eg: -p 32. If neither is the case the routine exits with an error,
* otherwise it returns the value found. If the value is in the next
* argument *i is incremented. You typically would want to pass
* a loop variable to this routine.
*/
extern double dscan(int argc,char *argv[],int *i);
/* Routine similar to the above, but working on doubles. */
extern char *sscan(int argc,char *argv[],int *i);
/* Routine similar to the above, but working on strings. The pointer
* returned is a pointer to the argv field.
*/
extern void vscan(int argc,char *argv[],int *i,rvec *vec);
/* Routine similar to the above, but working on rvecs. */
extern int nenum(char *enumc[]);
/* returns ordinal number of selected enum from args
* depends on enumc[0] pointing to one of the other elements
* array must be terminated by a NULL pointer
*/
#ifdef HAVE_MOTIF
extern void gmx_gui(int *argc,char *argv[],
int nfile,t_filenm fnm[],int npargs,t_pargs pa[],
int ndesc,char *desc[],int nbugs,char *bugs[]);
/* This function plops up a Motif dialog box in which the command-line options
* can be changed.
*/
#endif
extern void parse_common_args(int *argc,char *argv[],unsigned long Flags,
int nfile,t_filenm fnm[],int npargs,t_pargs *pa,
int ndesc,char **desc,int nbugs,char **bugs);
/* Get arguments from the arg-list. The arguments extracted
* are removed from the list. If manual is NULL a default message is displayed
* when errors are encountered. The Flags argument, when non-0 enables
* some input checks. Using this routine also means that the arguments
* -b and -e will be used for begin and end time, whether this is
* appropriate or not!
*/
#ifdef CPLUSPLUS
}
#endif
#endif
|