Skip to content
Snippets Groups Projects
Commit 9062896d authored by Chao Peng's avatar Chao Peng
Browse files

fix a typo that overestimate epcut uncertainty

parent d48a6b5f
No related branches found
No related tags found
1 merge request!283fix a typo that overestimate epcut uncertainty
...@@ -255,8 +255,7 @@ if __name__ == '__main__': ...@@ -255,8 +255,7 @@ if __name__ == '__main__':
# rejection power # rejection power
rej_pow = npi/nres 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), (npi/nres_lo - rej_pow))
rej_err = ((rej_pow - npi/nres_hi)*np.sqrt(2), (npi/nres_lo - rej_pow)*np.sqrt(2))
fig, ax1 = plt.subplots(figsize=(8, 8)) fig, ax1 = plt.subplots(figsize=(8, 8))
ax2 = ax1.twinx() ax2 = ax1.twinx()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment