Skip to content

Commit

Permalink
replace params with local configration in soca utility gdas_postproci…
Browse files Browse the repository at this point in the history
…ncr (#589)
  • Loading branch information
RussTreadon-NOAA committed Aug 29, 2023
1 parent 9fa348f commit 257c209
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions utils/soca/gdas_postprocincr.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,9 @@ class PostProcIncr {
return socaIncr;
}
oops::Log::info() << "====== applying specified change of variables" << std::endl;
soca::LinearVariableChangeParameters params;
params.deserialize(lvcConfig_);
oops::Log::info() << params << std::endl;
soca::LinearVariableChange lvc(this->geom_, params);
oops::Log::info() << lvcConfig_ << std::endl;
eckit::LocalConfiguration lvcConfig_;
soca::LinearVariableChange lvc(this->geom_, lvcConfig_);
oops::Log::info() << "traj: " << xTraj_ << std::endl;
lvc.changeVarTraj(xTraj_, socaIncrVar_);
lvc.changeVarTL(socaIncr, socaIncrVar_);
Expand Down

0 comments on commit 257c209

Please sign in to comment.