FV3-JEDI
fv3jediDirac.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2020 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 
9 #include "oops/runs/Dirac.h"
10 #include "oops/runs/Run.h"
11 #include "saber/oops/instantiateCovarFactory.h"
12 #include "saber/oops/instantiateLocalizationFactory.h"
13 #include "saber/oops/instantiateVariableChangeFactory.h"
14 
15 int main(int argc, char ** argv) {
16  oops::Run run(argc, argv);
17  saber::instantiateCovarFactory<fv3jedi::Traits>();
18  saber::instantiateLocalizationFactory<fv3jedi::Traits>();
19  saber::instantiateVariableChangeFactory<fv3jedi::Traits>();
20  oops::Dirac<fv3jedi::Traits> dir;
21  return run.execute(dir);
22 }
Traits.h
main
int main(int argc, char **argv)
Definition: fv3jediDirac.cc:15