FV3 Bundle
RunFV3JEDI.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018 UCAR
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 SRC_RUN_RUNFV3JEDI_H_
9 #define SRC_RUN_RUNFV3JEDI_H_
10 
11 #include "oops/runs/Run.h"
12 #include "RunFV3JEDIFortran.h"
13 
14 namespace fv3jedi {
15 
16 /*!
17  * RunFV3JEDI encapsulates one FV3JEDI/OOPS run.
18  */
19 
20 // -----------------------------------------------------------------------------
21 
22 class RunFV3JEDI : public oops::Run {
23  public:
24  RunFV3JEDI(int, char **);
25  ~RunFV3JEDI();
26 };
27 
28 // -----------------------------------------------------------------------------
29 
30 } // namespace fv3jedi
31 #endif // SRC_RUN_RUNFV3JEDI_H_
RunFV3JEDI encapsulates one FV3JEDI/OOPS run.
Definition: RunFV3JEDI.h:22
RunFV3JEDI(int, char **)
Definition: RunFV3JEDI.cc:22
Run encapsulates one OOPS run.
Definition: Run.h:29