phasespace

phasespace: n-body phase space generation in Python - Published in JOSS (2019)

https://github.com/zfit/phasespace

Science Score: 100.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 11 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: joss.theoj.org, zenodo.org
  • Committers with academic emails
    4 of 11 committers (36.4%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords

hep physics-simulation

Keywords from Contributors

pde energy-system hydrology ode ipyleaflet ipywidgets dataviz folium mesh exoplanet
Last synced: 4 months ago · JSON representation ·

Repository

Phase space generation implemented in TensorFlow

Basic Info
  • Host: GitHub
  • Owner: zfit
  • License: bsd-3-clause
  • Language: Python
  • Default Branch: main
  • Homepage: https://phasespace.rtfd.io
  • Size: 29 MB
Statistics
  • Stars: 24
  • Watchers: 3
  • Forks: 10
  • Open Issues: 4
  • Releases: 17
Topics
hep physics-simulation
Created almost 7 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Citation Authors

README.rst

*******************************
PhaseSpace
*******************************

.. image:: https://joss.theoj.org/papers/10.21105/joss.01570/status.svg
   :target: https://doi.org/10.21105/joss.01570
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2591993.svg
   :target: https://doi.org/10.5281/zenodo.2591993
.. image:: https://img.shields.io/pypi/status/phasespace.svg
   :target: https://pypi.org/project/phasespace/
.. image:: https://img.shields.io/pypi/pyversions/phasespace.svg
   :target: https://pypi.org/project/phasespace/
.. image:: https://github.com/zfit/phasespace/workflows/tests/badge.svg
   :target: https://github.com/zfit/phasespace/actions/workflows/ci.yml?query=branch%3Amaster
.. image:: https://codecov.io/gh/zfit/phasespace/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/zfit/phasespace
.. image:: https://readthedocs.org/projects/phasespace/badge/?version=stable
   :target: https://phasespace.readthedocs.io/en/latest/?badge=stable
   :alt: Documentation Status
.. image:: https://badges.gitter.im/zfit/phasespace.svg
   :target: https://gitter.im/zfit/phasespace?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
   :alt: Gitter chat
.. image:: https://badge.fury.io/py/phasespace.svg
   :target: https://badge.fury.io/py/phasespace

Python implementation of the Raubold and Lynch method for `n`-body events using
TensorFlow as a backend.

The code is based on the GENBOD function (W515 from CERNLIB), documented in [1]
and tries to follow it as closely as possible.

Detailed documentation, including the API, can be found in https://phasespace.readthedocs.io.
Don't hesitate to join our `gitter`_ channel for questions and comments.

If you use phasespace in a scientific publication we would appreciate citations to the `JOSS`_ publication:

.. code-block:: bibtex

    @article{puig_eschle_phasespace-2019,
      title = {phasespace: n-body phase space generation in Python},
      doi = {10.21105/joss.01570},
      url = {https://doi.org/10.21105/joss.01570},
      year = {2019},
      month = {oct},
      publisher = {The Open Journal},
      author = {Albert Puig and Jonas Eschle},
      journal = {Journal of Open Source Software}
    }

Free software: BSD-3-Clause.

[1]  F. James, Monte Carlo Phase Space, CERN 68-15 (1968)

.. _JOSS: https://joss.theoj.org/papers/10.21105/joss.01570
.. _Gitter: https://gitter.im/zfit/phasespace


Why?
====
Lately, data analysis in High Energy Physics (HEP), traditionally performed within the `ROOT`_ ecosystem,
has been moving more and more towards Python.
The possibility of carrying out purely Python-based analyses has become real thanks to the
development of many open source Python packages,
which have allowed to replace most ROOT functionality with Python-based packages.

One of the aspects where this is still not possible is in the random generation of `n`-body phase space events,
which are widely used in the field, for example to study kinematics
of the particle decays of interest, or to perform importance sampling in the case of complex amplitude models.
This has been traditionally done with the `TGenPhaseSpace`_ class, which is based of the GENBOD function of the
CERNLIB FORTRAN libraries and which requires a full working ROOT installation.

This package aims to address this issue by providing a TensorFlow-based implementation of such a function
to generate `n`-body decays without requiring a ROOT installation.
Additionally, an oft-needed functionality to generate complex decay chains, not included in ``TGenPhaseSpace``,
is also offered, leaving room for decaying resonances (which don't have a fixed mass, but can be seen as a
broad peak).

.. _ROOT: https://root.cern.ch
.. _TGenPhaseSpace: https://root.cern.ch/doc/master/classTGenPhaseSpace.html

Installing
==========

To install with pip:

.. code-block:: console

    $ pip install phasespace

This is the preferred method to install ``phasespace``, as it will always install the most recent stable release.
To install the necessary dependencies to be used with
`DecayLanguage `_, use

.. code-block:: console

    $ pip install "phasespace[fromdecay]"


How to use
==========

Phasespace can directly be used to generate from a DecayChain using the
`DecayLanguage `_ package as
`explained in the tutorial `_.

The generation of simple `n`-body decays can be done using the ``nbody_decay`` shortcut to create a decay chain
with a very simple interface: one needs to pass the mass of the top particle and the masses of the children particle as
a list, optionally giving the names of the particles. Then, the ``generate`` method can be used to produce the desired sample.
For example, to generate :math:`B^0\to K\pi`, we would do:

.. code-block:: python

   import phasespace

   B0_MASS = 5279.65
   PION_MASS = 139.57018
   KAON_MASS = 493.677

   weights, particles = phasespace.nbody_decay(B0_MASS,
                                               [PION_MASS, KAON_MASS]).generate(n_events=1000)

Behind the scenes, this function runs the TensorFlow graph. It returns `tf.Tensor`, which, as TensorFlow 2.x is in eager mode,
is basically a numpy array. Any `tf.Tensor` can be explicitly converted to a numpy array by calling `tf.Tensor.numpy()` on it.
The `generate` function returns a `tf.Tensor` of 1000 elements in the case of ``weights`` and a list of
``n particles`` (2) arrays of (1000, 4) shape,
where each of the 4-dimensions corresponds to one of the components of the generated Lorentz 4-vector.
All particles are generated in the rest frame of the top particle; boosting to a certain momentum (or list of momenta) can be
achieved by passing the momenta to the ``boost_to`` argument.

Sequential decays can be handled with the ``GenParticle`` class (used internally by ``generate``) and its ``set_children`` method.
As an example, to build the :math:`B^{0}\to K^{*}\gamma` decay in which :math:`K^*\to K\pi`, we would write:

.. code-block:: python

   from phasespace import GenParticle

   B0_MASS = 5279.65
   KSTARZ_MASS = 895.55
   PION_MASS = 139.57018
   KAON_MASS = 493.677

   kaon = GenParticle('K+', KAON_MASS)
   pion = GenParticle('pi-', PION_MASS)
   kstar = GenParticle('K*', KSTARZ_MASS).set_children(kaon, pion)
   gamma = GenParticle('gamma', 0)
   bz = GenParticle('B0', B0_MASS).set_children(kstar, gamma)

   weights, particles = bz.generate(n_events=1000)

Where we have used the fact that ``set_children`` returns the parent particle.
In this case, ``particles`` is a ``dict`` with the particle names as keys:

.. code-block:: pycon

   >>> particles
   {'K*': array([[ 1732.79325872, -1632.88873127,   950.85807735,  2715.78804872],
          [-1633.95329448,   239.88921123, -1961.0402768 ,  2715.78804872],
          [  407.15613764, -2236.6569286 , -1185.16616251,  2715.78804872],
          ...,
          [ 1091.64603395, -1301.78721269,  1920.07503991,  2715.78804872],
          [ -517.3125083 ,  1901.39296899,  1640.15905194,  2715.78804872],
          [  656.56413668,  -804.76922982,  2343.99214816,  2715.78804872]]),
    'K+': array([[  750.08077976,  -547.22569019,   224.6920906 ,  1075.30490935],
          [-1499.90049089,   289.19714633, -1935.27960292,  2514.43047106],
          [   97.64746732, -1236.68112923,  -381.09526192,  1388.47607911],
          ...,
          [  508.66157459,  -917.93523639,  1474.7064148 ,  1876.11771642],
          [ -212.28646168,   540.26381432,   610.86656669,   976.63988936],
          [  177.16656666,  -535.98777569,   946.12636904,  1207.28744488]]),
    'gamma': array([[-1732.79325872,  1632.88873127,  -950.85807735,  2563.79195128],
          [ 1633.95329448,  -239.88921123,  1961.0402768 ,  2563.79195128],
          [ -407.15613764,  2236.6569286 ,  1185.16616251,  2563.79195128],
          ...,
          [-1091.64603395,  1301.78721269, -1920.07503991,  2563.79195128],
          [  517.3125083 , -1901.39296899, -1640.15905194,  2563.79195128],
          [ -656.56413668,   804.76922982, -2343.99214816,  2563.79195128]]),
    'pi-': array([[  982.71247896, -1085.66304109,   726.16598675,  1640.48313937],
          [ -134.0528036 ,   -49.3079351 ,   -25.76067389,   201.35757766],
          [  309.50867032,  -999.97579937,  -804.0709006 ,  1327.31196961],
          ...,
          [  582.98445936,  -383.85197629,   445.36862511,   839.6703323 ],
          [ -305.02604662,  1361.12915468,  1029.29248526,  1739.14815935],
          [  479.39757002,  -268.78145413,  1397.86577911,  1508.50060384]])}

The `GenParticle` class is able to cache the graphs so it is possible to generate in a loop
without overhead:

.. code-block:: pycon

    for i in range(10):
        weights, particles = bz.generate(n_events=1000)
        ...
        (do something with weights and particles)
        ...

This way of generating is recommended in the case of large samples, as it allows to benefit from
parallelisation while at the same time keep the memory usage low.

If we want to operate with the TensorFlow graph instead, we can use the `generate_tensor` method
of `GenParticle`, which has the same signature as `generate`.

More examples can be found in the ``tests`` folder and in the `documentation`_.

.. _documentation: https://phasespace.readthedocs.io/en/latest/usage.html


Physics validation
==================

Physics validation is performed continuously in the included tests (``tests/test_physics.py``), run through GitHub Actions.
This validation is performed at two levels:

- In simple `n`-body decays, the results of ``phasespace`` are checked against ``TGenPhaseSpace``.
- For sequential decays, the results of ``phasespace`` are checked against `RapidSim`_, a "fast Monte Carlo generator
  for simulation of heavy-quark hadron decays".
  In the case of resonances, differences are expected because our tests don't include proper modelling of their
  mass shape, as it would require the introduction of
  further dependencies. However, the results of the comparison can be expected visually.

The results of all physics validation performed by the ``tests_physics.py`` test are written in ``tests/plots``.

.. _RapidSim: https://github.com/gcowan/RapidSim/


Contributing
============

Contributions are always welcome, please have a look at the `Contributing guide`_.

.. _Contributing guide: CONTRIBUTING.rst

Owner

  • Name: zfit
  • Login: zfit
  • Kind: organization
  • Email: zfit@physik.uzh.ch

JOSS Publication

phasespace: n-body phase space generation in Python
Published
October 29, 2019
Volume 4, Issue 42, Page 1570
Authors
Albert Puig Navarro ORCID
Physik-Institut, Universität Zürich, Zürich (Switzerland)
Jonas Eschle ORCID
Physik-Institut, Universität Zürich, Zürich (Switzerland)
Editor
Jack Poulson ORCID
Tags
high energy physics tensorflow relativistic kinematics

Citation (CITATION.cff)

title: 'phasespace: n-body phase space generation in Python'
abstract: 'This repository contains the source code of the paper phasespace: n-body phase space generation in Python by Albert Navarro and Jonas Eschle, from JOSS'
doi: 10.21105/joss.01570
repository-code: https://github.com/zfit/phasespace
version: 1.0.0
date-released: 2019-10-29
authors:
  - given-names: Albert
    family-names: Navarro
  - given-names: Jonas
    family-names: Eschle
    affiliation: University of Zurich
keywords:
  - Python
  - Simulation
  - High Energy Physics
  - Phasespace
  - PWA
  - kinematics
  - null
cff-version: 1.2.0

GitHub Events

Total
  • Delete event: 9
  • Issue comment event: 1
  • Push event: 18
  • Pull request review event: 2
  • Pull request event: 18
  • Fork event: 1
  • Create event: 10
Last Year
  • Delete event: 9
  • Issue comment event: 1
  • Push event: 18
  • Pull request review event: 2
  • Pull request event: 18
  • Fork event: 1
  • Create event: 10

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 583
  • Total Committers: 11
  • Avg Commits per committer: 53.0
  • Development Distribution Score (DDS): 0.561
Past Year
  • Commits: 11
  • Committers: 3
  • Avg Commits per committer: 3.667
  • Development Distribution Score (DDS): 0.364
Top Committers
Name Email Commits
Jonas Eschle 'Mayou36 m****6@j****m 256
Albert Puig a****g@c****h 110
Simon Thor s****r@h****e 76
Remco de Boer r****r@g****m 62
pre-commit-ci[bot] 6****] 40
dependabot[bot] 4****] 28
Eduardo Rodrigues e****s@c****h 5
Albert Puig a****g@e****h 3
The Gitter Badger b****r@g****m 1
Daniel S. Katz d****z@i****g 1
Albert Puig a****o@g****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 24
  • Total pull requests: 108
  • Average time to close issues: about 1 month
  • Average time to close pull requests: 8 days
  • Total issue authors: 8
  • Total pull request authors: 9
  • Average comments per issue: 3.13
  • Average comments per pull request: 1.66
  • Merged pull requests: 103
  • Bot issues: 0
  • Bot pull requests: 54
Past Year
  • Issues: 0
  • Pull requests: 19
  • Average time to close issues: N/A
  • Average time to close pull requests: 6 days
  • Issue authors: 0
  • Pull request authors: 3
  • Average comments per issue: 0
  • Average comments per pull request: 0.05
  • Merged pull requests: 18
  • Bot issues: 0
  • Bot pull requests: 17
Top Authors
Issue Authors
  • apuignav (9)
  • jonas-eschle (8)
  • redeboer (2)
  • dependabot[bot] (2)
  • eduardo-rodrigues (1)
  • ShyamB97 (1)
  • chrisburr (1)
  • mdoucet (1)
Pull Request Authors
  • dependabot[bot] (40)
  • pre-commit-ci[bot] (26)
  • jonas-eschle (21)
  • redeboer (13)
  • apuignav (13)
  • simonthor (3)
  • eduardo-rodrigues (3)
  • gitter-badger (1)
  • danielskatz (1)
Top Labels
Issue Labels
enhancement (2) dependencies (2) bug (1) question (1)
Pull Request Labels
dependencies (41) github_actions (4) ci (3) enhancement (3) bug (2) tests (1)

Packages

  • Total packages: 2
  • Total downloads:
    • pypi 1,136 last-month
  • Total dependent packages: 2
    (may contain duplicates)
  • Total dependent repositories: 6
    (may contain duplicates)
  • Total versions: 28
  • Total maintainers: 1
pypi.org: phasespace

TensorFlow implementation of the Raubold and Lynch method for n-body events

  • Versions: 20
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 1,136 Last month
Rankings
Dependent packages count: 3.2%
Dependent repos count: 6.1%
Downloads: 7.3%
Average: 8.4%
Forks count: 12.0%
Stargazers count: 13.4%
Maintainers (1)
Last synced: 4 months ago
conda-forge.org: phasespace
  • Versions: 8
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent packages count: 28.8%
Dependent repos count: 34.0%
Average: 37.9%
Forks count: 43.4%
Stargazers count: 45.3%
Last synced: 4 months ago

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
  • codecov/codecov-action v3.1.1 composite
.github/workflows/cd.yml actions
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • actions/setup-python v4 composite
  • pypa/gh-action-pypi-publish release/v1k composite
pyproject.toml pypi
setup.py pypi