Class ExponentiallyModifiedGaussian

    • Constructor Detail

      • ExponentiallyModifiedGaussian

        public ExponentiallyModifiedGaussian()
        Creates an exponentially modified Gaussian with the default parameter values.
    • Method Detail

      • evaluateAt

        public double evaluateAt​(double time)
        Evaluates the laser power function. The error function is calculated using the ApacheCommonsMath library tools.
        Specified by:
        evaluateAt in class PulseTemporalShape
        Parameters:
        time - is measured from the 'start' of laser pulse
        Returns:
        a double value, representing the pulse function at time
        See Also:
        https://tinyurl.com/ExpModifiedGaussian
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        Description copied from class: PropertyHolder

        By default, this will search the children of this PropertyHolder to collect the types of their listed numeric parameters recursively.

        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
        See Also:
        pulse.properties.NumericPropertyKeyword.SKEW_MU, pulse.properties.NumericPropertyKeyword.SKEW_LAMBDA, pulse.properties.NumericPropertyKeyword.SKEW_SIGMA
      • setLambda

        public void setLambda​(NumericProperty p)
        Sets the SKEW_LAMBDA parameter
        Parameters:
        p - the λ parameter
      • setMu

        public void setMu​(NumericProperty p)
        Sets the SKEW_MU parameter
        Parameters:
        p - the μ parameter
      • setSigma

        public void setSigma​(NumericProperty p)
        Sets the SKEW_SIGMA parameter
        Parameters:
        p - the σ parameter
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty property)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.