-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support all available Belle II decay models (#401)
* Add dec files to test several Belle II models * ... and test them in tests/dec/test_known_decay_models.py * Update list of known models * Test new models * style: pre-commit fixes --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
3dca6b9
commit 68cedb4
Showing
13 changed files
with
167 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
# Wilson coefficients for New Physics contributions | ||
# Each Wilson coefficient is calculated by | ||
# CXX = MagCXX * exp( ArgCXX * i ) | ||
# Negative value of MagCXX is allowed. | ||
# all CXX = 0 --> Standard Model | ||
Define MagCV1 0 | ||
Define ArgCV1 0 | ||
Define MagCV2 0 | ||
Define ArgCV2 0 | ||
Define MagCS1 0 | ||
Define ArgCS1 0 | ||
Define MagCS2 0 | ||
Define ArgCS2 0 | ||
Define MagCT 0 | ||
Define ArgCT 0 | ||
|
||
# quark masses at the m_b scale | ||
# taken from PRD77, 113016 (2008) | ||
# m_b = 4.20+/-0.07 GeV/c^2 | ||
# m_c = 0.901+0.111-0.113 GeV/c^2 | ||
Define m_b 4.20 | ||
Define m_c 0.901 | ||
|
||
# HQET Form Factor parameters from B->D(*)lnu data | ||
# taken from HFAG End Of Year 2011 | ||
# rho_1^2 = 1.186 +/- 0.036 +/- 0.041 | ||
# rho_A1^2 = 1.207 +/- 0.015 +/- 0.021 | ||
# R_1(1) = 1.403 +/- 0.033 | ||
# R_2(1) = 0.854 +/- 0.020 | ||
Define rho12 1.186 | ||
Define rhoA12 1.207 | ||
Define R11 1.403 | ||
Define R21 0.854 | ||
|
||
# Parameters related to the O(1/m_q) correction in the scalar form factors | ||
# The authors of PRD87,034028 use 1 +/- 1 for these values to take into account the theoretical error. | ||
Define aS1 1.0 | ||
Define aR3 1.0 | ||
|
||
Decay B- | ||
0.5 D*0 tau- anti-nu_tau BSTD rhoA12 R11 R21 aR3 m_b m_c MagCV1 ArgCV1 MagCV2 ArgCV2 MagCS1 ArgCS1 MagCS2 ArgCS2 MagCT ArgCT; | ||
#0.5 D0 tau- anti-nu_tau BSTD rho12 aS1 m_b m_c MagCV1 ArgCV1 MagCV2 ArgCV2 MagCS1 ArgCS1 MagCS2 ArgCS2 MagCT ArgCT; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
# HQET Form Factor parameters from B->D(*)lnu data | ||
# taken from HFAG End Of Year 2011 | ||
# rho_1^2 = 1.186 +/- 0.036 +/- 0.041 | ||
# rho_A1^2 = 1.207 +/- 0.015 +/- 0.021 | ||
# R_1(1) = 1.403 +/- 0.033 | ||
# R_2(1) = 0.854 +/- 0.020 | ||
Define rho12 1.186 | ||
Define rhoA12 1.207 | ||
Define R11 1.403 | ||
Define R21 0.854 | ||
|
||
# Parameters related to the O(1/m_q) correction in the scalar form factors | ||
# The authors of PRD87,034028 use 1 +/- 1 for these values to take into account the theoretical error. | ||
Define aS1 1.0 | ||
Define aR3 1.0 | ||
|
||
# quark masses at the m_b scale | ||
# taken from PRD77, 113016 (2008) | ||
# m_b = 4.20+/-0.07 GeV/c^2 | ||
# m_c = 0.901+0.111-0.113 GeV/c^2 | ||
Define m_b 4.20 | ||
Define m_c 0.901 | ||
|
||
# (GeV/c^2)^-1 | ||
Define tanBeta/m_H+ 0.5 | ||
|
||
Decay B0 | ||
0.5 D*- tau+ nu_tau BSTD_2HDMTYPE2 rhoA12 R11 R21 aR3 m_b m_c tanBeta/m_H+; | ||
#0.5 D- tau+ nu_tau BSTD_2HDMTYPE2 rho12 aS1 m_b m_c tanBeta/m_H+; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Decay B0sig | ||
1.0 Xsd anti-nu_e nu_e BTOXSNUNU_FERMI 0.1 0.0 0.461 1.1 4.68 0.1; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Decay B0sig | ||
1.0 K0 nu_e anti-nu_e KNUNU; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Decay B0 | ||
1.0 K*0 nu_e anti-nu_e KSTARNUNU_REV; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Define dm_B0 0.5065e12 | ||
|
||
Decay Upsilon(5S) | ||
0.20219 B0heavy anti-B0heavy PHSP_BB_MIX dm_B0 -1; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Define dm_B0 0.5065e12 | ||
|
||
Decay Upsilon(5S) | ||
0.00013 B0long B- pi+ anti-B0long PHSP_B_MIX dm_B0 ; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Define minusTwoBeta -0.78 | ||
Define dm 0.507e12 | ||
|
||
Decay B0 | ||
1.0 K_S0 K_S0 K_S0 PHSP_CP minusTwoBeta dm 1 1.0 0.0 1.0 0.0; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Decay vpho | ||
1.0 Upsilon(4S) gamma VECTORISR -1 1; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# File for testing purposes. Contains a single decay mode with a specific model. | ||
|
||
Decay B0sig | ||
0.002050 Xu- mu+ nu_mu PHOTOS VUB_BLNP 4.2281 0.7535 0.4366 1.5 1.5 1 1 1 1 1; | ||
Enddecay | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters