libome-rs 0.0.1

Rust bindings for libome, a C++ library for massive QCD operator matrix elements in x-space.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
define_rpd_ome!(
    /// Gluon-gluon operator matrix element A_{gg,Q}.
    ///
    /// This OME has regular, plus, and delta parts. It describes the
    /// gluon-to-gluon transition through a heavy-quark loop.
    ///
    /// # Example
    ///
    /// ```
    /// use libome_rs::AggQ;
    ///
    /// let val = AggQ::reg(0.25, -5.0, 3.0, 0.5);
    /// assert!(val.is_finite());
    /// ```
    AggQ,
    AggQ
);