Skip to content

Commit

Permalink
increase biasing factor for high dark photon masses
Browse files Browse the repository at this point in the history
  • Loading branch information
tomeichlersmith committed Aug 17, 2023
1 parent 87d0d4a commit e4e84c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Biasing/python/eat.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,11 @@ def dark_brem( ap_mass , lhe, detector ) :

#Biasing dark brem up inside of the ecal volumes
from LDMX.SimCore import bias_operators
from math import log10
sim.biasing_operators = [
bias_operators.DarkBrem.ecal(sim.dark_brem.ap_mass**2 / db_model.epsilon**2)
bias_operators.DarkBrem.ecal(
sim.dark_brem.ap_mass**max(2, log10(sim.dark_brem.ap_mass)) / db_model.epsilon**2
)
]

sim.actions = [
Expand Down

0 comments on commit e4e84c0

Please sign in to comment.