OOPS
oops::ObsDataVector< OBS, DATATYPE > Class Template Reference

ObsDataVector is a vector templated on data type, in the observation space. More...

#include <ObsDataVector_head.h>

Inheritance diagram for oops::ObsDataVector< OBS, DATATYPE >:
Collaboration diagram for oops::ObsDataVector< OBS, DATATYPE >:

Public Member Functions

 ObsDataVector (const ObsSpace< OBS > &os, const Variables &vars, const std::string name="")
 
 ObsDataVector (const ObsDataVector &other)
 Copy constructor from other. More...
 
 ObsDataVector (ObsVector< OBS > &other)
 
 ~ObsDataVector ()
 Destructor (defined explicitly for timing and tracing) More...
 
ObsDataVec_obsdatavector ()
 Accessor to the data. More...
 
const ObsDataVec_obsdatavector () const
 const accessor to the data More...
 
std::shared_ptr< ObsDataVec_obsdatavectorptr ()
 Accessor returning pointer to the data. More...
 
std::shared_ptr< const ObsDataVec_obsdatavectorptr () const
 const accessor returning pointer to the data More...
 
ObsDataVectoroperator= (const ObsDataVector &)
 Assignment operator. More...
 
void zero ()
 Zero out this ObsDataVector. More...
 
void mask (const ObsDataVector< OBS, int > &qc)
 
unsigned int nobs () const
 Return the number of observations that aren't set to missing, across all MPI tasks. More...
 
void read (const std::string &name)
 Fill ObsDataVector with data with group name from the associated ObsSpace. More...
 
void save (const std::string &name) const
 Save this ObsDataVector as group name in the ObsSpace. More...
 

Static Public Member Functions

static const std::string classname ()
 

Private Types

typedef OBS::template ObsDataVector< DATATYPE > ObsDataVec_
 

Private Member Functions

void print (std::ostream &) const
 

Private Attributes

std::shared_ptr< ObsDataVec_data_
 Pointer to the ObsDataVector implementation. More...
 

Detailed Description

template<typename OBS, typename DATATYPE>
class oops::ObsDataVector< OBS, DATATYPE >

ObsDataVector is a vector templated on data type, in the observation space.

oops currently uses ObsDataVector<int> and ObsDataVector<float>);

Definition at line 31 of file ObsDataVector_head.h.

Member Typedef Documentation

◆ ObsDataVec_

template<typename OBS , typename DATATYPE >
typedef OBS::template ObsDataVector<DATATYPE> oops::ObsDataVector< OBS, DATATYPE >::ObsDataVec_
private

Definition at line 33 of file ObsDataVector_head.h.

Constructor & Destructor Documentation

◆ ObsDataVector() [1/3]

template<typename OBS , typename DATATYPE >
oops::ObsDataVector< OBS, DATATYPE >::ObsDataVector ( const ObsSpace< OBS > &  os,
const Variables vars,
const std::string  name = "" 
)

Constructor for specified ObsSpace os, with variables. If the group name is specified, the data is read from ObsSpace for specified variables and group. Otherwise ObsDataVector is allocated for specified variables and filled with zeros.

Definition at line 29 of file oops/interface/ObsDataVector.h.

Here is the call graph for this function:

◆ ObsDataVector() [2/3]

template<typename OBS , typename DATATYPE >
oops::ObsDataVector< OBS, DATATYPE >::ObsDataVector ( const ObsDataVector< OBS, DATATYPE > &  other)

Copy constructor from other.

Definition at line 40 of file oops/interface/ObsDataVector.h.

Here is the call graph for this function:

◆ ObsDataVector() [3/3]

template<typename OBS , typename DATATYPE >
oops::ObsDataVector< OBS, DATATYPE >::ObsDataVector ( ObsVector< OBS > &  other)
explicit

Constructor from other ObsVector. ObsDataVector is created with variables from ObsVector and assigned ObsVector values. This is only well defined for numeric DATATYPE.

Definition at line 48 of file oops/interface/ObsDataVector.h.

Here is the call graph for this function:

◆ ~ObsDataVector()

template<typename OBS , typename DATATYPE >
oops::ObsDataVector< OBS, DATATYPE >::~ObsDataVector

Destructor (defined explicitly for timing and tracing)

Definition at line 56 of file oops/interface/ObsDataVector.h.

Member Function Documentation

◆ classname()

template<typename OBS , typename DATATYPE >
static const std::string oops::ObsDataVector< OBS, DATATYPE >::classname ( )
inlinestatic

Definition at line 36 of file ObsDataVector_head.h.

Here is the caller graph for this function:

◆ mask()

template<typename OBS , typename DATATYPE >
void oops::ObsDataVector< OBS, DATATYPE >::mask ( const ObsDataVector< OBS, int > &  qc)

Mask values by reading another ObsDataVector qc that has the same variables and contains the masking information. Elements of this corresponding to non-zero elements of qc are set to missing.

Definition at line 81 of file oops/interface/ObsDataVector.h.

Here is the call graph for this function:

◆ nobs()

template<typename OBS , typename DATATYPE >
unsigned int oops::ObsDataVector< OBS, DATATYPE >::nobs ( ) const
inline

Return the number of observations that aren't set to missing, across all MPI tasks.

Definition at line 70 of file ObsDataVector_head.h.

◆ obsdatavector() [1/2]

template<typename OBS , typename DATATYPE >
ObsDataVec_& oops::ObsDataVector< OBS, DATATYPE >::obsdatavector ( )
inline

Accessor to the data.

Definition at line 51 of file ObsDataVector_head.h.

Here is the caller graph for this function:

◆ obsdatavector() [2/2]

template<typename OBS , typename DATATYPE >
const ObsDataVec_& oops::ObsDataVector< OBS, DATATYPE >::obsdatavector ( ) const
inline

const accessor to the data

Definition at line 53 of file ObsDataVector_head.h.

◆ obsdatavectorptr() [1/2]

template<typename OBS , typename DATATYPE >
std::shared_ptr<ObsDataVec_> oops::ObsDataVector< OBS, DATATYPE >::obsdatavectorptr ( )
inline

Accessor returning pointer to the data.

Definition at line 56 of file ObsDataVector_head.h.

◆ obsdatavectorptr() [2/2]

template<typename OBS , typename DATATYPE >
std::shared_ptr<const ObsDataVec_> oops::ObsDataVector< OBS, DATATYPE >::obsdatavectorptr ( ) const
inline

const accessor returning pointer to the data

Definition at line 58 of file ObsDataVector_head.h.

◆ operator=()

template<typename OBS , typename DATATYPE >
ObsDataVector< OBS, DATATYPE > & oops::ObsDataVector< OBS, DATATYPE >::operator= ( const ObsDataVector< OBS, DATATYPE > &  rhs)

Assignment operator.

Definition at line 64 of file oops/interface/ObsDataVector.h.

◆ print()

template<typename OBS , typename DATATYPE >
void oops::ObsDataVector< OBS, DATATYPE >::print ( std::ostream &  os) const
private

Definition at line 89 of file oops/interface/ObsDataVector.h.

◆ read()

template<typename OBS , typename DATATYPE >
void oops::ObsDataVector< OBS, DATATYPE >::read ( const std::string &  name)

Fill ObsDataVector with data with group name from the associated ObsSpace.

Definition at line 97 of file oops/interface/ObsDataVector.h.

◆ save()

template<typename OBS , typename DATATYPE >
void oops::ObsDataVector< OBS, DATATYPE >::save ( const std::string &  name) const

Save this ObsDataVector as group name in the ObsSpace.

Definition at line 105 of file oops/interface/ObsDataVector.h.

◆ zero()

template<typename OBS , typename DATATYPE >
void oops::ObsDataVector< OBS, DATATYPE >::zero

Zero out this ObsDataVector.

Definition at line 73 of file oops/interface/ObsDataVector.h.

Member Data Documentation

◆ data_

template<typename OBS , typename DATATYPE >
std::shared_ptr<ObsDataVec_> oops::ObsDataVector< OBS, DATATYPE >::data_
private

Pointer to the ObsDataVector implementation.

Definition at line 80 of file ObsDataVector_head.h.


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