Lineshapes for hadron physics amplitude analysis
Project description
DecayShape
A Python package for lineshapes used in hadron physics amplitude or partial wave analysis.
Features
- Configurable Backend: Switch between NumPy and JAX backends for all mathematical operations
- Standard Lineshapes: Relativistic Breit-Wigner, Flatté, and K-matrix implementations
- Utility Functions: Blatt-Weiskopf form factors and angular momentum barrier factors
- Extensible Design: Abstract base class for implementing custom lineshapes
Installation
pip install decayshape
Quick Start
import decayshape as ds
import numpy as np
# Create a Relativistic Breit-Wigner with s values
s_values = np.linspace(0.5, 1.0, 100)
bw = ds.RelativisticBreitWigner(s=s_values, pole_mass=0.775, width=0.15)
# Evaluate with default parameters
amplitude = bw()
# Override parameters at call time (for optimization)
amplitude_override = bw(width=0.2, r=1.5) # keyword arguments
amplitude_pos = bw(0.2, 1.5) # positional arguments
# Switch to JAX backend
ds.set_backend("jax")
import jax.numpy as jnp
# Now all operations use JAX
s_jax = jnp.linspace(0.5, 1.0, 100)
bw_jax = ds.RelativisticBreitWigner(s=s_jax, pole_mass=0.775, width=0.15)
amplitude_jax = bw_jax(width=0.2)
Available Lineshapes
Relativistic Breit-Wigner
bw = ds.RelativisticBreitWigner(
s=s_values, # Mandelstam variable s (automatically wrapped as FixedParam)
pole_mass=0.775, # Pole mass (optimization parameter)
width=0.15, # Width (optimization parameter)
r=1.0, # Hadron radius (optimization parameter)
L=0 # Angular momentum (optimization parameter)
)
Flatté
flatte = ds.Flatte(
s=s_values, # Mandelstam variable s (auto-wrapped)
pole_mass=0.98, # Pole mass
# Channel masses (auto-wrapped as FixedParam[float])
channel1_mass1=0.139, # π mass
channel1_mass2=0.139, # π mass
channel2_mass1=0.494, # K mass
channel2_mass2=0.494, # K mass
# Width and dynamics per channel
width1=0.1,
width2=0.05,
r1=1.0,
r2=1.0,
L1=0,
L2=0
# q01 and q02 are optional; if omitted they default to pole_mass/2
)
K-matrix (advanced)
from decayshape import Channel, CommonParticles
# Define channels (auto-wrapped FixedParam for particles)
pipi = Channel(
particle1=CommonParticles.PI_PLUS,
particle2=CommonParticles.PI_MINUS,
)
kk = Channel(
particle1=CommonParticles.K_PLUS,
particle2=CommonParticles.K_MINUS,
)
kmat = ds.KMatrixAdvanced(
s=s_values, # Mandelstam variable s (auto-wrapped)
channels=[pipi, kk], # List[Channel]
pole_masses=[0.775, 0.98], # List of pole masses (n_poles)
production_couplings=[1.0, 0.8],# length = n_poles
# decay_couplings: length = n_poles * n_channels (row-major)
decay_couplings=[1.0, 0.5, 0.3, 0.7],
output_channel=0, # which channel amplitude to return
r=1.0,
L=0
)
# Evaluate
ampl = kmat()
Backend Configuration
The package supports both NumPy and JAX backends:
# Use NumPy (default)
ds.set_backend("numpy")
# Use JAX
ds.set_backend("jax")
Parameter Separation
The lineshapes distinguish between two types of parameters using Pydantic models:
- Fixed Parameters: Marked with
FixedParam[type]and never change during optimization (e.g.,svalues, channel masses) - Optimization Parameters: Regular Pydantic fields that can be overridden at call time (e.g., pole masses, widths, couplings, radii)
This separation makes the lineshapes ideal for parameter optimization where only certain parameters need to be varied.
Automatic FixedParam Wrapping: You don't need to manually wrap values in FixedParam() - the system automatically detects FixedParam fields and wraps the values for you. This means you can simply pass s=s_values instead of s=ds.FixedParam(s_values).
Serialization
All lineshapes support serialization and deserialization using Pydantic:
# Serialize to dictionary
bw_dict = bw.model_dump()
# Serialize to JSON (for simple s values)
bw_json = bw.model_dump_json()
# Deserialize from dictionary
bw_restored = RelativisticBreitWigner.model_validate(bw_dict)
# Deserialize from JSON
bw_restored = RelativisticBreitWigner.model_validate(json.loads(bw_json))
Parameter Optimization
The lineshapes support parameter override at call time, making them ideal for optimization:
# Create a lineshape with s values and parameter separation
bw = ds.RelativisticBreitWigner(s=s_values, pole_mass=0.775, width=0.15, r=1.0, L=1)
# Override optimization parameters using keyword arguments
result1 = bw(width=0.2, r=1.5)
# Override optimization parameters using positional arguments (order: width, r, L, q0)
result2 = bw(0.2, 1.5, 0)
# Mix positional and keyword arguments
result3 = bw(0.2, 1.5, L=0)
# For optimization frameworks
def objective_function(params):
width, r, L = params
return bw(width, r, L)
# Get parameter information
print(f"Fixed parameters: {bw.get_fixed_parameters()}")
print(f"Optimization parameters: {bw.get_optimization_parameters()}")
print(f"Parameter order: {bw.parameter_order}")
Utility Functions
# Blatt-Weiskopf form factor
F = ds.blatt_weiskopf_form_factor(q, q0, r=1.0, L=0)
# Angular momentum barrier factor
B = ds.angular_momentum_barrier_factor(q, q0, L=0)
Development
# Install in development mode
pip install -e .
# Run tests
pytest
# Format code
black decayshape/
isort decayshape/
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file decayshape-0.1.4.tar.gz.
File metadata
- Download URL: decayshape-0.1.4.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeba6085877b4cc1154051b414109396688dc28d86ab497ac238ce09833f2efb
|
|
| MD5 |
c25a79598d4259aee56816f198eb4902
|
|
| BLAKE2b-256 |
2effd65e0509dd015a903f04fc8a87d38fdd86b566aceb08a231e938b79f806b
|
Provenance
The following attestation bundles were made for decayshape-0.1.4.tar.gz:
Publisher:
publish.yml on KaiHabermann/DecayShape
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
decayshape-0.1.4.tar.gz -
Subject digest:
eeba6085877b4cc1154051b414109396688dc28d86ab497ac238ce09833f2efb - Sigstore transparency entry: 588182887
- Sigstore integration time:
-
Permalink:
KaiHabermann/DecayShape@a4f7524c247cb0577c2fb40531f2b18b24c24d9c -
Branch / Tag:
refs/tags/v0.1.4 - Owner: https://github.com/KaiHabermann
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4f7524c247cb0577c2fb40531f2b18b24c24d9c -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file decayshape-0.1.4-py3-none-any.whl.
File metadata
- Download URL: decayshape-0.1.4-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98c75c28bc0ef830c201147f81d75e5131b96df5fda8fc88f457a5f2167d4625
|
|
| MD5 |
37d56a6eaecb9f948b3bae8069fabc48
|
|
| BLAKE2b-256 |
ec0f0829579812863aa3878753f06c1c89fe593725f992410b5ca2f6f174d891
|
Provenance
The following attestation bundles were made for decayshape-0.1.4-py3-none-any.whl:
Publisher:
publish.yml on KaiHabermann/DecayShape
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
decayshape-0.1.4-py3-none-any.whl -
Subject digest:
98c75c28bc0ef830c201147f81d75e5131b96df5fda8fc88f457a5f2167d4625 - Sigstore transparency entry: 588182891
- Sigstore integration time:
-
Permalink:
KaiHabermann/DecayShape@a4f7524c247cb0577c2fb40531f2b18b24c24d9c -
Branch / Tag:
refs/tags/v0.1.4 - Owner: https://github.com/KaiHabermann
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4f7524c247cb0577c2fb40531f2b18b24c24d9c -
Trigger Event:
workflow_dispatch
-
Statement type: