pub struct SammyPltRecord {
pub energy_kev: f64,
pub data: f64,
pub uncertainty: f64,
pub theory_initial: f64,
pub theory_final: f64,
}Expand description
A single record from a SAMMY .plt reference output file.
Fields§
§energy_kev: f64Energy (keV). SAMMY .plt files use keV, not eV.
data: f64Experimental data (cross-section in barns, or transmission).
uncertainty: f64Uncertainty on the data.
theory_initial: f64Theoretical value before fitting (our comparison target).
theory_final: f64Theoretical value after fitting.
Trait Implementations§
Source§impl Clone for SammyPltRecord
impl Clone for SammyPltRecord
Source§fn clone(&self) -> SammyPltRecord
fn clone(&self) -> SammyPltRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SammyPltRecord
impl RefUnwindSafe for SammyPltRecord
impl Send for SammyPltRecord
impl Sync for SammyPltRecord
impl Unpin for SammyPltRecord
impl UnsafeUnpin for SammyPltRecord
impl UnwindSafe for SammyPltRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more