Skip to content

Commit

Permalink
Make it clear mean and stddev are from main source
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisherlevine committed Mar 23, 2023
1 parent ff1990a commit 9e589dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def checkResultConsistency(results, maxAllowableShift=5, silent=False):

fluxStd = np.nanstd([s.rawFlux for s in sources])
fluxMean = np.nanmean([s.rawFlux for s in sources])
toPrint.append(f'Mean and stddev of fluxes = {fluxMean:.1f} ± {fluxStd:.1f} ADU')
toPrint.append(f'Mean and stddev of flux from brightest object = {fluxMean:.1f} ± {fluxStd:.1f} ADU')

if not silent:
for line in toPrint:
Expand Down

0 comments on commit 9e589dd

Please sign in to comment.