Class Baseline

    • Constructor Detail

      • Baseline

        public Baseline()
    • Method Detail

      • copy

        public abstract Baseline copy()
      • valueAt

        public abstract double valueAt​(double x)
        Calculates the baseline at the given position.
        Parameters:
        x - the position on the profile (e.g., the time value)
        Returns:
        the baseline value
      • doFit

        protected abstract void doFit​(List<Double> x,
                                      List<Double> y)
        Calculates the baseline parameters based on input arguments.

        This usually runs a simple least-squares estimation of the parameters of this baseline using the specified data within the time range rangeMin < t < rangeMax. If no data is available, the method will NOT change the baseline parameters. Upon completion, the method will use the respective set methods of this class to update the parameter values, triggering whatever events are associated with them.

        Parameters:
        x -
        y -
      • fitTo

        public void fitTo​(DiscreteInput data)
        Calls fitTo using the default time range for the data: -Infinity < t < ZERO_LEFT, where the upper bound is a small negative constant.
        Parameters:
        data - the experimental data stretching to negative time values
        See Also:
        fitTo(ExperimentalData,double,double)