OOPS
qg_obsvec_random_f.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 "model/ObsSpaceQG.h"
10 #include "oops/util/Random.h"
11 
12 // -----------------------------------------------------------------------------
13 namespace qg {
14 // -----------------------------------------------------------------------------
15 
16 void qg_obsvec_random_f(const ObsSpaceQG & odb, const int & nn, double * xx) {
17  util::NormalDistribution<double> dist(nn, 0.0, 1.0, odb.getSeed());
18  for (int jj = 0; jj < nn; ++jj) xx[jj] = dist[jj];
19 }
20 
21 // -----------------------------------------------------------------------------
22 
23 } // namespace qg
int64_t getSeed() const
Definition: ObsSpaceBase.h:58
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
The namespace for the qg model.
void qg_obsvec_random_f(const ObsSpaceQG &odb, const int &nn, double *xx)