Hi, I think the D_s decays in Sybill2.3d are missing the tau+nu_tau decay mode, which has a branching fraction of roughly 6%:
In [1]: import chromo
...:
In [2]: import numpy as np
...:
In [3]: kinematics = chromo.kinematics.CenterOfMass(
...: 13 * chromo.constants.TeV,
...: "proton", "proton"
...: )
In [4]: generator = chromo.models.Sibyll23d(kinematics)
...:
====================================================
| |
| S I B Y L L 2.3d |
| |
| HADRONIC INTERACTION MONTE CARLO |
| BY |
| Eun-Joo AHN, Felix RIEHN |
| R. ENGEL, A. FEDYNITCH, R.S. FLETCHER, |
| T.K. GAISSER, P. LIPARI, T. STANEV |
| |
| Publication to be cited when using this program: |
| Eun-Joo AHN et al., Phys.Rev. D80 (2009) 094003 |
| F. RIEHN et al., hep-ph: 1912.03300 |
| last modifications: F. Riehn (05/20/2020) |
====================================================
SIG_AIR_INI: initializing target: (i,A) 1 0 air..
SIG_AIR_INI: initializing target: (i,A) 2 14 nit..
SIG_AIR_INI: initializing target: (i,A) 3 16 oxy..
In [5]: n_try = 10_000
...: num_taus = 0
...: num_D_strange = 0
In [6]: for evt in generator(n_try):
...: num_taus += np.sum( evt.pid == 15 )
...: num_taus += np.sum( evt.pid == -15 )
...: num_D_strange += np.sum( evt.pid == 431 )
...: num_D_strange += np.sum( evt.pid == -431 )
...:
In [7]: num_D_strange
...:
Out[7]: 469
In [8]: num_taus
...:
Out[8]: 0
Thanks very much for this package -- it's been amazing to use!
Hi, I think the D_s decays in Sybill2.3d are missing the tau+nu_tau decay mode, which has a branching fraction of roughly 6%:
Thanks very much for this package -- it's been amazing to use!