Skip to content

Commit

Permalink
Per #1764 added write_orank_row() to do_hera_ens(). SL
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Linden committed Aug 6, 2021
1 parent 980ae26 commit f988405
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions met/src/tools/core/point_stat/point_stat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1749,6 +1749,23 @@ void do_hira_ens(int i_vx, const PairDataPoint *pd_ptr) {
txt_at[i_ecnt], i_txt_row[i_ecnt]);
} // end if ECNT

// Write out the ORANK line
if(conf_info.vx_opt[i_vx].output_flag[i_orank] != STATOutputType_None) {

cout << "Doing ORANK ensemble statistics" << endl;

// Compute ensemble statistics
hira_pd.compute_pair_vals(rng_ptr);

write_orank_row(shc, &hira_pd,
conf_info.vx_opt[i_vx].output_flag[i_orank],
stat_at, i_stat_row,
txt_at[i_orank], i_txt_row[i_orank]);

cout << "Check after write_orank_row" << endl;

} // end if ORANK

// Write out the RPS line
if(conf_info.vx_opt[i_vx].output_flag[i_rps] != STATOutputType_None) {

Expand Down

0 comments on commit f988405

Please sign in to comment.