OOPS
|
Holds observation vector (e.g. vector of observation values, or of computed H(x)) More...
#include <ObsVector.h>
Public Member Functions | |
ObsVector (const ObsSpace< OBS > &obsspace, const std::string name="") | |
ObsVector (std::unique_ptr< ObsVector_ > obsvector) | |
ObsVector (const ObsVector &) | |
Copy constructor. More... | |
~ObsVector () | |
Destructor (defined explicitly for timing and tracing) More... | |
ObsVector_ & | obsvector () |
Accessor. More... | |
const ObsVector_ & | obsvector () const |
Const accessor. More... | |
ObsVector & | operator= (const ObsVector &) |
Linear algebra operators. More... | |
ObsVector & | operator*= (const double &) |
ObsVector & | operator+= (const ObsVector &) |
ObsVector & | operator-= (const ObsVector &) |
ObsVector & | operator*= (const ObsVector &) |
ObsVector & | operator/= (const ObsVector &) |
void | axpy (const double &zz, const ObsVector &rhs) |
Add zz * rhs to the ObsVector. More... | |
Eigen::VectorXd | packEigen (const ObsVector &mask) const |
size_t | packEigenSize (const ObsVector &mask) const |
void | zero () |
Zero out this ObsVector. More... | |
void | ones () |
Set this ObsVector to ones (used in tests) More... | |
void | invert () |
Set each value in this ObsVector to its inverse. More... | |
void | random () |
Set each value in this ObsVector to a random value. More... | |
double | dot_product_with (const ObsVector &other) const |
Return the dot product between this ObsVector and another one other . More... | |
double | rms () const |
Return this ObsVector rms. More... | |
void | mask (const ObsDataVector< OBS, int > &mask) |
Mask out elements of the vector where mask is > 0. More... | |
void | mask (const ObsVector &mask) |
Mask out elements of the vector where mask is a missing value. More... | |
ObsVector & | operator= (const ObsDataVector< OBS, float > &rhs) |
Assignment operator from rhs ObsDataVector<OBS, float> More... | |
void | save (const std::string &) const |
Save this ObsVector as group name in the ObsSpace. More... | |
void | read (const std::string &) |
Fill ObsVector with data with group name from the associated ObsSpace. More... | |
unsigned int | nobs () const |
Number of non-masked out observations (across all MPI tasks) More... | |
Static Public Member Functions | |
static const std::string | classname () |
Private Types | |
typedef OBS::ObsVector | ObsVector_ |
Private Member Functions | |
void | print (std::ostream &) const |
Private Attributes | |
std::unique_ptr< ObsVector_ > | data_ |
Holds observation vector (e.g. vector of observation values, or of computed H(x))
Definition at line 46 of file oops/interface/ObsVector.h.
|
private |
Definition at line 48 of file oops/interface/ObsVector.h.
|
explicit |
Creates vector from obsspace
. If name
is specified, reads the specified name
variable from obsspace
. Otherwise, zero vector is created.
Definition at line 123 of file oops/interface/ObsVector.h.
|
explicit |
Wraps an existing ObsVector_. This wrapping constructor doesn't need to be implemented in an ObsVector implementation.
obsvector | The vector to wrap. |
Definition at line 133 of file oops/interface/ObsVector.h.
oops::interface::ObsVector< OBS >::ObsVector | ( | const ObsVector< OBS > & | other | ) |
Copy constructor.
Definition at line 142 of file oops/interface/ObsVector.h.
oops::interface::ObsVector< OBS >::~ObsVector |
Destructor (defined explicitly for timing and tracing)
Definition at line 151 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::axpy | ( | const double & | zz, |
const ObsVector< OBS > & | rhs | ||
) |
Add zz
* rhs
to the ObsVector.
Definition at line 245 of file oops/interface/ObsVector.h.
|
inlinestatic |
Definition at line 51 of file oops/interface/ObsVector.h.
double oops::interface::ObsVector< OBS >::dot_product_with | ( | const ObsVector< OBS > & | other | ) | const |
Return the dot product between this ObsVector and another one other
.
Definition at line 275 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::invert |
Set each value in this ObsVector to its inverse.
Definition at line 255 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::mask | ( | const ObsDataVector< OBS, int > & | mask | ) |
Mask out elements of the vector where mask
is > 0.
Definition at line 286 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::mask | ( | const ObsVector< OBS > & | mask | ) |
Mask out elements of the vector where mask
is a missing value.
Definition at line 294 of file oops/interface/ObsVector.h.
unsigned int oops::interface::ObsVector< OBS >::nobs |
Number of non-masked out observations (across all MPI tasks)
Definition at line 322 of file oops/interface/ObsVector.h.
|
inline |
Accessor.
Definition at line 67 of file oops/interface/ObsVector.h.
|
inline |
Const accessor.
Definition at line 69 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::ones |
Set this ObsVector to ones (used in tests)
Definition at line 235 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator*= | ( | const double & | zz | ) |
Definition at line 170 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator*= | ( | const ObsVector< OBS > & | rhs | ) |
Definition at line 203 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator+= | ( | const ObsVector< OBS > & | rhs | ) |
Definition at line 181 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator-= | ( | const ObsVector< OBS > & | rhs | ) |
Definition at line 192 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator/= | ( | const ObsVector< OBS > & | rhs | ) |
Definition at line 214 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator= | ( | const ObsDataVector< OBS, float > & | rhs | ) |
Assignment operator from rhs
ObsDataVector<OBS, float>
Definition at line 302 of file oops/interface/ObsVector.h.
ObsVector< OBS > & oops::interface::ObsVector< OBS >::operator= | ( | const ObsVector< OBS > & | rhs | ) |
Linear algebra operators.
Definition at line 159 of file oops/interface/ObsVector.h.
Eigen::VectorXd oops::interface::ObsVector< OBS >::packEigen | ( | const ObsVector< OBS > & | mask | ) | const |
Pack observations local to this MPI task into an Eigen vector (excluding vector elements that are masked out: where mask
is a missing value)
Definition at line 346 of file oops/interface/ObsVector.h.
size_t oops::interface::ObsVector< OBS >::packEigenSize | ( | const ObsVector< OBS > & | mask | ) | const |
Number of non-masked out observations local to this MPI task (size of an Eigen vector returned by packEigen
)
Definition at line 357 of file oops/interface/ObsVector.h.
|
private |
Definition at line 328 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::random |
Set each value in this ObsVector to a random value.
Definition at line 265 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::read | ( | const std::string & | name | ) |
Fill ObsVector with data with group name
from the associated ObsSpace.
Definition at line 368 of file oops/interface/ObsVector.h.
double oops::interface::ObsVector< OBS >::rms |
Return this ObsVector rms.
Definition at line 311 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::save | ( | const std::string & | name | ) | const |
Save this ObsVector as group name
in the ObsSpace.
Definition at line 336 of file oops/interface/ObsVector.h.
void oops::interface::ObsVector< OBS >::zero |
Zero out this ObsVector.
Definition at line 225 of file oops/interface/ObsVector.h.
|
private |
Definition at line 118 of file oops/interface/ObsVector.h.