Skip to content

Commit

Permalink
add forgotten npts for qac_stats
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Oct 18, 2023
1 parent e324d10 commit f891ef4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/kernel/tab/tabhist.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ string defv[] = {
"scale=1\n Scale factor for data",
"out=\n Optional output file to select the robust points",
"pyplot=\n Template python plotting script",
"VERSION=8.0b\n 19-feb-2023 PJT",
"VERSION=8.0c\n 18-oct-2023 PJT",
NULL
};

Expand Down Expand Up @@ -545,9 +545,9 @@ local void histogram(void)
}
if (Qac) {
real flux = 0.0;
printf("QAC_STATS: %s %g %g %g %g %g %g\n",
printf("QAC_STATS: %s %g %g %g %g %g %g %d\n",
input, mean, sigma, min_moment(&m), max_moment(&m),
flux, sratio_moment(&m));
flux, sratio_moment(&m),n_moment(&m));

}

Expand Down

0 comments on commit f891ef4

Please sign in to comment.