IODA
MergeMethods.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Crown copyright 2021, Met Office
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 /// \file MergeMethods.h
9 /// \brief Utility functions and structs for combining multiple variables into one
10 /// \todo The method for merging identical columns will be added to this header.
11 
12 #include <string>
13 #include <vector>
14 
15 #include "ioda/Layout.h"
16 #include "ioda/defs.h"
17 
18 namespace ioda {
19 
22  outputName(name) {}
23  std::string outputName;
24 
27 
29 
30  std::vector<std::string> inputVariableNames;
31 };
32 
33 } // namespace ioda
Contains definitions for how data are arranged in ioda internally.
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
ComplementaryVariableCreationParameters(std::string name)
Definition: MergeMethods.h:21
ioda::detail::DataLayoutPolicy::MergeMethod mergeMethod
Definition: MergeMethods.h:28
std::vector< std::string > inputVariableNames
Definition: MergeMethods.h:30