Skip to main content

Lineshapes for hadron physics amplitude analysis

Project description

DecayShape

codecov Python 3.9+

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., s values, 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

decayshape-0.2.4.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

decayshape-0.2.4-py3-none-any.whl (26.9 kB view details)

Uploaded Python 3

File details

Details for the file decayshape-0.2.4.tar.gz.

File metadata

  • Download URL: decayshape-0.2.4.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for decayshape-0.2.4.tar.gz
Algorithm Hash digest
SHA256 1b2bee188063ad5f0e1b9c0a03ca46ea16e7e0901cd3a0e705c6ae03f83915a2
MD5 4f7dea6bdfa5bd4361f9b14414a62af4
BLAKE2b-256 ad8c4c49f8d0bf6b6791faafc8069a27128faad4296eb64d43fb1520c9e12475

See more details on using hashes here.

Provenance

The following attestation bundles were made for decayshape-0.2.4.tar.gz:

Publisher: publish.yml on KaiHabermann/DecayShape

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file decayshape-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: decayshape-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for decayshape-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 edcb789a627e922dcc4812fe5b0beabd8071a5f801cc73b292f5c6d9d6e9e7ea
MD5 01875301ba591a015236d0a8260de25c
BLAKE2b-256 155f83a7c8232a79757cea1869e23d25397a92d6b9043453464a1ef213830025

See more details on using hashes here.

Provenance

The following attestation bundles were made for decayshape-0.2.4-py3-none-any.whl:

Publisher: publish.yml on KaiHabermann/DecayShape

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page