IODA
ParameterTraitsFileFormat.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2021, Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef CORE_PARAMETERTRAITSFILEFORMAT_H_
9 #define CORE_PARAMETERTRAITSFILEFORMAT_H_
10 
11 #include <string>
12 #include <utility>
13 #include <vector>
14 
15 #include "ioda/core/FileFormat.h"
16 
17 #include "oops/util/parameters/ParameterTraits.h"
18 
19 namespace ioda {
20 
21 /// Helps with the conversion of FileFormat values to/from strings.
24  static constexpr char enumTypeName[] = "FileFormat";
25  static constexpr util::NamedEnumerator<EnumType> namedValues[] = {
26  { EnumType::AUTO, "auto" },
27  { EnumType::HDF5, "hdf5" },
28  { EnumType::ODB, "odb" }
29  };
30 };
31 
32 } // namespace ioda
33 
34 namespace oops {
35 
36 /// Specialization of ParameterTraits for FileFormat.
37 template <>
38 struct ParameterTraits<ioda::FileFormat> :
39  public EnumParameterTraits<ioda::FileFormatParameterTraitsHelper>
40 {};
41 
42 } // namespace oops
43 
44 #endif // CORE_PARAMETERTRAITSFILEFORMAT_H_
FileFormat
Observation file format.
Helps with the conversion of FileFormat values to/from strings.
static constexpr util::NamedEnumerator< EnumType > namedValues[]