11 #ifndef TEST_INTERFACE_OBSVECTOR_H_
12 #define TEST_INTERFACE_OBSVECTOR_H_
19 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
21 #include "eckit/testing/Test.h"
26 #include "oops/util/dot_product.h"
35 typedef ObsTestsFixture<OBS> Test_;
38 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
39 std::unique_ptr<ObsVector_> ov(
new ObsVector_(Test_::obspace()[jj]));
41 oops::Log::test() <<
"Printing zero ObsVector: " << *ov << std::endl;
50 typedef ObsTestsFixture<OBS> Test_;
53 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
54 std::unique_ptr<ObsVector_> ov(
new ObsVector_(Test_::obspace()[jj]));
57 oops::Log::test() <<
"Printing random ObsVector: " << *ov << std::endl;
59 std::unique_ptr<ObsVector_> other(
new ObsVector_(*ov));
62 const double ov2 = dot_product(*ov, *ov);
63 const double other2 = dot_product(*other, *other);
65 EXPECT(ov2 == other2);
81 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
82 ObsVector_ ov(Test_::obspace()[jj]);
85 oops::Log::test() <<
"Printing random ObsVector: " << ov << std::endl;
87 ObsVector_ other(std::make_unique<typename OBS::ObsVector_>(ov->obsvector()),
88 Test_::obspace()[jj]);
90 const double ov2 = dot_product(ov, ov);
91 const double other2 = dot_product(other, other);
93 EXPECT(ov2 == other2);
106 const double zero = 0.0;
108 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
109 ObsVector_ ov1(Test_::obspace()[jj]);
112 const double zz = dot_product(ov1, ov1);
118 EXPECT(dot_product(ov2, ov1) == zero);
119 EXPECT(dot_product(ov2, ov2) == zero);
124 EXPECT(dot_product(ov3, ov3) == ov3.nobs());
132 const double tolerance = 1.0e-8;
133 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
134 ObsVector_ ov1(Test_::obspace()[jj]);
142 EXPECT(dot_product(ov2, ov2) < tolerance);
148 EXPECT(dot_product(ov2, ov2) < tolerance);
155 EXPECT(dot_product(ov2, ov2) < tolerance);
163 EXPECT(dot_product(ov2, ov2) < tolerance);
169 EXPECT(std::abs(dot_product(ov2, ov2) - ov2.nobs()) < tolerance);
177 const double tolerance = 1.0e-8;
178 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
179 ObsVector_ ov1(Test_::obspace()[jj]);
183 ObsVector_ ov2(Test_::obspace()[jj],
"test");
185 EXPECT(dot_product(ov2, ov2) < tolerance);
207 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
208 const ObsSpace_ & obspace = Test_::obspace()[jj];
210 ObsVector_ reference(obspace);
212 oops::Log::test() <<
"ObsVector before masking: " << reference << std::endl;
214 const size_t nobs_all = Test_::config(jj).getInt(
"reference global nobs");
215 EXPECT_EQUAL(reference.nobs(), nobs_all);
216 EXPECT(nobs_all > 0);
219 ObsDataVector_ unsetmask(obspace, obspace.obsvariables());
221 ObsVector_ with_unsetmask(reference);
222 with_unsetmask.mask(unsetmask);
223 oops::Log::test() <<
"ObsVector masked with all-zero-mask: " << with_unsetmask << std::endl;
224 EXPECT_EQUAL(with_unsetmask.nobs(), nobs_all);
225 with_unsetmask -= reference;
226 EXPECT_EQUAL(with_unsetmask.rms(), 0.0);
229 std::string maskvarname;
231 size_t nobs_after_mask = 0;
232 std::vector<size_t> nobs_after_mask_local(Test_::comm().size(), 0);
234 if (Test_::config(jj).
has(
"mask variable")) {
235 maskvarname = Test_::config(jj).getString(
"mask variable");
236 nobs_after_mask = Test_::config(jj).getUnsigned(
"reference global masked nobs");
237 nobs_after_mask_local = Test_::config(jj).getUnsignedVector(
"reference local masked nobs");
239 EXPECT_NOT_EQUAL(nobs_after_mask, nobs_all);
241 EXPECT_EQUAL(Test_::comm().size(), nobs_after_mask_local.size());
246 maskvarname =
"set_mask";
247 ObsVector_ tmp(obspace);
249 tmp.save(maskvarname);
251 ObsDataVector_ mask(obspace, obspace.obsvariables(), maskvarname);
252 ObsVector_ with_mask(reference);
253 with_mask.mask(mask);
254 oops::Log::test() <<
"ObsVector masked with " << maskvarname <<
" mask: " <<
255 with_mask << std::endl;
256 EXPECT_EQUAL(with_mask.nobs(), nobs_after_mask);
261 ObsVector_
test(with_mask);
263 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
267 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
271 EXPECT_EQUAL(
test.nobs(), nobs_all);
273 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
275 EXPECT_EQUAL(
test.nobs(), nobs_all);
277 EXPECT_EQUAL(with_mask.nobs(), nobs_after_mask);
280 EXPECT_EQUAL(
test.nobs(), nobs_all);
282 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
284 EXPECT_EQUAL(
test.nobs(), nobs_all);
286 EXPECT_EQUAL(with_mask.nobs(), nobs_after_mask);
289 EXPECT_EQUAL(
test.nobs(), nobs_all);
291 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
293 EXPECT_EQUAL(
test.nobs(), nobs_all);
295 EXPECT_EQUAL(with_mask.nobs(), nobs_after_mask);
298 EXPECT_EQUAL(
test.nobs(), nobs_all);
300 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
302 EXPECT_EQUAL(
test.nobs(), nobs_all);
304 EXPECT_EQUAL(with_mask.nobs(), nobs_after_mask);
307 EXPECT_EQUAL(
test.nobs(), nobs_all);
308 test.axpy(2.0, with_mask);
309 EXPECT_EQUAL(
test.nobs(), nobs_after_mask);
311 EXPECT_EQUAL(
test.nobs(), nobs_all);
312 with_mask.axpy(2.0,
test);
313 EXPECT_EQUAL(with_mask.nobs(), nobs_after_mask);
317 ObsVector_ maskvec =
test;
322 Eigen::VectorXd with_mask_vec =
test.packEigen(maskvec);
325 EXPECT_EQUAL(with_mask_vec.size(),
test.packEigenSize(maskvec));
326 oops::Log::debug() <<
"Local number of masked observations is: " <<
327 with_mask_vec.size() << std::endl;
329 EXPECT_EQUAL(with_mask_vec.size(), nobs_after_mask_local[Test_::comm().rank()]);
334 template <
typename OBS>
343 std::string
testid()
const override {
return "test::ObsVector<" + OBS::name() +
">";}
346 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
348 ts.emplace_back(
CASE(
"interface/ObsVector/testConstructor")
349 { testConstructor<OBS>(); });
350 ts.emplace_back(
CASE(
"interface/ObsVector/testCopyConstructor")
351 { testCopyConstructor<OBS>(); });
352 ts.emplace_back(
CASE(
"interface/ObsVector/testNotZero")
353 { testNotZero<OBS>(); });
354 ts.emplace_back(
CASE(
"interface/ObsVector/testLinearAlgebra")
355 { testLinearAlgebra<OBS>(); });
356 ts.emplace_back(
CASE(
"interface/ObsVector/testReadWrite")
357 { testReadWrite<OBS>(); });
358 ts.emplace_back(
CASE(
"interface/ObsVector/testMask")
359 { testMask<OBS>(); });
ObsDataVector is a vector templated on data type, in the observation space.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
std::string testid() const override
void clear() const override
ObsTestsFixture< OBS > Test_
void register_tests() const override
logical function has(this, var)
void testCopyConstructor()
void testMask()
Tests ObsVector::mask, ObsVector::packEigen and ObsVector::packEigenSize methods.
void testWrappingConstructor()
Test the constructor taking a std::unique_ptr<OBS::ObsVector>.
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.