IODA
ODC.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 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 /*! \defgroup ioda_cxx_engines_pub_ODC ODB / ODC Engine
9  * \brief ODB / ODC Engine
10  * \ingroup ioda_cxx_engines_pub
11  *
12  * @{
13  * \file ODC.h
14  * \brief ODB / ODC engine
15  */
16 
17 #include "../defs.h"
18 #include "ObsStore.h"
19 #include "../Group.h"
20 
21 namespace ioda {
22 class Group;
23 class ObsGroup;
24 
25 namespace Engines {
26 /// \brief Functions that are helpful in creating a new ioda::Group that is imported from an ODB database.
27 namespace ODC {
28 
29 /// \brief Encapsulate the parameters to make calling simpler.
30 /// \todo Add a conversion function from the oops::Parameters classes.
31 /// \ingroup ioda_cxx_engines_pub_ODC
33  /// \brief The name of the database "file" to open.
34  std::string filename;
35  std::string mappingFile;
36  std::string queryFile;
37 };
38 
39 /// \brief Import an ODB file.
40 /// \ingroup ioda_cxx_engines_pub_ODC
41 /// \param emptyStorageGroup is the initial (empty) group, provided
42 /// by another engine (ObsStore) that will be populated with the
43 /// ODC data.
45  Group emptyStorageGroup = ioda::Engines::ObsStore::createRootGroup());
46 
47 } // namespace ODC
48 } // namespace Engines
49 } // namespace ioda
50 
51 /// @}
ObsStore engine.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL ObsGroup openFile(const ODC_Parameters &params, Group emptyStorageGroup=ioda::Engines::ObsStore::createRootGroup())
Import an ODB file.
Definition: ODC.cpp:56
IODA_DL Group createRootGroup()
Create a ioda::Group backed by an OsbStore Group object.
Definition: ObsStore.cpp:24
Encapsulate the parameters to make calling simpler.
Definition: ODC.h:32
std::string filename
The name of the database "file" to open.
Definition: ODC.h:34