Gromacs
2024.3
|
#include <gromacs/analysisdata/modules/histogram.h>
Data module for bin averages.
Output data contains one row for each bin; see AbstractAverageHistogram. Output data contains one column for each input data set. The value in a column is the average over all frames of that data set for that bin. The input data is interpreted such that the first column passed to pointsAdded() determines the bin and the rest give values to be added to that bin (input data should have at least two columns, and at least two columns should be added at the same time). All input columns for a data set are averaged into the same histogram.
Public Types | |
enum | Flag { efAllowMultipoint = 1 << 0, efOnlyMultipoint = 1 << 1, efAllowMulticolumn = 1 << 2, efAllowMissing = 1 << 3, efAllowMultipleDataSets = 1 << 4 } |
Possible flags for flags(). More... | |
Public Member Functions | |
AnalysisDataBinAverageModule () | |
Creates a histogram module with undefined bins. More... | |
AnalysisDataBinAverageModule (const AnalysisHistogramSettings &settings) | |
Creates a histogram module with defined bin parameters. More... | |
void | init (const AnalysisHistogramSettings &settings) |
(Re)initializes the histogram from settings. More... | |
const AnalysisHistogramSettings & | settings () const |
Returns bin properties for the histogram. More... | |
int | flags () const override |
Returns properties supported by the module. More... | |
void | dataStarted (AbstractAnalysisData *data) override |
Called (once) when the data has been set up properly. More... | |
void | frameStarted (const AnalysisDataFrameHeader &header) override |
Called at the start of each data frame. More... | |
void | pointsAdded (const AnalysisDataPointSetRef &points) override |
Called one or more times during each data frame. More... | |
void | frameFinished (const AnalysisDataFrameHeader &header) override |
Called when a data frame is finished. More... | |
void | dataFinished () override |
Called (once) when no more data is available. More... | |
int | frameCount () const override |
Returns the total number of frames in the data. More... | |
int | rowCount () const |
Returns the number of rows in the data array. More... | |
bool | isAllocated () const |
Returns true if values have been allocated. | |
real | xstart () const |
Returns the x value of the first frame. | |
real | xstep () const |
Returns the step between frame x values. | |
real | xvalue (int row) const |
Returns the x value of a row. | |
const AnalysisDataValue & | value (int row, int col) const |
Returns a given array element. | |
bool | isMultipoint () const |
Whether the data can have multiple points in the same column in the same frame. More... | |
int | dataSetCount () const |
Returns the number of data sets in the data object. More... | |
int | columnCount (int dataSet) const |
Returns the number of columns in a data set. More... | |
int | columnCount () const |
Returns the number of columns in the data. More... | |
AnalysisDataFrameRef | tryGetDataFrame (int index) const |
Access stored data. More... | |
AnalysisDataFrameRef | getDataFrame (int index) const |
Access stored data. More... | |
bool | requestStorage (int nframes) |
Request storage of frames. More... | |
void | addModule (const AnalysisDataModulePointer &module) |
Adds a module to process the data. More... | |
void | addColumnModule (int col, int span, const AnalysisDataModulePointer &module) |
Adds a module that processes only a subset of the columns. More... | |
void | applyModule (IAnalysisDataModule *module) |
Applies a module to process data that is ready. More... | |
Protected Member Functions | |
AnalysisDataValue & | value (int row, int col) |
Returns a reference to a given array element. | |
void | setColumnCount (int ncols) |
Sets the number of columns in the data array. More... | |
void | setColumnCount (int dataSet, int columnCount) |
Sets the number of columns for a data set. More... | |
void | setRowCount (int rowCount) |
Sets the number of rows in the data array. More... | |
void | allocateValues () |
Allocates memory for the values. More... | |
void | setXAxis (real start, real step) |
Sets the values reported as x values for frames. More... | |
void | setXAxisValue (int row, real value) |
Sets a single value reported as x value for frames. More... | |
void | valuesReady () |
Notifies modules of the data. More... | |
void | setDataSetCount (int dataSetCount) |
Sets the number of data sets. More... | |
void | setMultipoint (bool bMultipoint) |
Sets whether the data has multiple points per column in a frame. More... | |
AnalysisDataModuleManager & | moduleManager () |
Returns the module manager to use for calling notification methods. | |
const AnalysisDataModuleManager & | moduleManager () const |
Returns the module manager to use for calling notification methods. | |
Static Protected Member Functions | |
static void | copyContents (const AbstractAnalysisArrayData *src, AbstractAnalysisArrayData *dest) |
Copies the contents into a new object. More... | |
|
inherited |
Possible flags for flags().
gmx::AnalysisDataBinAverageModule::AnalysisDataBinAverageModule | ( | ) |
Creates a histogram module with undefined bins.
Bin parameters must be defined with init() before data input is started.
|
explicit |
Creates a histogram module with defined bin parameters.
|
inherited |
Adds a module that processes only a subset of the columns.
[in] | col | First column. |
[in] | span | Number of columns. |
module | Module to add. |
Throws in the same situations as addModule().
Currently, all data sets are filtered using the same column mask.
|
inherited |
Adds a module to process the data.
module | Module to add. |
std::bad_alloc | if out of memory. |
APIError | if
|
unspecified | Any exception thrown by module in its notification methods (if data has been added). |
If data has already been added to the data, the new module immediately processes all existing data. APIError is thrown if all data is not available through getDataFrame().
The caller can keep a copy of the module pointer if it requires later access to the module.
If the method throws, the state of the data object is not changed. The state of the data module is indeterminate.
|
protectedinherited |
Allocates memory for the values.
std::bad_alloc | if memory allocation fails. |
setColumnCount() and setRowCount() must have been called.
Strong exception safety guarantee.
|
inherited |
Applies a module to process data that is ready.
module | Module to apply. |
APIError | in same situations as addModule(). |
unspecified | Any exception thrown by module in its notification methods. |
This function works as addModule(), except that it does not keep a reference to module
within the data object after it returns. Also, it can only be called after the data is ready, and only if getDataFrame() gives access to all of the data. It is provided for additional flexibility in postprocessing in-memory data.
module
requests storage (addModule() has the same problem if called after data is started).
|
inherited |
Returns the number of columns in a data set.
[in] | dataSet | Zero-based index of the data set to query. |
If the number of columns is not yet known, returns 0. The returned value does not change after modules have been notified of data start, but may change multiple times before that, depending on the actual data class. Derived classes should set the number of columns with setColumnCount(), within the above limitations.
Does not throw.
|
inherited |
Returns the number of columns in the data.
This is a convenience method for data objects with a single data set. Can only be called if dataSetCount() == 1.
Does not throw.
|
staticprotectedinherited |
Copies the contents into a new object.
[in] | src | Object to copy data from. |
[in,out] | dest | Empty array data object to copy data to. |
std::bad_alloc | if memory allocation for dest fails. |
dest
should not have previous contents.
|
overridevirtual |
Called (once) when no more data is available.
unspecified | Can throw any exception required by the implementing class to report errors. |
Implements gmx::AnalysisDataModuleSerial.
|
inherited |
Returns the number of data sets in the data object.
If the number is not yet known, returns 0. The returned value does not change after modules have been notified of data start, but may change multiple times before that, depending on the actual data class. Derived classes should set the number of columns with setDataSetCount(), within the above limitations.
Does not throw.
|
overridevirtual |
Called (once) when the data has been set up properly.
[in] | data | Data object to which the module is added. |
APIError | if the provided data is not compatible. |
unspecified | Can throw any exception required by the implementing class to report errors. |
When the data is ready, either this method or parallelDataStarted() is called, depending on the nature of the input data. If this method is called, the input data will always present the frames in sequential order.
The data to which the module is attached is passed as an argument to provide access to properties of the data for initialization and/or validation. The module can also call AbstractAnalysisData::requestStorage() if needed.
This is the only place where the module gets access to the data; if properties of the data are required later, the module should store them internally. It is guaranteed that the data properties (column count, whether it's multipoint) do not change once this method has been called.
Notice that data
will be a proxy object if the module is added as a column module, not the data object for which AbstractAnalysisData::addColumnModule() was called.
Implements gmx::AnalysisDataModuleSerial.
|
overridevirtual |
Returns properties supported by the module.
The return value of this method should not change after the module has been added to a data (this responsibility can, and in most cases must, be delegated to the user of the module).
The purpose of this method is to remove the need for common checks for data compatibility in the classes that implement the interface. Instead, AbstractAnalysisData performs these checks based on the flags provided.
Does not throw.
Implements gmx::AnalysisDataModuleSerial.
|
inlineoverridevirtualinherited |
Returns the total number of frames in the data.
This function returns the number of frames that the object has produced. If requestStorage() has been successfully called, tryGetDataframe() or getDataFrame() can be used to access some or all of these frames.
Does not throw.
Derived classes should implement this to return the number of frames. The frame count should not be incremented before tryGetDataFrameInternal() can return the new frame. The frame count must be incremented before AnalysisDataModuleManager::notifyFrameFinish() is called.
Implements gmx::AbstractAnalysisData.
|
overridevirtual |
Called when a data frame is finished.
[in] | header | Header information for the frame that is ending. |
unspecified | Can throw any exception required by the implementing class to report errors. |
Implements gmx::AnalysisDataModuleSerial.
|
overridevirtual |
Called at the start of each data frame.
[in] | frame | Header information for the frame that is starting. |
unspecified | Can throw any exception required by the implementing class to report errors. |
Implements gmx::AnalysisDataModuleSerial.
|
inherited |
Access stored data.
[in] | index | Zero-based frame index to access. |
index
. APIError | if the requested frame is not accessible. |
If the data is not certainly available, use tryGetDataFrame().
void gmx::AnalysisDataBinAverageModule::init | ( | const AnalysisHistogramSettings & | settings | ) |
(Re)initializes the histogram from settings.
|
inherited |
Whether the data can have multiple points in the same column in the same frame.
true
if multiple points in the same column are allowed within a single frame.This kind of data can appear in many histogramming applications (e.g., RDFs), where each trajectory frame has several data points (possibly a different number for each frame). The current interface doesn't support storing such data, but this should rarely be necessary.
The returned value does not change after modules have been notified of data start. Derived classes can change the type by calling setMultipoint() subject to the above restriction. If this is not done, the function always returns false.
Does not throw.
|
overridevirtual |
Called one or more times during each data frame.
[in] | points | Set of points added (also provides access to frame-level data). |
APIError | if the provided data is not compatible. |
unspecified | Can throw any exception required by the implementing class to report errors. |
Can be called once or multiple times for a frame. For all data objects currently implemented in the library (and all objects that will use AnalysisDataStorage for internal implementation), it is called exactly once for each frame if the data is not multipoint, but currently this restriction is not enforced.
Implements gmx::AnalysisDataModuleSerial.
|
inherited |
Request storage of frames.
[in] | nframes | Request storing at least nframes previous frames (-1 = request storing all). Must be >= -1. |
If called multiple times, the largest request is honored.
Does not throw. Failure to honor the request is indicated through the return value.
|
inlineinherited |
Returns the number of rows in the data array.
This function is identical to frameCount(), except that frameCount() returns 0 before valuesReady() has been called.
|
protectedinherited |
Sets the number of columns in the data array.
[in] | ncols | Number of columns in the data. |
Cannot be called after allocateValues().
See AbstractAnalysisData::setColumnCount() for exception behavior.
|
protectedinherited |
Sets the number of columns for a data set.
[in] | dataSet | Zero-based index of the data set. |
[in] | columnCount | Number of columns in dataSet (must be > 0). |
APIError | if modules have been added that are not compatible with the new column count. |
Must be called at least once for each data set before AnalysisDataModuleManager::notifyDataStart(). Can be called only before AnalysisDataModuleManager::notifyDataStart(). Multiple calls are allowed before that point; the last call takes effect.
Strong exception safety.
|
protectedinherited |
Sets the number of data sets.
[in] | dataSetCount | Number of data sets (must be > 0). |
std::bad_alloc | if out of memory. |
APIError | if modules have been added that are not compatible with the new data set count. |
It not called, the data object has a single data set. Can be called only before AnalysisDataModuleManager::notifyDataStart(). Multiple calls are allowed before that point; the last call takes effect.
Strong exception safety.
|
protectedinherited |
Sets whether the data has multiple points per column in a frame.
[in] | bMultipoint | Whether multiple points per column are possible. |
APIError | if modules have been added that are not compatible with the new setting. |
If not called, only a single point per column is allowed. Can be called only before AnalysisDataModuleManager::notifyDataStart(). Multiple calls are allowed before that point; the last call takes effect.
Strong exception safety.
|
protectedinherited |
Sets the number of rows in the data array.
[in] | rowCount | Number of rows in the data. |
Cannot be called after allocateValues().
Does not throw.
const AnalysisHistogramSettings & gmx::AnalysisDataBinAverageModule::settings | ( | ) | const |
Returns bin properties for the histogram.
Sets the values reported as x values for frames.
[in] | start | x value for the first frame. |
[in] | step | Step between x values of successive frames. |
Must not be called after valuesReady(). Any values set with setXAxisValue() are overwritten.
Does not throw.
|
protectedinherited |
Sets a single value reported as x value for frames.
[in] | row | Row/frame for which to set the value. |
[in] | value | x value for the frame specified by row . |
Must not be called after valuesReady().
Does not throw.
|
inherited |
Access stored data.
[in] | index | Zero-based frame index to access. |
index
, or an invalid reference if no such frame is available.Does not throw. Failure to access a frame with the given index is indicated through the return value. Negative index
is allowed, and will always result in an invalid reference being returned.
|
protectedinherited |
Notifies modules of the data.
unspecified | Any exception thrown by attached data modules in data notification methods. |
This function should be called once the values in the array have been initialized. The values should not be changed after this function has been called.