Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ds* (433) to physics constants #13585

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Common/Constants/include/CommonConstants/PhysicsConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ enum Pdg {
kDPlus = 411,
kDS = 431,
kDSBar = -431,
kDSStar = 433,
kDS1 = 10433,
kDS2Star = 435,
kDStar = 413,
Expand Down Expand Up @@ -95,6 +96,7 @@ constexpr double MassDMinus = 1.86966;
constexpr double MassDPlus = 1.86966;
constexpr double MassDS = 1.96835;
constexpr double MassDSBar = 1.96835;
constexpr double MassDSStar = 2.1122;
constexpr double MassDS1 = 2.53511;
constexpr double MassDS2Star = 2.5691;
constexpr double MassDStar = 2.01026;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ class Pdg(Enum):
kDPlus = 411
kDS = 431
kDSBar = -431
kDSStar = 433
kDS1 = 10433
kDS2Star = 435
kDStar = 413
Expand Down
Loading