Skip to content

Commit

Permalink
Per issue #2425, in do_stat_output, added code to for shc.set_mask. S…
Browse files Browse the repository at this point in the history
…L ci-skip-all
  • Loading branch information
Seth Linden committed Apr 27, 2023
1 parent e6caf33 commit 3931639
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/tools/tc_utils/tc_stat/tc_stat_job.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3853,6 +3853,15 @@ void TCStatJobRIRW::do_stat_output(ostream &out) {

shc.set_fcst_thresh(RIRWThreshADeck);
shc.set_obs_thresh(RIRWThreshBDeck);

if(OutValidMaskName.nonempty()) {
cout << "OutValidMaskName nonempty: " << OutValidMaskName << endl;
shc.set_mask(OutValidMaskName.c_str());
}
else {
cout << "OutValidMaskName is empty" << endl;
shc.set_mask(na_str);
}

//shc.set_vx_mask(...); // only is masking was specified for the job

Expand Down

0 comments on commit 3931639

Please sign in to comment.