diff options
Diffstat (limited to 'utils/dm-search')
-rwxr-xr-x | utils/dm-search | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/dm-search b/utils/dm-search index b27e3fc..2a008d5 100755 --- a/utils/dm-search +++ b/utils/dm-search @@ -237,7 +237,7 @@ def make_nll(dm_particle_id, dm_mass, dm_energy, data, muons, mc, atmo_scale_fac df_dict_dm[id] = dm_sample[dm_sample.id == id] def nll(x, grad=None): - if any(x[i] < 0 for i in (0,2,4,5,6)): + if (x < PRIORS_LOW).any() or (x > PRIORS_HIGH).any(): return np.inf # Get the Monte Carlo histograms. We need to do this within the |