Skip to content
Snippets Groups Projects

fix a typo that overestimate epcut uncertainty

Merged Chao Peng requested to merge update_imcal_ml_benchmarks into master
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
@@ -255,8 +255,7 @@ if __name__ == '__main__':
# rejection power
rej_pow = npi/nres
# NOTE: assumed half of them are pions, so need a factor of sqrt(2)
rej_err = ((rej_pow - npi/nres_hi)*np.sqrt(2), (npi/nres_lo - rej_pow)*np.sqrt(2))
rej_err = ((rej_pow - npi/nres_hi), (npi/nres_lo - rej_pow))
fig, ax1 = plt.subplots(figsize=(8, 8))
ax2 = ax1.twinx()
Loading