Skip to content

Commit

Permalink
Per #2887, whitespace only changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Oct 9, 2024
1 parent d02eac6 commit 350b2af
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/tools/core/stat_analysis/aggr_stat_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ void aggr_summary_lines(LineDataFile &f, STATAnalysisJob &job,
//
// Update the map entries for each requested statistic
//
int n_add = 0;
int n_add = 0;
for(int i=0; i<req_col.n(); i++) {

//
Expand Down Expand Up @@ -967,7 +967,7 @@ void aggr_ctc_lines(LineDataFile &f, STATAnalysisJob &job,
// Sort the valid times
//
int n_ties;
int n = it->second.valid_ts.rank_array(n_ties);
int n = it->second.valid_ts.rank_array(n_ties);

if(n_ties > 0 || n != it->second.valid_ts.n()) {
mlog << Error << "\naggr_ctc_lines() -> "
Expand Down Expand Up @@ -1162,7 +1162,7 @@ void aggr_mctc_lines(LineDataFile &f, STATAnalysisJob &job,
// Sort the valid times
//
int n_ties;
int n = it->second.valid_ts.rank_array(n_ties);
int n = it->second.valid_ts.rank_array(n_ties);

if(n_ties > 0 || n != it->second.valid_ts.n()) {
mlog << Error << "\naggr_mctc_lines() -> "
Expand Down Expand Up @@ -1318,7 +1318,7 @@ void aggr_pct_lines(LineDataFile &f, STATAnalysisJob &job,
//
// Sort the valid times
//
int n_ties;
int n_ties;
int n = it->second.valid_ts.rank_array(n_ties);

if(n_ties > 0 || n != it->second.valid_ts.n()) {
Expand Down Expand Up @@ -1519,7 +1519,7 @@ void aggr_psum_lines(LineDataFile &f, STATAnalysisJob &job,
// Sort the valid times
//
int n_ties;
int n = it->second.valid_ts.rank_array(n_ties);
int n = it->second.valid_ts.rank_array(n_ties);

if(n_ties > 0 || n != it->second.valid_ts.n()) {
mlog << Error << "\naggr_psum_lines() -> "
Expand Down Expand Up @@ -3101,9 +3101,9 @@ void aggr_orank_lines(LineDataFile &f, STATAnalysisJob &job,

// Store BIAS_RATIO terms
int n_ge_obs;
int n_lt_obs;
int n_lt_obs;
double me_ge_obs;
double me_lt_obs;
double me_lt_obs;
compute_bias_ratio_terms(
cur.obs, cur.ens_na,
n_ge_obs, me_ge_obs,
Expand All @@ -3115,7 +3115,7 @@ void aggr_orank_lines(LineDataFile &f, STATAnalysisJob &job,

// Compute observation error log scores
double v_conv;
double v_corr;
double v_corr;
compute_obs_error_log_scores(
cur.ens_mean, cur.spread, cur.obs, oerr_var,
v_conv, v_corr);
Expand Down

0 comments on commit 350b2af

Please sign in to comment.