diff --git a/met/src/tools/core/stat_analysis/aggr_stat_line.cc b/met/src/tools/core/stat_analysis/aggr_stat_line.cc index 26994c9114..0cd52dd43c 100644 --- a/met/src/tools/core/stat_analysis/aggr_stat_line.cc +++ b/met/src/tools/core/stat_analysis/aggr_stat_line.cc @@ -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 &m, int &n_in, int &n_out) { STATLine line; @@ -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. @@ -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"; diff --git a/met/src/tools/core/stat_analysis/aggr_stat_line.h b/met/src/tools/core/stat_analysis/aggr_stat_line.h index d07f9a7d87..9cf72aeb2f 100644 --- a/met/src/tools/core/stat_analysis/aggr_stat_line.h +++ b/met/src/tools/core/stat_analysis/aggr_stat_line.h @@ -295,7 +295,6 @@ extern void aggr_time_series_lines( extern void aggr_ss_index( LineDataFile &, STATAnalysisJob &, - const ConcatString &, map &, int &, int &);