diff options
Diffstat (limited to 'utils/chi2')
-rwxr-xr-x | utils/chi2 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -120,13 +120,13 @@ def get_mc_hists_fast(ke_dict,x,bins,apply_norm=False): if id in (20,2020): ke = ke*x[1] - scale = bincenters2*x[2] + scale = bincenters2*max(EPSILON,x[2]) elif id in (22,2222): ke = ke*x[3] - scale = bincenters2*x[4] + scale = bincenters2*max(EPSILON,x[4]) elif id == 2022: ke = ke*x[5] - scale = bincenters2*x[6] + scale = bincenters2*max(EPSILON,x[6]) hist = np.histogram(ke,bins=bins2)[0] |