IODA
|
Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action". More...
#include <Selection.h>
Public Member Functions | |
SingleSelection (SelectionOperator op, const VecDimensions_t &start, const VecDimensions_t &count, const VecDimensions_t &stride={}, const VecDimensions_t &block={}) | |
SingleSelection (SelectionOperator op, const std::vector< VecDimensions_t > &points) | |
SingleSelection (SelectionOperator op, size_t dimension, const VecDimensions_t &indices_starts, const VecDimensions_t &indices_counts={}) | |
SingleSelection () | |
Public Attributes | |
SelectionOperator | op_ |
VecDimensions_t | start_ |
VecDimensions_t | count_ |
VecDimensions_t | stride_ |
VecDimensions_t | block_ |
std::vector< VecDimensions_t > | points_ |
size_t | dimension_ |
VecDimensions_t | dimension_indices_starts_ |
VecDimensions_t | dimension_indices_counts_ |
Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action".
There are three types of selections that you can make. 1) A hyperslab selection, where you can define the bounds using a start point, a span (count), stride, and block. For details of what these all mean, see the HDF5 documentation. 2) Individual points. 3) Axis + indices along the axis. You select a fundamental axis (e.g. location, channel), and then list the indices along that axis that you want to select.
Definition at line 67 of file Selection.h.