#[no_mangle]
pub unsafe extern "C" fn pineappl_grid_bin_normalizations(
    grid: *const Grid,
    bin_sizes: *mut f64
)
Expand description

Stores the bin sizes of grid in bin_sizes.

§Safety

If grid does not point to a valid Grid object, for example when grid is the null pointer, this function is not safe to call. The parameter bin_sizes must point to an array that is as long as grid has bins.