[][src]Struct lhef::HEPEUP

pub struct HEPEUP {
    pub NUP: i32,
    pub IDRUP: i32,
    pub XWGTUP: f64,
    pub SCALUP: f64,
    pub AQEDUP: f64,
    pub AQCDUP: f64,
    pub IDUP: Vec<i32>,
    pub ISTUP: Vec<i32>,
    pub MOTHUP: Vec<[i32; 2]>,
    pub ICOLUP: Vec<[i32; 2]>,
    pub PUP: Vec<[f64; 5]>,
    pub VTIMUP: Vec<f64>,
    pub SPINUP: Vec<f64>,
    pub info: String,
    pub attr: XmlAttr,
}

Event information

See https://arxiv.org/abs/hep-ph/0109068v1 for details on the fields.

Fields

NUP: i32

Number of particles

IDRUP: i32

Process ID

XWGTUP: f64

Event weight

SCALUP: f64

Scale in GeV

AQEDUP: f64

Value of the QED coupling α

AQCDUP: f64

Value of the QCD coupling α_s

IDUP: Vec<i32>

Particle IDs

ISTUP: Vec<i32>

Particle status

MOTHUP: Vec<[i32; 2]>

Indices of decay mothers

ICOLUP: Vec<[i32; 2]>

Colour flow

PUP: Vec<[f64; 5]>

Particle momentum in GeV

VTIMUP: Vec<f64>

Lifetime in mm

SPINUP: Vec<f64>

Spin angle

info: String

Optional event information

attr: XmlAttr

Attributes in tag

Trait Implementations

impl Clone for HEPEUP[src]

impl Debug for HEPEUP[src]

impl PartialEq<HEPEUP> for HEPEUP[src]

impl StructuralPartialEq for HEPEUP[src]

Auto Trait Implementations

impl RefUnwindSafe for HEPEUP

impl Send for HEPEUP

impl Sync for HEPEUP

impl Unpin for HEPEUP

impl UnwindSafe for HEPEUP

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> 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.