3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
9 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11 * Copyright (c) 2001-2009, The GROMACS development team,
12 * check out http://www.gromacs.org for more information.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * If you want to redistribute modifications, please consider that
20 * scientific software is very special. Version control is crucial -
21 * bugs must be traceable. We will be happy to consider code for
22 * inclusion in the official distribution, but derived work must not
23 * be called official GROMACS. Details are found in the README & COPYING
24 * files - if they are missing, get the official version at www.gromacs.org.
26 * To help us fund GROMACS development, we humbly ask that you cite
27 * the papers on the package - you can find them in the top README file.
29 * For more info, check our website at http://www.gromacs.org
32 * \brief API for handling selection (the \c gmx_ana_selection_t structure and related functions).
34 * There should be no need to use the data structures or call the
35 * functions in this file directly unless using the selection routines outside
36 * the main trajectory analysis API.
42 #include <indexutil.h>
49 /** Information for a collection of selections. */
50 typedef struct gmx_ana_selcollection_t gmx_ana_selcollection_t
;
52 struct gmx_ana_poscalc_coll_t
;
54 /** Defines the type of covered fraction. */
57 CFRAC_NONE
, /**< No covered fraction (everything covered). */
58 CFRAC_SOLIDANGLE
, /**< Fraction of a solid (3D) angle covered. */
62 * Describes a single selection.
64 typedef struct gmx_ana_selection_t
66 /** Name of the selection. */
68 /** The actual selection string. */
70 /** Selected positions. */
72 /** Masses associated with the positions. */
74 /** Charges associated with the positions. */
76 /** Pointer to the index group that holds the selected atoms. */
77 struct gmx_ana_index_t
*g
;
78 /** TRUE if the value can change as a function of time. */
80 /** Type of the covered fraction. */
81 e_coverfrac_t cfractype
;
82 /** TRUE if the covered fraction depends on the frame. */
84 /** Covered fraction of the selection for the current frame. */
86 /** The average covered fraction (over the trajectory). */
90 * Pointer to the root of the selection element tree (internal use only).
93 * This field is NULL if the selection has been loaded directly from an
96 struct t_selelem
*selelem
;
97 /** Original masses of all possible positions (internal use only). */
99 /** Original charges of all possible positions (internal use only). */
101 } gmx_ana_selection_t
;
103 /** Frees the memory allocated for a selection. */
105 gmx_ana_selection_free(gmx_ana_selection_t
*sel
);
106 /** Returns the name of a selection. */
108 gmx_ana_selection_name(gmx_ana_selection_t
*sel
);
109 /** Prints out the selection information. */
111 gmx_ana_selection_print_info(gmx_ana_selection_t
*sel
);
112 /** Initializes the information for covered fraction. */
114 gmx_ana_selection_init_coverfrac(gmx_ana_selection_t
*sel
, e_coverfrac_t type
);
116 /** Creates a new empty selection collection. */
118 gmx_ana_selcollection_create(gmx_ana_selcollection_t
**sc
,
119 struct gmx_ana_poscalc_coll_t
*pcc
);
120 /** Frees the memory allocated for a selection collection. */
122 gmx_ana_selcollection_free(gmx_ana_selcollection_t
*sc
);
123 /** Sets the default reference position handling for a selection collection. */
125 gmx_ana_selcollection_set_refpostype(gmx_ana_selcollection_t
*sc
, const char *type
);
126 /** Sets the default output position handling for a selection collection. */
128 gmx_ana_selcollection_set_outpostype(gmx_ana_selcollection_t
*sc
,
129 const char *type
, bool bMaskOnly
);
130 /** Request evaluation of velocities for selections. */
132 gmx_ana_selcollection_set_veloutput(gmx_ana_selcollection_t
*sc
,
134 /** Request evaluation of forces for selections. */
136 gmx_ana_selcollection_set_forceoutput(gmx_ana_selcollection_t
*sc
,
138 /** Sets the topology for a selection collection. */
140 gmx_ana_selcollection_set_topology(gmx_ana_selcollection_t
*sc
, t_topology
*top
,
142 /** Returns the number of selections specified by a selection collection. */
144 gmx_ana_selcollection_get_count(gmx_ana_selcollection_t
*sc
);
145 /** Returns a selection by index. */
146 extern gmx_ana_selection_t
*
147 gmx_ana_selcollection_get_selection(gmx_ana_selcollection_t
*sc
, int i
);
148 /** Returns TRUE if the collection requires topology information for evaluation. */
150 gmx_ana_selcollection_requires_top(gmx_ana_selcollection_t
*sc
);
151 /** Prints a human-readable version of the internal selection element tree. */
153 gmx_ana_selcollection_print_tree(FILE *fp
, gmx_ana_selcollection_t
*sc
, bool bValues
);
154 /** Prints the selection strings into an XVGR file as comments. */
156 xvgr_selcollection(FILE *fp
, gmx_ana_selcollection_t
*sc
,
157 const output_env_t oenv
);
160 /** Parses selection(s) from standard input. */
162 gmx_ana_selcollection_parse_stdin(gmx_ana_selcollection_t
*sc
, int nr
,
163 gmx_ana_indexgrps_t
*grps
,
165 /** Parses selection(s) from a file. */
167 gmx_ana_selcollection_parse_file(gmx_ana_selcollection_t
*sc
, const char *fnm
,
168 gmx_ana_indexgrps_t
*grps
);
169 /** Parses selection(s) from a string. */
171 gmx_ana_selcollection_parse_str(gmx_ana_selcollection_t
*sc
, const char *str
,
172 gmx_ana_indexgrps_t
*grps
);
175 /** Set debugging flag for selection compilation. */
177 gmx_ana_selcollection_set_compile_debug(gmx_ana_selcollection_t
*sc
, bool bDebug
);
178 /** Prepares the selections for evaluation and performs some optimizations. */
180 gmx_ana_selcollection_compile(gmx_ana_selcollection_t
*sc
);
183 /** Evaluates the selection. */
185 gmx_ana_selcollection_evaluate(gmx_ana_selcollection_t
*sc
,
186 t_trxframe
*fr
, t_pbc
*pbc
);
187 /** Evaluates the largest possible index groups from dynamic selections. */
189 gmx_ana_selcollection_evaluate_fin(gmx_ana_selcollection_t
*sc
, int nframes
);