diff --git a/met/src/tools/core/wavelet_stat/wavelet_stat.cc b/met/src/tools/core/wavelet_stat/wavelet_stat.cc index 677a0d7de3..c2dbc61635 100644 --- a/met/src/tools/core/wavelet_stat/wavelet_stat.cc +++ b/met/src/tools/core/wavelet_stat/wavelet_stat.cc @@ -939,10 +939,8 @@ void do_intensity_scale(const NumArray &f_na, const NumArray &o_na, int bnd, row, col; int i, j, k; ConcatString fcst_thresh_str, obs_thresh_str; + bool apply_fcst_thresh, apply_obs_thresh; - int apply_fcst_thresh = 1; - int apply_obs_thresh = 1; - // Check the NumArray lengths n = f_na.n(); if(n != o_na.n()) { @@ -997,19 +995,22 @@ void do_intensity_scale(const NumArray &f_na, const NumArray &o_na, // Apply each threshold for(i=0; i " - << "Skipping thresholding for either the forecast (" - << fcat_ta[i][j].get_str() << ") or observation (" << ocat_ta[i][j].get_str() - << ") but not the other. This may produce unexpected results!\n\n"; + << "Skipping thresholding for the forecast (" << fcat_ta[i][j].get_str() + << ") or observation (" << ocat_ta[i][j].get_str() + << ") but not the other may produce unexpected results!\n\n"; } }