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

FIX: compute Wigner-Ds over all allowed helicities #311

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
25 changes: 13 additions & 12 deletions src/ampform/helicity/align/dpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

from ampform._qrules import get_qrules_version
from ampform.helicity.align import SpinAlignment
from ampform.helicity.align._spin import create_spin_range
from ampform.helicity.decay import (
get_outer_state_ids,
get_spectator_id,
Expand Down Expand Up @@ -85,13 +86,13 @@ def _formulate_aligned_amplitude( # noqa: PLR0914
* wigner_generator(j2, _λ2, λ2, 2, spectator_id)
* wigner_generator(j3, _λ3, λ3, 3, spectator_id)
]
outer_helicities = _collect_outer_state_helicities(reaction)
allowed_helicities = _compute_allowed_helicities(reaction)
amp_expr = PoolSum(
sp.Add(*aligned_amplitudes),
(_λ0, outer_helicities[0]),
(_λ1, outer_helicities[1]),
(_λ2, outer_helicities[2]),
(_λ3, outer_helicities[3]),
(_λ0, allowed_helicities[0]),
(_λ1, allowed_helicities[1]),
(_λ2, allowed_helicities[2]),
(_λ3, allowed_helicities[3]),
)
return amp_expr, wigner_generator.angle_definitions

Expand Down Expand Up @@ -185,14 +186,14 @@ def __get_default_relabel_mapping() -> dict[int, int]:
return {i - 1: i for i in range(5)}


def _collect_outer_state_helicities(
reaction: ReactionInfo,
) -> dict[int, list[sp.Rational]]:
outer_state_ids = get_outer_state_ids(reaction)
def _compute_allowed_helicities(reaction: ReactionInfo) -> dict[int, list[sp.Rational]]:
some_transition = reaction.transitions[0]
outer_state_ids = sorted(get_outer_state_ids(reaction))
outer_particles = {i: some_transition.states[i].particle for i in outer_state_ids}
return {
i: sorted({
sp.Rational(transition.states[i].spin_projection)
for transition in reaction.transitions
sp.Rational(helicity)
for helicity in create_spin_range(p.spin, no_zero_spin=p.mass == 0.0)
})
for i in outer_state_ids
for i, p in outer_particles.items()
}
8 changes: 4 additions & 4 deletions tests/helicity/align/test_dpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import ampform
from ampform.helicity.align.dpd import (
DalitzPlotDecomposition,
_collect_outer_state_helicities,
_compute_allowed_helicities,
relabel_edge_ids,
)
from ampform.kinematics.lorentz import create_four_momentum_symbol
Expand Down Expand Up @@ -69,10 +69,10 @@ def test_free_symbols_main_expression(self, jpsi_to_k0_sigma_pbar: ReactionInfo)
assert str(sorted_free_symbols) == str([p1, p2, p3])


def test_collect_outer_state_helicities(reaction: ReactionInfo):
helicities = _collect_outer_state_helicities(reaction)
def test_compute_allowed_helicities(reaction: ReactionInfo):
helicities = _compute_allowed_helicities(reaction)
assert helicities == {
-1: [-1, +1],
-1: [-1, 0, +1],
0: [-1, +1],
1: [0],
2: [0],
Expand Down
Loading