diff options
| author | tlatorre <tlatorre@uchicago.edu> | 2020-08-25 05:40:35 -0500 |
|---|---|---|
| committer | tlatorre <tlatorre@uchicago.edu> | 2020-08-25 05:40:35 -0500 |
| commit | 38044cf65f9adaa61a994dd3f874d687b0ab55a3 (patch) | |
| tree | 378b6a3aa3f860645e6dd53dd5dd59abf3880120 /utils | |
| parent | 272f50f3c62d31596c5508b87c59e01b07ffb2ce (diff) | |
| download | sddm-38044cf65f9adaa61a994dd3f874d687b0ab55a3.tar.gz sddm-38044cf65f9adaa61a994dd3f874d687b0ab55a3.tar.bz2 sddm-38044cf65f9adaa61a994dd3f874d687b0ab55a3.zip | |
fix stupid bug in last commit
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/chi2 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -172,7 +172,7 @@ def make_nll(data, muons, mc, bins): ke_dict = {} for id in (20,22,2020,2022,2222): - ke_dict[id] = data[data.id == id].ke.values + ke_dict[id] = mc[mc.id == id].ke.values def nll(x, grad=None): if any(x[i] < 0 for i in range(len(x))): |
