FV3-JEDI
Utilities.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 FV3JEDI_UTILITIES_UTILITIES_H_
9 #define FV3JEDI_UTILITIES_UTILITIES_H_
10 
11 #include "eckit/config/Configuration.h"
12 #include "eckit/mpi/Comm.h"
13 
14 namespace eckit {
15  class Configuration;
16 }
17 
18 namespace fv3jedi {
19 
20  void stageFMSFiles(const eckit::Configuration &, const eckit::mpi::Comm & comm);
21  void stageFv3Files(const eckit::Configuration &, const eckit::mpi::Comm & comm);
22  void removeFv3Files(const eckit::mpi::Comm & comm);
23 
24  void generateGeomFv3Conf(const eckit::Configuration &, const eckit::mpi::Comm & comm);
25 
26  void delete_file(const char *);
27 
28 } // namespace fv3jedi
29 
30 #endif // FV3JEDI_UTILITIES_UTILITIES_H_
eckit
Definition: FieldsMetadata.h:25
fv3jedi::stageFMSFiles
void stageFMSFiles(const eckit::Configuration &conf, const eckit::mpi::Comm &comm)
Definition: Utilities.cc:32
fv3jedi::stageFv3Files
void stageFv3Files(const eckit::Configuration &conf, const eckit::mpi::Comm &comm)
Definition: Utilities.cc:53
fv3jedi
Configuration files should be formatted as e.g.
Definition: ErrorCovariance.cc:20
fv3jedi::generateGeomFv3Conf
void generateGeomFv3Conf(const eckit::Configuration &conf, const eckit::mpi::Comm &comm)
Definition: Utilities.cc:160
fv3jedi::removeFv3Files
void removeFv3Files(const eckit::mpi::Comm &comm)
Definition: Utilities.cc:130
fv3jedi::delete_file
void delete_file(const char *fileName)
Definition: Utilities.cc:149