Skip to content

Commit

Permalink
Per #2022, set ALPHA header column for VCNT output from Stat-Analysis.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jun 14, 2022
1 parent e5ccff5 commit dc37869
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tools/core/stat_analysis/stat_analysis_job.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,9 @@ void write_job_aggr_psum(STATAnalysisJob &job, STATLineType lt,
shc = it->second.hdr.get_shc(it->first, job.by_column,
job.hdr_name, job.hdr_value, lt);
if(job.stat_out) {
if(lt == stat_cnt || lt == stat_nbrcnt) shc.set_alpha(job.out_alpha);
if(lt == stat_cnt || lt == stat_vcnt || lt == stat_nbrcnt) {
shc.set_alpha(job.out_alpha);
}
write_header_cols(shc, job.stat_at, job.stat_row);
}

Expand Down

0 comments on commit dc37869

Please sign in to comment.