8 #ifndef OOPS_RUNS_DIFFSTATES_H_
9 #define OOPS_RUNS_DIFFSTATES_H_
14 #include "eckit/config/LocalConfiguration.h"
15 #include "eckit/exception/Exceptions.h"
21 #include "oops/util/DateTime.h"
22 #include "oops/util/Duration.h"
23 #include "oops/util/Logger.h"
38 int execute(
const eckit::Configuration & fullConfig)
const {
40 const eckit::LocalConfiguration stateResolConf(fullConfig,
"state geometry");
43 const eckit::LocalConfiguration incResolConf(fullConfig,
"increment geometry");
47 const eckit::LocalConfiguration stateConf1(fullConfig,
"state1");
48 State_ xx1(stateResol, stateConf1);
49 Log::test() <<
"Input state 1: " << xx1 << std::endl;
52 const eckit::LocalConfiguration stateConf2(fullConfig,
"state2");
53 State_ xx2(stateResol, stateConf2);
54 Log::test() <<
"Input state 2: " << xx2 << std::endl;
64 const eckit::LocalConfiguration outputConfig(fullConfig,
"output");
65 dx.
write(outputConfig);
67 Log::test() <<
"Output increment: " << dx << std::endl;
74 return "oops::DiffStates<" + MODEL::name() +
">";
const eckit::mpi::Comm & getComm() const
Increment< MODEL > Increment_
Geometry< MODEL > Geometry_
int execute(const eckit::Configuration &fullConfig) const
std::string appname() const
DiffStates(const eckit::mpi::Comm &comm=oops::mpi::world())
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
State class used in oops; subclass of interface class interface::State.
void diff(const State_ &state1, const State_ &state2)
Set this Increment to be difference between state1 and state2.
void write(const eckit::Configuration &) const
Write this Increment out to file.
const util::DateTime validTime() const
Accessor to the time of this State.
const Variables & variables() const
Accessor to variables associated with this State.
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
The namespace for the main oops code.