Class Pulse

    • Constructor Detail

      • Pulse

        public Pulse()
        Creates a Pulse with default values of pulse width and laser spot diameter (as per XML specification) and with a default pulse temporal shape (rectangular).
      • Pulse

        public Pulse​(Pulse p)
        Copy constructor
        Parameters:
        p - the pulse, parameters of which will be copied.
    • Method Detail

      • copy

        public Pulse copy()
      • initFrom

        public void initFrom​(Pulse pulse)
      • setPulseWidth

        public void setPulseWidth​(NumericProperty pulseWidth)
      • setLaserEnergy

        public void setLaserEnergy​(NumericProperty laserEnergy)
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        The listed parameters for Pulse are: PulseShape, PULSE_WIDTH, SPOT_DIAMETER.
        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • listedTypes

        public List<Property> listedTypes()
        Description copied from class: PropertyHolder

        By default, collects a list of default properties corresponding to types defined by listedKeywords(). However, this method is overridable to include non-numeric properties.

        Overrides:
        listedTypes in class PropertyHolder
        Returns:
        a list of Property instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • 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.