Skip to main content

MeasureJetSpectrumRow

Struct MeasureJetSpectrumRow 

Source
pub struct MeasureJetSpectrumRow {
    pub term_name: String,
    pub eps_min: f64,
    pub eps_max: f64,
    pub n_scales: usize,
    pub length_scale: f64,
    pub spec_order_s: f64,
    pub per_scale: Vec<(f64, f64)>,
    pub implied_order: Option<f64>,
}
Expand description

Measure-jet scale spectrum row: the realized multiscale band of one measure-jet term, plus — in per-scale-candidate mode — the fitted physical λ̂_ℓ per scale and the implied continuous order ŝ = −½ · (least-squares slope of ln λ̂_ℓ on ln ε_ℓ). per_scale empty means the term carries a single fused jet-energy penalty, so only the band and the spec’s order are shown. main.rs computes everything (measure_jet_implied_order derives ŝ); this row stays plain data like the rest of the file.

Fields§

§term_name: String§eps_min: f64§eps_max: f64§n_scales: usize§length_scale: f64§spec_order_s: f64§per_scale: Vec<(f64, f64)>

Per-scale (ε_ℓ, physical λ̂_ℓ) pairs, ascending in ε; empty = fused.

§implied_order: Option<f64>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.