Skip to content

Commit 1c5cc2e

Browse files
Fix for ensmean option in gdas.x (#1369)
When I added `ensmean` as an option, I didn't do it correctly... this PR should allow it to actually work.
1 parent 6bc2760 commit 1c5cc2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mains/gdas.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ int runApp(int argc, char** argv, const std::string traits, const std::string ap
5656

5757
apps["converttostructuredgrid"] = []() {
5858
return std::make_unique<oops::ConvertToStructuredGrid<Traits>>();
59-
};
59+
};
6060
apps["convertstate"] = []() {
6161
return std::make_unique<oops::ConvertState<Traits>>();
6262
};
@@ -106,6 +106,7 @@ int main(int argc, char ** argv) {
106106
const std::set<std::string> validApps = {
107107
"converttostructuredgrid",
108108
"convertstate",
109+
"ensmean",
109110
"hofx4d",
110111
"localensembleda",
111112
"variational"

0 commit comments

Comments
 (0)