IODA
|
#include <Selection.hpp>
Public Member Functions | |
Selection (const std::size_t start, const std::size_t npoints) | |
Selection (const SelectionModes mode, const std::vector< SelectSpecs > &dim_selects, const std::vector< Dimensions_t > &dim_sizes) | |
Selection () | |
SelectionModes | mode () const |
returns selection mode More... | |
void | init_lin_indx () |
initializes iterator for walking through linear memory indices More... | |
std::size_t | next_lin_indx () |
returns next linear memory index More... | |
bool | end_lin_indx () const |
returns true when at the end of the linear memory indices More... | |
std::size_t | npoints () const |
returns number of points in selection More... | |
Private Attributes | |
SelectionModes | mode_ = SelectionModes::ALL |
mode of selection (which impacts how linear memory is accessed) More... | |
int | end_ = 0 |
end of selection for ALL mode More... | |
int | index_ = 0 |
index value for ALL mode More... | |
std::size_t | npoints_ = 0 |
total number of points in selection More... | |
std::size_t | max_index_ = 0 |
maximum allowed index value More... | |
std::vector< SelectSpecs > | dim_selects_ |
selection indices for each dimension More... | |
std::vector< Dimensions_t > | dim_sizes_ |
sizes of data dimensions (length is rank of dimensions) More... | |
std::vector< std::size_t > | dim_select_sizes_ |
number of dimension selections per dimension More... | |
std::unique_ptr< SelectCounter > | counter_ |
counter for generating linear memory indices More... | |
Definition at line 92 of file Selection.hpp.
ioda::ObsStore::Selection::Selection | ( | const std::size_t | start, |
const std::size_t | npoints | ||
) |
Definition at line 75 of file Engines/ObsStore/Selection.cpp.
ioda::ObsStore::Selection::Selection | ( | const SelectionModes | mode, |
const std::vector< SelectSpecs > & | dim_selects, | ||
const std::vector< Dimensions_t > & | dim_sizes | ||
) |
Definition at line 82 of file Engines/ObsStore/Selection.cpp.
|
default |
bool ioda::ObsStore::Selection::end_lin_indx | ( | ) | const |
returns true when at the end of the linear memory indices
Definition at line 156 of file Engines/ObsStore/Selection.cpp.
void ioda::ObsStore::Selection::init_lin_indx | ( | ) |
initializes iterator for walking through linear memory indices
Definition at line 121 of file Engines/ObsStore/Selection.cpp.
SelectionModes ioda::ObsStore::Selection::mode | ( | ) | const |
returns selection mode
Definition at line 112 of file Engines/ObsStore/Selection.cpp.
std::size_t ioda::ObsStore::Selection::next_lin_indx | ( | ) |
returns next linear memory index
Definition at line 129 of file Engines/ObsStore/Selection.cpp.
std::size_t ioda::ObsStore::Selection::npoints | ( | ) | const |
returns number of points in selection
Definition at line 167 of file Engines/ObsStore/Selection.cpp.
|
private |
counter for generating linear memory indices
Definition at line 115 of file Selection.hpp.
|
private |
number of dimension selections per dimension
Definition at line 112 of file Selection.hpp.
|
private |
selection indices for each dimension
Definition at line 108 of file Selection.hpp.
|
private |
sizes of data dimensions (length is rank of dimensions)
Definition at line 110 of file Selection.hpp.
|
private |
end of selection for ALL mode
Definition at line 98 of file Selection.hpp.
|
private |
index value for ALL mode
Definition at line 100 of file Selection.hpp.
|
private |
maximum allowed index value
Definition at line 105 of file Selection.hpp.
|
private |
mode of selection (which impacts how linear memory is accessed)
Definition at line 95 of file Selection.hpp.
|
private |
total number of points in selection
Definition at line 103 of file Selection.hpp.