Skip to main content

Stransverse mass computation as a numpy ufunc.

Project description

mt2

https://img.shields.io/pypi/v/mt2.svg https://github.com/tpgillam/mt2/workflows/Build/badge.svg?branch=master https://img.shields.io/badge/code%20style-black-000000.svg

This package may be used to evaluate MT2 in all its variants. This includes both symmetric and asymmetric MT2. MT2 is also known as the “stransverse mass”.

This package provides an interface to the bisection algorithm of http://arxiv.org/abs/1411.4312, via an implementation detailed below. The variable MT2 itself is described here. Related information may be found in papers relating to MT2 linked from here.

Getting started

Install from pip:

pip install mt2

One can then compute MT2 as follows; here for the “symmetric” case, where both invisible particles have the same mass:

from mt2 import mt2

# The units of all quantities are the same, e.g. GeV
val = mt2(
    100, 410, 20,  # Visible 1: mass, px, py
    150, -210, -300,  # Visible 2: mass, px, py
    -200, 280,  # Missing transverse momentum: x, y
    100, 100)  # Invisible 1 mass, invisible 2 mass
print("Expected mT2 = 412.628.  Computed mT2 = ", val)

Examples

Vectorisation

The mt2 function supports broadcasting over its arguments if they are array-like. For example, one could scan over a grid of invisible particle masses like so:

n1 = 20
n2 = 20
mass_1 = numpy.linspace(10, 200, n1).reshape((-1, 1))
mass_2 = numpy.linspace(10, 200, n2).reshape((1, -1))

# `val` has shape (n1, n2)
val = mt2(
    100, 410, 20,  # Visible 1: mass, px, py
    150, -210, -300,  # Visible 2: mass, px, py
    -200, 280,  # Missing transverse momentum: x, y
    mass_1, mass_2)  # Invisible 1 mass, invisible 2 mass
Note on performance

With full precision, the main reason to use vectorisation as above is convenience. The time spent in the C++ MT2 calculation is somewhat larger than the overhead introduced by a Python for loop. Vectorising can give a runtime reduction of ⪅30% in this case.

However, the benefit can be more significant when using a lower precision. This corresponds to a larger value for the desired_precision_on_mt2 argument. This is because less time is spent in C++, so proportionally the Python overhead of a for loop is more significant.

Toy MC

A fun example using a toy Monte-Carlo simulation can be viewed in this notebook

Other notes

For further information, see the documentation:

help(mt2)

Also exported is mt2_ufunc. This is the raw implementation as a numpy ufunc. Usage is the same as for mt2, but it supports some additional arguments, like where. The reader should refer to the numpy documentation for a description of these.

Implementation

The underlying implementation of the Lester-Nachman algorithm used in this package is by Rupert Tombs, found in src/mt2_bisect.h. It is found to provide results consistent with the implementation provided with http://arxiv.org/abs/1411.4312, but is significantly faster. Note that this does not implement the “deci-sectioning” described in the paper, since it is found to provide a more significant performance penalty in the majority of cases.

Performance

The default installation method via pip uses a precompiled wheel for your platform. If you wish to compile from source for your platform, you could instead install like so:

pip install mt2 --no-binary :all:

Since this can allow use of newer compilers, and code more optimised for your architecture, this can give a small speedup. On the author’s computer, there was 1% runtime reduction as measured with examples/benchmark.py.

License

Please cite:

All files other than src/lester_mt2_bisect_v7.h and src/mt2_Lallyver2.h are released under the MIT license.

Other implementations

A list of alternative implementations of the MT2 calculation can be found here:

https://www.hep.phy.cam.ac.uk/~lester/mt2/#Alternatives

In Python, the other wrapper of the same algorithm known to the authors is by Nikolai Hartmann, here: https://gitlab.cern.ch/nihartma/pymt2

History

1.1.0 (2021-04-18)

  • Re-implementation of the core algorithm, giving 3x-4x speedup overall.

1.0.0 (2021-02-14)

  • First non-beta release

  • Minor formatting alterations

  • Improved README

0.2.0 (2021-02-13)

  • Fix numpy build dependencies to use oldest possible version, so that wheels are maximally compatible.

  • Don’t support Python 3.5

0.1.6 (2021-02-11)

  • Fix build for numpy versions prior to 1.19

0.1.5 (2021-02-10)

  • Migrate to preliminary v7 of C file

  • Disable copyright message printing on run

  • Move away from pybind11 in favour of raw numpy C API

0.1.4 (2021-02-09)

  • Actually fix the build, maybe

0.1.3 (2021-02-09)

  • Fix the build

0.1.2 (2021-02-09)

  • Attempt C++ build

0.1.1 (2021-02-09)

  • Trivial change to test updating package on PyPI.

0.1.0 (2021-02-09)

  • First release on PyPI.

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

mt2-1.1.0.tar.gz (35.3 kB view hashes)

Uploaded Source

Built Distributions

mt2-1.1.0-cp39-cp39-win_amd64.whl (29.0 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

mt2-1.1.0-cp39-cp39-win32.whl (27.9 kB view hashes)

Uploaded CPython 3.9 Windows x86

mt2-1.1.0-cp39-cp39-manylinux2010_x86_64.whl (98.1 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

mt2-1.1.0-cp39-cp39-manylinux2010_i686.whl (89.2 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

mt2-1.1.0-cp39-cp39-manylinux1_x86_64.whl (86.6 kB view hashes)

Uploaded CPython 3.9

mt2-1.1.0-cp39-cp39-manylinux1_i686.whl (78.4 kB view hashes)

Uploaded CPython 3.9

mt2-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (28.9 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mt2-1.1.0-cp38-cp38-win_amd64.whl (29.2 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

mt2-1.1.0-cp38-cp38-win32.whl (28.2 kB view hashes)

Uploaded CPython 3.8 Windows x86

mt2-1.1.0-cp38-cp38-manylinux2010_x86_64.whl (99.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

mt2-1.1.0-cp38-cp38-manylinux2010_i686.whl (90.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

mt2-1.1.0-cp38-cp38-manylinux1_x86_64.whl (87.4 kB view hashes)

Uploaded CPython 3.8

mt2-1.1.0-cp38-cp38-manylinux1_i686.whl (79.1 kB view hashes)

Uploaded CPython 3.8

mt2-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (28.8 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mt2-1.1.0-cp37-cp37m-win_amd64.whl (29.0 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

mt2-1.1.0-cp37-cp37m-win32.whl (27.9 kB view hashes)

Uploaded CPython 3.7m Windows x86

mt2-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl (99.2 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

mt2-1.1.0-cp37-cp37m-manylinux2010_i686.whl (90.1 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

mt2-1.1.0-cp37-cp37m-manylinux1_x86_64.whl (86.6 kB view hashes)

Uploaded CPython 3.7m

mt2-1.1.0-cp37-cp37m-manylinux1_i686.whl (78.3 kB view hashes)

Uploaded CPython 3.7m

mt2-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (28.8 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mt2-1.1.0-cp36-cp36m-win_amd64.whl (28.9 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

mt2-1.1.0-cp36-cp36m-win32.whl (27.8 kB view hashes)

Uploaded CPython 3.6m Windows x86

mt2-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl (98.0 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

mt2-1.1.0-cp36-cp36m-manylinux2010_i686.whl (89.0 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

mt2-1.1.0-cp36-cp36m-manylinux1_x86_64.whl (86.4 kB view hashes)

Uploaded CPython 3.6m

mt2-1.1.0-cp36-cp36m-manylinux1_i686.whl (78.0 kB view hashes)

Uploaded CPython 3.6m

mt2-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl (28.8 kB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

Supported by

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