OOPS
lorenz95::ObsVec1D Class Reference

Vector in observation space. More...

#include <ObsVec1D.h>

Inheritance diagram for lorenz95::ObsVec1D:
Collaboration diagram for lorenz95::ObsVec1D:

Public Member Functions

 ObsVec1D (const ObsTable &, const std::string &name="")
 
 ObsVec1D (const ObsVec1D &)
 
 ~ObsVec1D ()=default
 
ObsVec1Doperator= (const ObsVec1D &)
 
ObsVec1Doperator*= (const double &)
 
ObsVec1Doperator+= (const ObsVec1D &)
 
ObsVec1Doperator-= (const ObsVec1D &)
 
ObsVec1Doperator*= (const ObsVec1D &)
 
ObsVec1Doperator/= (const ObsVec1D &)
 
Eigen::VectorXd packEigen (const ObsVec1D &) const
 
size_t packEigenSize (const ObsVec1D &) const
 
size_t size () const
 
const double & operator[] (const std::size_t ii) const
 
double & operator[] (const std::size_t ii)
 
void zero ()
 
void ones ()
 set all values to ones (for tests) More...
 
void axpy (const double &, const ObsVec1D &)
 
void invert ()
 
void random ()
 
double dot_product_with (const ObsVec1D &) const
 
double rms () const
 
void mask (const ObsData1D< int > &)
 
void mask (const ObsVec1D &)
 
ObsVec1Doperator= (const ObsData1D< float > &)
 
unsigned int nobs () const
 
const ObsTableobsdb () const
 
void save (const std::string &) const
 
void read (const std::string &)
 
const double & missing () const
 

Static Public Member Functions

static const std::string classname ()
 

Private Member Functions

void print (std::ostream &) const
 

Private Attributes

const ObsTableobsdb_
 
std::vector< double > data_
 
const double missing_
 

Detailed Description

Vector in observation space.

ObsVec1D is implemented as an STL vector

Definition at line 32 of file ObsVec1D.h.

Constructor & Destructor Documentation

◆ ObsVec1D() [1/2]

lorenz95::ObsVec1D::ObsVec1D ( const ObsTable ot,
const std::string &  name = "" 
)
explicit

Definition at line 26 of file ObsVec1D.cc.

Here is the call graph for this function:

◆ ObsVec1D() [2/2]

lorenz95::ObsVec1D::ObsVec1D ( const ObsVec1D other)

Definition at line 34 of file ObsVec1D.cc.

◆ ~ObsVec1D()

lorenz95::ObsVec1D::~ObsVec1D ( )
default

Member Function Documentation

◆ axpy()

void lorenz95::ObsVec1D::axpy ( const double &  zz,
const ObsVec1D rhs 
)

Definition at line 116 of file ObsVec1D.cc.

◆ classname()

static const std::string lorenz95::ObsVec1D::classname ( )
inlinestatic

Definition at line 35 of file ObsVec1D.h.

◆ dot_product_with()

double lorenz95::ObsVec1D::dot_product_with ( const ObsVec1D other) const

Definition at line 131 of file ObsVec1D.cc.

◆ invert()

void lorenz95::ObsVec1D::invert ( )

Definition at line 110 of file ObsVec1D.cc.

◆ mask() [1/2]

void lorenz95::ObsVec1D::mask ( const ObsData1D< int > &  mask)

Definition at line 159 of file ObsVec1D.cc.

Here is the caller graph for this function:

◆ mask() [2/2]

void lorenz95::ObsVec1D::mask ( const ObsVec1D mask)

Definition at line 165 of file ObsVec1D.cc.

Here is the call graph for this function:

◆ missing()

const double& lorenz95::ObsVec1D::missing ( ) const
inline

Definition at line 75 of file ObsVec1D.h.

Here is the caller graph for this function:

◆ nobs()

unsigned int lorenz95::ObsVec1D::nobs ( ) const

Definition at line 155 of file ObsVec1D.cc.

◆ obsdb()

const ObsTable& lorenz95::ObsVec1D::obsdb ( ) const
inline

Definition at line 69 of file ObsVec1D.h.

◆ ones()

void lorenz95::ObsVec1D::ones ( )

set all values to ones (for tests)

Definition at line 106 of file ObsVec1D.cc.

◆ operator*=() [1/2]

ObsVec1D & lorenz95::ObsVec1D::operator*= ( const double &  zz)

Definition at line 47 of file ObsVec1D.cc.

◆ operator*=() [2/2]

ObsVec1D & lorenz95::ObsVec1D::operator*= ( const ObsVec1D rhs)

Definition at line 78 of file ObsVec1D.cc.

◆ operator+=()

ObsVec1D & lorenz95::ObsVec1D::operator+= ( const ObsVec1D rhs)

Definition at line 54 of file ObsVec1D.cc.

◆ operator-=()

ObsVec1D & lorenz95::ObsVec1D::operator-= ( const ObsVec1D rhs)

Definition at line 66 of file ObsVec1D.cc.

◆ operator/=()

ObsVec1D & lorenz95::ObsVec1D::operator/= ( const ObsVec1D rhs)

Definition at line 90 of file ObsVec1D.cc.

◆ operator=() [1/2]

ObsVec1D & lorenz95::ObsVec1D::operator= ( const ObsData1D< float > &  rhs)

Definition at line 171 of file ObsVec1D.cc.

◆ operator=() [2/2]

ObsVec1D & lorenz95::ObsVec1D::operator= ( const ObsVec1D rhs)

Definition at line 40 of file ObsVec1D.cc.

◆ operator[]() [1/2]

double& lorenz95::ObsVec1D::operator[] ( const std::size_t  ii)
inline

Definition at line 53 of file ObsVec1D.h.

◆ operator[]() [2/2]

const double& lorenz95::ObsVec1D::operator[] ( const std::size_t  ii) const
inline

Definition at line 52 of file ObsVec1D.h.

◆ packEigen()

Eigen::VectorXd lorenz95::ObsVec1D::packEigen ( const ObsVec1D mask) const

Definition at line 187 of file ObsVec1D.cc.

Here is the call graph for this function:

◆ packEigenSize()

size_t lorenz95::ObsVec1D::packEigenSize ( const ObsVec1D mask) const

Definition at line 198 of file ObsVec1D.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print()

void lorenz95::ObsVec1D::print ( std::ostream &  os) const
private

Definition at line 212 of file ObsVec1D.cc.

◆ random()

void lorenz95::ObsVec1D::random ( )

Definition at line 127 of file ObsVec1D.cc.

Here is the call graph for this function:

◆ read()

void lorenz95::ObsVec1D::read ( const std::string &  name)

Definition at line 208 of file ObsVec1D.cc.

Here is the call graph for this function:

◆ rms()

double lorenz95::ObsVec1D::rms ( ) const

Definition at line 142 of file ObsVec1D.cc.

◆ save()

void lorenz95::ObsVec1D::save ( const std::string &  name) const

Definition at line 183 of file ObsVec1D.cc.

Here is the call graph for this function:

◆ size()

size_t lorenz95::ObsVec1D::size ( ) const
inline

Definition at line 51 of file ObsVec1D.h.

◆ zero()

void lorenz95::ObsVec1D::zero ( )

Definition at line 102 of file ObsVec1D.cc.

Member Data Documentation

◆ data_

std::vector<double> lorenz95::ObsVec1D::data_
private

Definition at line 81 of file ObsVec1D.h.

◆ missing_

const double lorenz95::ObsVec1D::missing_
private

Definition at line 82 of file ObsVec1D.h.

◆ obsdb_

const ObsTable& lorenz95::ObsVec1D::obsdb_
private

Definition at line 80 of file ObsVec1D.h.


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