IODA
Dimensions.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \addtogroup ioda_cxx_variable
9  * \addtogroup ioda_cxx_attribute
10  * @{
11  * \file Dimensions.h
12  * \brief Describe the dimensions of a ioda::Attribute or ioda::Variable.
13  */
14 #include <vector>
15 
16 #include "ioda/defs.h"
17 
18 namespace ioda {
19 /// \brief Describes the dimensions of an Attribute or Variable.
20 /// \ingroup ioda_cxx_variable
21 /// \ingroup ioda_cxx_attribute
22 struct Dimensions {
23  std::vector<Dimensions_t> dimsCur; ///< The dimensions of the data.
24  std::vector<Dimensions_t> dimsMax; ///< This must always equal dimsCur for Attribute.
25  Dimensions_t dimensionality; ///< The dimensionality (rank) of the data.
26  Dimensions_t numElements; ///< The number of elements of data (PROD(dimsCur)).
27  /// Convenient constructor function.
28  Dimensions(const std::vector<Dimensions_t>& dimscur, const std::vector<Dimensions_t>& dimsmax,
29  Dimensions_t dality, Dimensions_t np)
30  : dimsCur(dimscur), dimsMax(dimsmax), dimensionality(dality), numElements(np) {}
32 };
33 } // namespace ioda
34 
35 /// @}
Common preprocessor definitions used throughout IODA.
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Definition: Dimensions.h:23
Dimensions(const std::vector< Dimensions_t > &dimscur, const std::vector< Dimensions_t > &dimsmax, Dimensions_t dality, Dimensions_t np)
Convenient constructor function.
Definition: Dimensions.h:28
Dimensions_t numElements
Definition: Dimensions.h:26
Dimensions_t dimensionality
The dimensionality (rank) of the data.
Definition: Dimensions.h:25
std::vector< Dimensions_t > dimsMax
This must always equal dimsCur for Attribute.
Definition: Dimensions.h:24