Newer
Older
Master_thesis / jobs / 3583786 / pdg_const.py
@saslie saslie on 2 Apr 2019 1 KB ...
  1. pdg = {
  2.  
  3. ###Particle masses###
  4.  
  5. "mbstar" : 5415.4,
  6. "mbstar0" : 5711.0,
  7. "B0_M" : 5279.5,
  8. "Bs_M" : 5366.7,
  9. "Bplus_M" : 5279.3,
  10. "Lb_M" : 5619.4,
  11. "D0_M" : 1864.8,
  12. "Dst_M" : 2010,
  13. "pi_M" : 139.6,
  14. "Jpsi_M" : 3096.9,
  15. "Psi2s_M" : 3685.6,
  16. "kaon_M" : 493.7,
  17. "Ks_M" : 497.6,
  18. "phi_M" : 1019.5,
  19. "rho_M" : 775.26,
  20. "rho_width" : 149.1,
  21. "omega_M" : 782.65,
  22. "omega_width" : 8.49,
  23.  
  24. "muon_M" : 105.7,
  25.  
  26. "squark_M" : 95.0,
  27. "bquark_M" : 4180.0,
  28. "cquark_M" : 1275.0,
  29.  
  30. "Bplus_tau" : 1.638e-12,
  31.  
  32. ###Wilson coefficients###
  33.  
  34. "C1" : -0.257,
  35. "C2" : 1.009,
  36. "C3" : -0.005,
  37. "C4" : -0.078,
  38.  
  39. "C7eff" : -0.306,
  40.  
  41. "C9eff" : 4.211,
  42. "C10eff" : -4.103,
  43.  
  44. ###Other constants
  45.  
  46. "GF" : 1.1663787e-5,
  47. "alpha_ew" : 1.0/137.0,
  48. "Vts" : 0.0394,
  49. "Vtb" : 1.019,
  50.  
  51. #Formfactor z coefficients
  52.  
  53. #"b0" : [0.285, 0.19, -0.17],
  54. #"bplus" : [0.437, -1.41, -2.5],
  55. #"bT" : [0.440, -1.47, -2.7]
  56.  
  57. "b0" : [0.292, 0.281, 0.150],
  58. "bplus" : [0.466, -0.885, -0.213],
  59. "bT" : [0.460, -1.089, -1.114],
  60.  
  61. #Resonances format(mass, width, phase, scale)
  62.  
  63. "jpsi": (3096, 0.09, -1.5, 2e-2),
  64. "psi2s": (3686, 0.3, -1.5, 3.14e-3)
  65. }