Loading [MathJax]/jax/input/TeX/config.js
PISM, A Parallel Ice Sheet Model 2.2.2-d6b3a29ca committed by Constantine Khrulev on 2025-03-28
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Private Member Functions | Private Attributes | List of all members
pism::Vars Class Reference

A class for passing PISM variables from the core to other parts of the code (such as climate couplers). More...

#include <Vars.hh>

Public Member Functions

 Vars ()
 
void add (const array::Array &)
 Add an array::Array to the dictionary.
 
void add (const array::Array &, const std::string &name)
 Add an array::Array v using the name name.
 
void remove (const std::string &name)
 Removes a variable with the key name from the dictionary.
 
bool is_available (const std::string &name) const
 
const array::Arrayget (const std::string &name) const
 Returns a pointer to an array::Array containing variable name or NULL if that variable was not found.
 
const array::Scalarget_2d_scalar (const std::string &name) const
 
const array::Scalar1get_2d_scalar1 (const std::string &name) const
 
const array::Scalar2get_2d_scalar2 (const std::string &name) const
 
const array::Vectorget_2d_vector (const std::string &name) const
 
const array::CellTypeget_2d_cell_type (const std::string &name) const
 
const array::Array3Dget_3d_scalar (const std::string &name) const
 
std::set< std::string > keys () const
 Returns the set of keys (variable names) in the dictionary.
 
void add_shared (std::shared_ptr< array::Array >)
 
void add_shared (std::shared_ptr< array::Array >, const std::string &name)
 
bool is_available_shared (const std::string &name) const
 
std::shared_ptr< array::Arrayget_shared (const std::string &name) const
 
std::shared_ptr< array::Scalarget_2d_scalar_shared (const std::string &name) const
 
std::shared_ptr< array::Scalar1get_2d_scalar1_shared (const std::string &name) const
 
std::shared_ptr< array::Scalar2get_2d_scalar2_shared (const std::string &name) const
 
std::shared_ptr< array::Vectorget_2d_vector_shared (const std::string &name) const
 
std::shared_ptr< array::CellTypeget_2d_cell_type_shared (const std::string &name) const
 
std::shared_ptr< array::Array3Dget_3d_scalar_shared (const std::string &name) const
 
std::set< std::string > keys_shared () const
 

Private Member Functions

const array::Arrayget_internal (const std::string &name) const
 
std::shared_ptr< array::Arrayget_internal_shared (const std::string &name) const
 
 Vars (Vars const &)
 
Varsoperator= (Vars const &)
 

Private Attributes

std::map< std::string, const array::Array * > m_variables
 
std::map< std::string, std::string > m_standard_names
 
std::map< std::string, std::shared_ptr< array::Array > > m_variables_shared
 variables in shared ownership
 

Detailed Description

A class for passing PISM variables from the core to other parts of the code (such as climate couplers).

Definition at line 42 of file Vars.hh.


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