Changes between Version 13 and Version 14 of pSPSS


Ignore:
Timestamp:
Oct 18, 2022, 10:30:28 AM (2 years ago)
Author:
Jan Hajer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pSPSS

    v13 v14  
    33The motivation and implementation of the `pSPSS` is discussed in
    44
    5 S. Antusch, J. Hajer, and J. Rosskopp. ‘Simulating heavy neutrino-antineutrino oscillations at colliders’ (2022).
     5S. Antusch, J. Hajer, and J. Rosskopp. ‘Simulating lepton number violation caused by heavy neutrino-antineutrino oscillations at colliders’ (2022).
    66
    77== Model description ==
     
    3939
    4040{{{
     41mass_splitting = param_card.get_value('PSPSS', 2)
     42damping = param_card.get_value('PSPSS', 6)
    4143for event in lhe:
    4244    leptonnumber = 0
     
    5153        id = particle.pid
    5254        width = param_card['decay'].get((abs(id),)).value
    53         mass splitting = param_card.get_value('PSPSS', 2)
    5455        if width:
    5556            if id in [8000011, 8000012]:
    5657                tau0 = random.expovariate(width / cst)
    57                 if 0.5 * (1 + math.cos(mass splitting * tau0 / cst)) >= random.random():
     58                if 0.5 * (1 + math.exp(=damping)*math.cos(mass_splitting * tau0 / cst)) >= random.random():
    5859                    write_event = (leptonnumber == 0)
    5960                else: