pub struct TofChebyshevBackground { /* private fields */ }Expand description
Refinable Chebyshev series on one explicit TOF interval.
For u = 2 (tof - lower) / (upper - lower) - 1, the background is
sum_k coefficient[k] T_k(u). Coefficient derivatives are the corresponding
Chebyshev basis values and are independent of the coefficients.
Implementations§
Source§impl TofChebyshevBackground
impl TofChebyshevBackground
Sourcepub fn new(
background_id: RecordId,
coefficients: Vec<f64>,
domain_us: [f64; 2],
) -> Result<Self, TofLeBailError>
pub fn new( background_id: RecordId, coefficients: Vec<f64>, domain_us: [f64; 2], ) -> Result<Self, TofLeBailError>
Construct a non-empty finite Chebyshev series on an increasing interval.
§Errors
Returns TofLeBailError for invalid identity, coefficients, or domain.
Sourcepub fn validate(&self) -> Result<(), TofLeBailError>
pub fn validate(&self) -> Result<(), TofLeBailError>
Revalidate the model and its explicit microsecond domain.
§Errors
Returns TofLeBailError for empty/non-finite coefficients or an invalid domain.
Sourcepub const fn background_id(&self) -> &RecordId
pub const fn background_id(&self) -> &RecordId
Stable background identifier.
Sourcepub fn coefficients(&self) -> &[f64]
pub fn coefficients(&self) -> &[f64]
Current coefficients in increasing Chebyshev order.
Sourcepub fn calculate(&self, tof_us: &[f64]) -> Result<Vec<f64>, TofLeBailError>
pub fn calculate(&self, tof_us: &[f64]) -> Result<Vec<f64>, TofLeBailError>
Evaluate the series on a sorted finite microsecond grid.
§Errors
Returns TofLeBailError if the grid is invalid or outside the domain.
Trait Implementations§
Source§impl Clone for TofChebyshevBackground
impl Clone for TofChebyshevBackground
Source§fn clone(&self) -> TofChebyshevBackground
fn clone(&self) -> TofChebyshevBackground
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TofChebyshevBackground
impl Debug for TofChebyshevBackground
Source§impl PartialEq for TofChebyshevBackground
impl PartialEq for TofChebyshevBackground
impl StructuralPartialEq for TofChebyshevBackground
Auto Trait Implementations§
impl Freeze for TofChebyshevBackground
impl RefUnwindSafe for TofChebyshevBackground
impl Send for TofChebyshevBackground
impl Sync for TofChebyshevBackground
impl Unpin for TofChebyshevBackground
impl UnsafeUnpin for TofChebyshevBackground
impl UnwindSafe for TofChebyshevBackground
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.