pub struct StructuralTofInputView<'a> {Show 16 fields
pub tof_us: &'a [f64],
pub hkl: &'a [[i32; 3]],
pub multiplicity: &'a [usize],
pub fractional_xyz: &'a [[f64; 3]],
pub occupancy: &'a [f64],
pub u_iso_angstrom2: &'a [f64],
pub anisotropic_mask: &'a [bool],
pub u_aniso_cif_angstrom2: &'a [[f64; 6]],
pub scattering_species: &'a [&'a str],
pub scale: f64,
pub coordinate_tolerance: f64,
pub correction_model: IntegratedIntensityCorrectionModel,
pub bank_geometry: TofBankGeometry,
pub instrument: TofInstrument,
pub support_fwhm: f64,
pub tail_log: f64,
}Expand description
Borrowed neutron structural and bank inputs for one TOF pattern.
Fields§
§tof_us: &'a [f64]Strictly increasing sample centers in microseconds.
hkl: &'a [[i32; 3]]Canonical Miller indices.
multiplicity: &'a [usize]Powder multiplicities.
fractional_xyz: &'a [[f64; 3]]Asymmetric-unit fractional coordinates.
occupancy: &'a [f64]Asymmetric-site occupancies.
u_iso_angstrom2: &'a [f64]Isotropic displacement values in square ångströms.
anisotropic_mask: &'a [bool]True for sites described by fixed CIF U tensors.
u_aniso_cif_angstrom2: &'a [[f64; 6]]CIF U tensors in component order 11,22,33,23,13,12.
scattering_species: &'a [&'a str]Exact bound-coherent neutron table key for every asymmetric site.
scale: f64Non-negative structural phase scale.
coordinate_tolerance: f64Fixed symmetry-expansion deduplication tolerance.
correction_model: IntegratedIntensityCorrectionModelExplicit neutral or one-dimensional neutron TOF correction.
bank_geometry: TofBankGeometryFixed focused-bank scattering geometry.
instrument: TofInstrumentBank-local TOF calibration and profile coefficients.
support_fwhm: f64Inclusive finite support radius in multiples of total FWHM.
tail_log: f64Exponential quadrature tail cutoff exp(-tail_log).
Trait Implementations§
Source§impl<'a> Clone for StructuralTofInputView<'a>
impl<'a> Clone for StructuralTofInputView<'a>
Source§fn clone(&self) -> StructuralTofInputView<'a>
fn clone(&self) -> StructuralTofInputView<'a>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl<'a> Copy for StructuralTofInputView<'a>
Auto Trait Implementations§
impl<'a> Freeze for StructuralTofInputView<'a>
impl<'a> RefUnwindSafe for StructuralTofInputView<'a>
impl<'a> Send for StructuralTofInputView<'a>
impl<'a> Sync for StructuralTofInputView<'a>
impl<'a> Unpin for StructuralTofInputView<'a>
impl<'a> UnsafeUnpin for StructuralTofInputView<'a>
impl<'a> UnwindSafe for StructuralTofInputView<'a>
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
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> ⓘ
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> ⓘ
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