Gromacs  5.1.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions
gmx::AnalysisDataModuleSerial Class Referenceabstract

#include <gromacs/analysisdata/datamodule.h>

+ Inheritance diagram for gmx::AnalysisDataModuleSerial:
+ Collaboration diagram for gmx::AnalysisDataModuleSerial:

Description

Convenience base class for serial analysis data modules.

Implements the parallelDataStarted() method such that initialization is always forwarded to dataStarted(), and the module always behaves as serial (parallelDataStarted() returns false).

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

virtual int flags () const =0
 Returns properties supported by the module. More...
 
virtual void dataStarted (AbstractAnalysisData *data)=0
 Called (once) when the data has been set up properly. More...
 
virtual void frameStarted (const AnalysisDataFrameHeader &frame)=0
 Called at the start of each data frame. More...
 
virtual void pointsAdded (const AnalysisDataPointSetRef &points)=0
 Called one or more times during each data frame. More...
 
virtual void frameFinished (const AnalysisDataFrameHeader &header)=0
 Called when a data frame is finished. More...
 
virtual void dataFinished ()=0
 Called (once) when no more data is available. More...
 

Member Enumeration Documentation

Possible flags for flags().

Enumerator
efAllowMultipoint 

The module can process multipoint data.

efOnlyMultipoint 

The module does not make sense for non-multipoint data.

efAllowMulticolumn 

The module can process data with more than one column.

efAllowMissing 

The module can process data with missing points.

efAllowMultipleDataSets 

The module can process data with multiple data sets.

Member Function Documentation

virtual void gmx::AnalysisDataModuleSerial::dataFinished ( )
pure virtual

Called (once) when no more data is available.

Exceptions
unspecifiedCan throw any exception required by the implementing class to report errors.

Implements gmx::AnalysisDataModuleInterface.

Implemented in gmx::AnalysisDataBinAverageModule, gmx::AbstractPlotModule, gmx::AnalysisDataFrameAverageModule, gmx::AnalysisDataAverageModule, gmx::AnalysisDataLifetimeModule, and gmx::AnalysisDataDisplacementModule.

virtual void gmx::AnalysisDataModuleSerial::dataStarted ( AbstractAnalysisData data)
pure virtual

Called (once) when the data has been set up properly.

Parameters
[in]dataData object to which the module is added.
Exceptions
APIErrorif the provided data is not compatible.
unspecifiedCan 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::AnalysisDataModuleInterface.

Implemented in gmx::AnalysisDataBinAverageModule, gmx::AbstractPlotModule, gmx::AnalysisDataFrameAverageModule, gmx::AnalysisDataAverageModule, gmx::AnalysisDataLifetimeModule, and gmx::AnalysisDataDisplacementModule.

virtual int gmx::AnalysisDataModuleSerial::flags ( ) const
pure virtual

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::AnalysisDataModuleInterface.

Implemented in gmx::AnalysisDataBinAverageModule, gmx::AbstractPlotModule, gmx::AnalysisDataFrameAverageModule, gmx::AnalysisDataAverageModule, gmx::AnalysisDataLifetimeModule, and gmx::AnalysisDataDisplacementModule.

virtual void gmx::AnalysisDataModuleSerial::frameFinished ( const AnalysisDataFrameHeader header)
pure virtual

Called when a data frame is finished.

Parameters
[in]headerHeader information for the frame that is ending.
Exceptions
unspecifiedCan throw any exception required by the implementing class to report errors.

Implements gmx::AnalysisDataModuleInterface.

Implemented in gmx::AnalysisDataBinAverageModule, gmx::AbstractPlotModule, gmx::AnalysisDataFrameAverageModule, gmx::AnalysisDataAverageModule, gmx::AnalysisDataLifetimeModule, and gmx::AnalysisDataDisplacementModule.

virtual void gmx::AnalysisDataModuleSerial::frameStarted ( const AnalysisDataFrameHeader frame)
pure virtual

Called at the start of each data frame.

Parameters
[in]frameHeader information for the frame that is starting.
Exceptions
unspecifiedCan throw any exception required by the implementing class to report errors.

Implements gmx::AnalysisDataModuleInterface.

Implemented in gmx::AnalysisDataBinAverageModule, gmx::AbstractPlotModule, gmx::AnalysisDataFrameAverageModule, gmx::AnalysisDataAverageModule, gmx::AnalysisDataLifetimeModule, and gmx::AnalysisDataDisplacementModule.

virtual void gmx::AnalysisDataModuleSerial::pointsAdded ( const AnalysisDataPointSetRef points)
pure virtual

Called one or more times during each data frame.

Parameters
[in]pointsSet of points added (also provides access to frame-level data).
Exceptions
APIErrorif the provided data is not compatible.
unspecifiedCan 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::AnalysisDataModuleInterface.

Implemented in gmx::AnalysisDataBinAverageModule, gmx::AnalysisDataVectorPlotModule, gmx::AnalysisDataPlotModule, gmx::AbstractPlotModule, gmx::AnalysisDataFrameAverageModule, gmx::AnalysisDataAverageModule, gmx::AnalysisDataLifetimeModule, and gmx::AnalysisDataDisplacementModule.


The documentation for this class was generated from the following files: