diff options
author | tlatorre <tlatorre@uchicago.edu> | 2020-12-21 00:26:03 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2020-12-21 00:26:03 -0600 |
commit | 51e7b24254ae8261c455c5d8fe47544a29576c2c (patch) | |
tree | 17644b36d0a6eab8336339ef06ac38690ae4c5c2 /utils | |
parent | fbaa1f61e156d02eba56fbda743c9d802073f7f8 (diff) | |
download | sddm-51e7b24254ae8261c455c5d8fe47544a29576c2c.tar.gz sddm-51e7b24254ae8261c455c5d8fe47544a29576c2c.tar.bz2 sddm-51e7b24254ae8261c455c5d8fe47544a29576c2c.zip |
update dm-search to only look for mediator masses up to 1 GeV
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/dm-search | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/dm-search b/utils/dm-search index 12d2a4b..63f6438 100755 --- a/utils/dm-search +++ b/utils/dm-search @@ -52,8 +52,8 @@ from itertools import chain # the fit takes. DM_SAMPLES = 10000 -DM_MASSES = {2020: np.logspace(np.log10(22),np.log10(10e3 - 500),101), - 2222: np.logspace(np.log10(318),np.log10(10e3 - 500),101)} +DM_MASSES = {2020: np.logspace(np.log10(22),np.log10(1e3),101), + 2222: np.logspace(np.log10(318),np.log10(1e3),101)} DISCOVERY_P_VALUE = 0.05 |