Skip to content

Commit

Permalink
Per #2882, correct SEEPS column name lookups
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Sep 23, 2024
1 parent 4ae932f commit eb40c5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/tools/core/stat_analysis/parse_stat_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -600,12 +600,12 @@ void parse_seeps_line(STATLine &l, SeepsAggScore &agg_score) {

agg_score.n_obs = atoi(l.get_item("TOTAL"));

agg_score.s_odfl = atoi(l.get_item("S_ODFL"));
agg_score.s_odfh = atoi(l.get_item("S_ODFH"));
agg_score.s_olfd = atof(l.get_item("S_OLFD"));
agg_score.s_olfh = atof(l.get_item("S_OLFH"));
agg_score.s_ohfd = atof(l.get_item("S_OHFD"));
agg_score.s_ohfl = atof(l.get_item("S_OHFL"));
agg_score.s_odfl = atoi(l.get_item("ODFL"));
agg_score.s_odfh = atoi(l.get_item("ODFH"));
agg_score.s_olfd = atof(l.get_item("OLFD"));
agg_score.s_olfh = atof(l.get_item("OLFH"));
agg_score.s_ohfd = atof(l.get_item("OHFD"));
agg_score.s_ohfl = atof(l.get_item("OHFL"));

agg_score.pf1 = atof(l.get_item("PF1"));
agg_score.pf2 = atof(l.get_item("PF2"));
Expand Down

0 comments on commit eb40c5d

Please sign in to comment.