diff --git a/src/particle/particle/particle.py b/src/particle/particle/particle.py index c9c2f038..48cb576a 100644 --- a/src/particle/particle/particle.py +++ b/src/particle/particle/particle.py @@ -938,7 +938,7 @@ def describe(self) -> str: @property def evtgen_name(self) -> str: - "This is the name used in EvtGen." + "The particle name as used in EvtGen." return EvtGenName2PDGIDBiMap[self.pdgid] @property @@ -948,7 +948,7 @@ def programmatic_name(self) -> str: @property def html_name(self) -> str: - "This is the name in HTML." + "The particle name in HTML." return latex_to_html_name(self.latex_name) @classmethod diff --git a/tests/particle/test_particle.py b/tests/particle/test_particle.py index 8be06795..b5ce7bae 100644 --- a/tests/particle/test_particle.py +++ b/tests/particle/test_particle.py @@ -397,9 +397,12 @@ def test_all_particles_are_loaded(): (11, "e-"), # e- (-13, "μ+"), # mu+ (-14, "ν̅μ"), # nu_mu_bar + (18, "ντ"), # nu_tau_prime (111, "π0"), # pi0 (-211, "π-"), # pi- (-213, "ρ(770)-"), # rho(770)- + (331, "η(958)"), # eta_prime + (335, "f2(1525)"), # f2'(1525) (20213, "a1(1260)+"), # a_1(1260)+ (321, "K+"), # K+ (130, "KL0"), # K_L @@ -415,6 +418,7 @@ def test_all_particles_are_loaded(): (-2224, "Δ̅(1232)--"), # Delta_bar(1232)-- (3322, "Ξ0"), # Xi0 (-3322, "Ξ̅0"), # Xi0_bar + (4312, "Ξc′ 0"), # Xi_c'0 (-5122, "Λ̅b0"), # Lb0_bar )