pineappl_applgrid 1.3.0

PineAPPL's interface to APPLgrid
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CALCULATION_HPP
#define CALCULATION_HPP

#include <appl_grid/appl_grid.h>

// hack to make declaration of `CALCULATION` in Rust an element of the class `grid`
using grid_CALCULATION = appl::grid::CALCULATION;

// enable passing void pointers
using c_void = void;

#endif