[][src]Struct pineappl::grid::Order

pub struct Order {
    pub alphas: u32,
    pub alpha: u32,
    pub logxir: u32,
    pub logxif: u32,
}

Coupling powers for each grid.

Fields

alphas: u32

Exponent of the strong coupling.

alpha: u32

Exponent of the electromagnetic coupling.

logxir: u32

Exponent of the logarithm of the scale factor of the renomalization scale.

logxif: u32

Exponent of the logarithm of the scale factor of the factorization scale.

Implementations

impl Order[src]

#[must_use]pub const fn new(alphas: u32, alpha: u32, logxir: u32, logxif: u32) -> Self[src]

Constructor. This function mainly exists to have a way of constructing Order that is less verbose.

#[must_use]pub fn equal_after_sort(lhs: &[Self], rhs: &[Self]) -> bool[src]

Compares two vectors of Order for equality after sorting them.

Trait Implementations

impl Clone for Order[src]

impl Debug for Order[src]

impl<'de> Deserialize<'de> for Order[src]

impl Eq for Order[src]

impl Hash for Order[src]

impl Ord for Order[src]

impl PartialEq<Order> for Order[src]

impl PartialOrd<Order> for Order[src]

impl Serialize for Order[src]

impl StructuralEq for Order[src]

impl StructuralPartialEq for Order[src]

Auto Trait Implementations

impl RefUnwindSafe for Order

impl Send for Order

impl Sync for Order

impl Unpin for Order

impl UnwindSafe for Order

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.