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

#107 in Science

Download history 17/week @ 2024-08-16 5/week @ 2024-08-23 259/week @ 2024-08-30 13/week @ 2024-09-06 88/week @ 2024-09-13 69/week @ 2024-09-20 38/week @ 2024-09-27 318/week @ 2024-10-04 132/week @ 2024-10-11 392/week @ 2024-10-18 106/week @ 2024-10-25 67/week @ 2024-11-01 25/week @ 2024-11-08 43/week @ 2024-11-15 55/week @ 2024-11-22 59/week @ 2024-11-29

185 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
~72K SLoC