pub struct TchShape {
pub total_fwhm: f64,
pub eta: f64,
pub d_total_fwhm_d_gaussian_fwhm: f64,
pub d_total_fwhm_d_lorentzian_fwhm: f64,
pub d_eta_d_gaussian_fwhm: f64,
pub d_eta_d_lorentzian_fwhm: f64,
}Expand description
Transformed TCH pseudo-Voigt shape and analytical width derivatives.
Fields§
§total_fwhm: f64Common pseudo-Voigt full width at half maximum.
eta: f64Lorentzian mixing fraction.
d_total_fwhm_d_gaussian_fwhm: f64Derivative of total FWHM with respect to Gaussian component FWHM.
d_total_fwhm_d_lorentzian_fwhm: f64Derivative of total FWHM with respect to Lorentzian component FWHM.
d_eta_d_gaussian_fwhm: f64Derivative of eta with respect to Gaussian component FWHM.
d_eta_d_lorentzian_fwhm: f64Derivative of eta with respect to Lorentzian component FWHM.
Implementations§
Trait Implementations§
impl Copy for TchShape
impl StructuralPartialEq for TchShape
Auto Trait Implementations§
impl Freeze for TchShape
impl RefUnwindSafe for TchShape
impl Send for TchShape
impl Sync for TchShape
impl Unpin for TchShape
impl UnsafeUnpin for TchShape
impl UnwindSafe for TchShape
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more