Skip to content

Commit

Permalink
Per #1575, renamed PairDataEnsemble::subset_pairs() to subset_pairs_o…
Browse files Browse the repository at this point in the history
…bs_thresh() to be a little more explicit about things. I'll do the same for PairDataPoint using names subset_pairs_cnt_thresh() and subset_pairs_mpr_thresh().
  • Loading branch information
JohnHalleyGotway committed Mar 30, 2021
1 parent 2d08c43 commit cb00ea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion met/src/libcode/vx_statistics/pair_data_ensemble.cc
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ void PairDataEnsemble::compute_ssvar() {
//
////////////////////////////////////////////////////////////////////////

PairDataEnsemble PairDataEnsemble::subset_pairs(const SingleThresh &ot) const {
PairDataEnsemble PairDataEnsemble::subset_pairs_obs_thresh(const SingleThresh &ot) const {

// Check for no work to be done
if(ot.get_type() == thresh_na) return(*this);
Expand Down
2 changes: 1 addition & 1 deletion met/src/libcode/vx_statistics/pair_data_ensemble.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class PairDataEnsemble : public PairBase {
void compute_phist();
void compute_ssvar();

PairDataEnsemble subset_pairs(const SingleThresh &ot) const;
PairDataEnsemble subset_pairs_obs_thresh(const SingleThresh &ot) const;
};

////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit cb00ea4

Please sign in to comment.