/usr/include/gromacs/analysisdata/analysisdata.h is in libgromacs-dev 5.1.2-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | /*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 2010,2011,2012,2013,2014, by the GROMACS development team, led by
* Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
* and including many others, as listed in the AUTHORS file in the
* top-level source directory and at http://www.gromacs.org.
*
* GROMACS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* GROMACS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, 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 http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
/*! \file
* \brief
* Declares gmx::AnalysisData and gmx::AnalysisDataHandle.
*
* \author Teemu Murtola <teemu.murtola@gmail.com>
* \inpublicapi
* \ingroup module_analysisdata
*/
#ifndef GMX_ANALYSISDATA_ANALYSISDATA_H
#define GMX_ANALYSISDATA_ANALYSISDATA_H
#include "gromacs/analysisdata/abstractdata.h"
#include "gromacs/utility/real.h"
namespace gmx
{
class AnalysisDataHandle;
class AnalysisDataParallelOptions;
/*! \brief
* Parallelizable data container for raw data.
*
* This is the main class used to implement parallelizable data processing in
* analysis tools. It is used by first creating an object and setting its
* properties using setDataSetCount(), setColumnCount() and setMultipoint(),
* and attaching necessary modules using addModule() etc. Then one or more
* AnalysisDataHandle objects can be created using startData(). Each data
* handle can then be independently used to provide data frames (each frame
* must be provided by a single handle, but different frames can be freely
* mixed between the handles). The finishFrameSerial() method must be called
* in serial for each frame, after one of the handles has been used to provide
* the data for that frame. When all data has been provided, the handles
* are destroyed using finishData() (or AnalysisDataHandle::finishData()).
*
* When used through the trajectory analysis framework, calls to startData(),
* finishFrameSerial(), and finishData() are handled by the framework.
*
* \todo
* Parallel implementation is not complete.
*
* \if internal
* Special note for MPI implementation: assuming that the initialization of
* data objects is identical in all processes, associating the data objects
* in different MPI processes should be possible without changes in the
* interface.
* Alternative, more robust implementation could get a unique ID as parameter
* to the constructor or a separate function, but would require all tools to
* provide it. With the current registration mechanism in
* TrajectoryAnalysisModule, this should be straightforward.
* \endif
*
* \inpublicapi
* \ingroup module_analysisdata
*/
class AnalysisData : public AbstractAnalysisData
{
public:
/*! \brief
* Creates an empty analysis data object.
*
* \throws std::bad_alloc if out of memory.
*/
AnalysisData();
virtual ~AnalysisData();
/*! \brief
* Sets the number of data sets.
*
* \param[in] dataSetCount Number of data sets (must be > 0).
* \throws std::bad_alloc if out of memory.
* \throws APIError if modules have been added that are not
* compatible with the new data set count.
*
* Must not be called after startData() has been called.
* If not called, a single data set is assumed.
* If called multiple times, the last call takes effect.
*/
void setDataSetCount(int dataSetCount);
/*! \brief
* Sets the number of columns in a data set.
*
* \param[in] dataSet Zero-based data set index.
* \param[in] columnCount Number of columns in the data (must be > 0).
* \throws APIError if modules have been added that are not
* compatible with the new column count.
*
* Must be called before startData() for each data set.
* Must not be called after startData() has been called.
* If called multiple times for a data set, the last call takes effect.
*/
void setColumnCount(int dataSet, int columnCount);
/*! \brief
* Sets whether the data contains multiple points per column per frame.
*
* \param[in] bMultipoint Whether the data will allow multiple points
* per column within a single frame.
* \throws APIError if modules have been added that are not
* compatible with the new setting.
*
* If this method is not called, the data is not multipoint.
*
* Must not be called after startData() has been called.
*
* \see isMultipoint()
*/
void setMultipoint(bool bMultipoint);
virtual int frameCount() const;
/*! \brief
* Creates a handle for adding data.
*
* \param[in] opt Options for setting how this handle will be
* used.
* \returns The created handle.
* \throws std::bad_alloc if out of memory.
* \throws APIError if any attached data module is not compatible.
* \throws unspecified Any exception thrown by attached data modules
* in AnalysisDataModuleInterface::dataStarted().
*
* The caller should retain the returned handle (or a copy of it), and
* pass it to finishData() after successfully adding all data.
* The caller should discard the returned handle if an error occurs;
* memory allocated for the handle will be freed when the AnalysisData
* object is destroyed.
*
* The \p opt options should be the same for all calls to this method,
* and the number of calls should match the parallelization factor
* defined in \p opt.
*/
AnalysisDataHandle startData(const AnalysisDataParallelOptions &opt);
/*! \brief
* Performs in-order sequential processing for the next frame.
*
* \param[in] frameIndex Index of the frame that has been finished.
* \throws unspecified Any exception thrown by attached data modules
* in AnalysisDataModuleInterface::frameFinishedSerial().
*
* This method should be called sequentially for each frame, after data
* for that frame has been produced. It is not necessary to call this
* method if there is no parallelism, i.e., if only a single data
* handle is created and the parallelization options provided at that
* time do not indicate parallelism.
*/
void finishFrameSerial(int frameIndex);
/*! \brief
* Destroys a handle after all data has been added.
*
* \param[in] handle Handle to destroy.
* \throws unspecified Any exception thrown by attached data modules
* in AnalysisDataModuleInterface::dataFinished().
*
* \p handle must have been obtained from startData() of this object.
* The order of the calls with respect to the corresponding startData()
* calls is not important.
*
* The \p handle (and any copies) are invalid after the call.
*/
void finishData(AnalysisDataHandle handle);
private:
virtual AnalysisDataFrameRef tryGetDataFrameInternal(int index) const;
virtual bool requestStorageInternal(int nframes);
class Impl;
PrivateImplPointer<Impl> impl_;
friend class AnalysisDataHandle;
};
namespace internal
{
class AnalysisDataHandleImpl;
} // namespace internal
/*! \brief
* Handle for inserting data into AnalysisData.
*
* This class provides an interface for adding data frames into an AnalysisData
* object. After a handle is obtained from AnalysisData::startData(), new
* frames can be added using startFrame(). Then values for that frame are set
* using provided methods (see below), and finishFrame() is called. After all
* frames have been added, finishData() (or AnalysisData::finishData()) must be
* called.
*
* For simple (non-multipoint) data, within a frame values can be set using
* selectDataSet(), setPoint() and setPoints(). Setting the same column in the
* same data set multiple times overrides previously set values.
* When the frame is finished, attached modules are notified.
*
* Multipoint data works otherwise similarly, but requires finishPointSet() to
* be called for each set of points for which the modules need to be notified.
* Each point set starts empty (after startFrame() or finishPointSet()), and
* values can be set using setPoint()/setPoints().
* A single point set can contain values only for a single data set, which must
* be selected with selectDataSet() before setting any values.
* finishPointSet() must also be called for the last point set just before
* finishFrame().
*
* This class works like a pointer type: copying and assignment is lightweight,
* and all copies work interchangeably, accessing the same internal handle.
* However, normally you should only keep one copy of a handle, i.e., treat
* this type as movable.
* Several handles created from the same AnalysisData object can exist
* concurrently, but must currently operate on separate frames.
*
* \inpublicapi
* \ingroup module_analysisdata
*/
class AnalysisDataHandle
{
public:
/*! \brief
* Constructs an invalid data handle.
*
* This constructor is provided for convenience in cases where it is
* easiest to declare an AnalysisDataHandle without immediately
* assigning a value to it. Any attempt to call methods without first
* assigning a value from AnalysisData::startData() to the handle
* causes an assert.
*
* Does not throw.
*/
AnalysisDataHandle();
//! Returns whether this data handle is valid.
bool isValid() const { return impl_ != NULL; }
/*! \brief
* Start data for a new frame.
*
* \param[in] index Zero-based index for the frame to start.
* \param[in] x x value for the frame.
* \param[in] dx Error in x for the frame if applicable.
*
* \throws unspecified Any exception thrown by attached data
* modules in AnalysisDataModuleInterface::frameStarted().
*
* Each \p index value 0, 1, ..., N (where N is the total number of
* frames) should be started exactly once by exactly one handle of an
* AnalysisData object. The frames may be started out of order, but
* currently the implementation places some limitations on how far
* the index can be in the future (as counted from the first frame that
* is not finished).
*/
void startFrame(int index, real x, real dx = 0.0);
/*! \brief
* Selects a data set for subsequent setPoint()/setPoints() calls.
*
* \param[in] index Zero-based data set index.
*
* After startFrame(), the first data set is always selected.
* The set value is remembered until the end of the current frame, also
* across finishPointSet() calls.
*
* Does not throw.
*/
void selectDataSet(int index);
/*! \brief
* Set a value for a single column for the current frame.
*
* \param[in] column Zero-based column index.
* \param[in] value Value to set for the column.
* \param[in] bPresent Present flag to set for the column.
*
* If called multiple times for a column (within one point set for
* multipoint data), old values are overwritten.
*
* Does not throw.
*/
void setPoint(int column, real value, bool bPresent = true);
/*! \brief
* Set a value and its error estimate for a single column for the
* current frame.
*
* \param[in] column Zero-based column index.
* \param[in] value Value to set for the column.
* \param[in] error Error estimate to set for the column.
* \param[in] bPresent Present flag to set for the column.
*
* If called multiple times for a column (within one point set for
* multipoint data), old values are overwritten.
*
* Does not throw.
*/
void setPoint(int column, real value, real error, bool bPresent = true);
/*! \brief
* Set values for consecutive columns for the current frame.
*
* \param[in] firstColumn Zero-based column index.
* \param[in] count Number of columns to set.
* \param[in] values Value array of \p column items.
*
* Equivalent to calling setPoint(firstColumn + i, values[i]) for
* i from 0 to count.
*
* Does not throw.
*/
void setPoints(int firstColumn, int count, const real *values);
/*! \brief
* Finish data for the current point set.
*
* \throws APIError if any attached data module is not compatible.
* \throws unspecified Any exception thrown by attached data
* modules in AnalysisDataModuleInterface::pointsAdded().
*
* Must be called after each point set for multipoint data, including
* the last (i.e., no values must be set between the last call to this
* method and AnalysisDataStorage::finishFrame()).
* Must not be called for non-multipoint data.
*/
void finishPointSet();
/*! \brief
* Finish data for the current frame.
*
* \throws APIError if any attached data module is not compatible.
* \throws unspecified Any exception thrown by attached data
* modules in frame notification methods.
*/
void finishFrame();
//! Calls AnalysisData::finishData() for this handle.
void finishData();
private:
/*! \brief
* Creates a new data handle associated with \p data.
*
* \param impl Data to associate the handle with.
*
* The constructor is private because data handles should only be
* constructed through AnalysisData::startData().
*
* Does not throw.
*/
explicit AnalysisDataHandle(internal::AnalysisDataHandleImpl *impl);
/*! \brief
* Pointer to the internal implementation class.
*
* The memory for this object is managed by the AnalysisData object,
* and AnalysisDataHandle simply provides a public interface for
* accessing the implementation.
*/
internal::AnalysisDataHandleImpl *impl_;
/*! \brief
* Needed to access the non-public implementation.
*/
friend class AnalysisData;
};
} // namespace gmx
#endif
|