Skip to content

Commit

Permalink
Per #1788, since ss_index_name is in the StatJob class we no longer n…
Browse files Browse the repository at this point in the history
…eed to pass it around as an argument.
  • Loading branch information
JohnHalleyGotway committed Aug 26, 2021
1 parent 41a3d05 commit cde0be0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions met/src/tools/core/stat_analysis/aggr_stat_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3397,7 +3397,6 @@ void aggr_time_series_lines(LineDataFile &f, STATAnalysisJob &job,
////////////////////////////////////////////////////////////////////////

void aggr_ss_index(LineDataFile &f, STATAnalysisJob &job,
const ConcatString &name,
map<ConcatString, AggrSSIndexInfo> &m,
int &n_in, int &n_out) {
STATLine line;
Expand All @@ -3408,7 +3407,7 @@ void aggr_ss_index(LineDataFile &f, STATAnalysisJob &job,
//
// Store the index name
//
cur.job_info.name = name;
cur.job_info.ss_index_name = job.ss_index_name;

//
// Check that the -model option has been supplied exactly 2 times.
Expand All @@ -3427,7 +3426,7 @@ void aggr_ss_index(LineDataFile &f, STATAnalysisJob &job,
}

mlog << Debug(3)
<< "Computing " << cur.job_info.name << " for forecast model ("
<< "Computing " << cur.job_info.ss_index_name << " for forecast model ("
<< cur.job_info.fcst_model << ") versus reference model ("
<< cur.job_info.ref_model << ").\n";

Expand Down
1 change: 0 additions & 1 deletion met/src/tools/core/stat_analysis/aggr_stat_line.h
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ extern void aggr_time_series_lines(

extern void aggr_ss_index(
LineDataFile &, STATAnalysisJob &,
const ConcatString &,
map<ConcatString, AggrSSIndexInfo> &,
int &, int &);

Expand Down

0 comments on commit cde0be0

Please sign in to comment.