Skip to content

Commit

Permalink
Fix for ensmean option in gdas.x (#1369)
Browse files Browse the repository at this point in the history
When I added `ensmean` as an option, I didn't do it correctly... this PR
should allow it to actually work.
  • Loading branch information
CoryMartin-NOAA authored Nov 13, 2024
1 parent 6bc2760 commit 1c5cc2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mains/gdas.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int runApp(int argc, char** argv, const std::string traits, const std::string ap

apps["converttostructuredgrid"] = []() {
return std::make_unique<oops::ConvertToStructuredGrid<Traits>>();
};
};
apps["convertstate"] = []() {
return std::make_unique<oops::ConvertState<Traits>>();
};
Expand Down Expand Up @@ -106,6 +106,7 @@ int main(int argc, char ** argv) {
const std::set<std::string> validApps = {
"converttostructuredgrid",
"convertstate",
"ensmean",
"hofx4d",
"localensembleda",
"variational"
Expand Down

0 comments on commit 1c5cc2e

Please sign in to comment.