alpha_g_physics 0.1.5

Data analysis library for the ALPHA-g experiment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This is a macro definition for a convenient way to include multiple files
// as byte arrays. It takes a directory and multiple file names.
// The contents of all files are embedded at compile time.
macro_rules! includes {
    ($dname:ident = $dir:expr; $($fname:ident = $fpath:expr,)*) => (
        $(
            const $fname: &'static [u8] = include_bytes!(concat!($dir, $fpath));
        )*
    )
}

// Anode wires calibration
pub(crate) mod wires;
// Pad calibration
pub(crate) mod pads;