45 releases

0.8.6 Oct 18, 2024
0.8.3 Aug 30, 2024
0.8.2 Jul 22, 2024
0.7.4-rc.1 Feb 24, 2024
0.1.0 Jun 11, 2020

#89 in Science

Download history 108/week @ 2024-07-13 129/week @ 2024-07-20 13/week @ 2024-07-27 71/week @ 2024-08-03 7/week @ 2024-08-10 14/week @ 2024-08-17 166/week @ 2024-08-24 101/week @ 2024-08-31 14/week @ 2024-09-07 102/week @ 2024-09-14 56/week @ 2024-09-21 135/week @ 2024-09-28 234/week @ 2024-10-05 256/week @ 2024-10-12 259/week @ 2024-10-19 105/week @ 2024-10-26

956 downloads per month
Used in 2 crates

GPL-3.0-or-later

390KB
9K SLoC

Rust codecov Documentation crates.io

PineAPPL

PineAPPL is a library for recording and storing predictions for high-energy physics observables independently of their parton distribution functions.


lib.rs:

PineAPPL is not an extension of APPLgrid.

Overview

The main type of this crate is Grid, which represents the interpolation grids that PineAPPL implements. Roughly speaking, a Grid is a three-dimensional array of Subgrid objects together with metadata. The three dimensions are

  1. (perturbative) orders, represented by the type Order and accessible by Grid::orders(),
  2. bins, whose limits can be accessed by Grid::bin_info(), and
  3. channels, whose definition is returned by Grid::channels().

Subgrid is a trait and objects that implement it are of the type SubgridEnum. The latter is an enum of different types that are optimized to different scenarios: fast event filling, small storage profile, etc.

Metadata

Metadata is a collection of key--value pairs, in which both keys and values are String objects. In metadata anything a user whishes can be stored. However, there are special keys, which have meaning to PineAPPL and/or its CLI pineappl. This metadata enables the CLI to automatically generate plots that are correctly labeled, for instance. For more applications see also the CLI tutorial.

Dependencies

~3.5MB
~73K SLoC