plot_data Derived Type

type, public, abstract, extends(plot_object) :: plot_data

A container for plot data.


Contents


Type-Bound Procedures

procedure(get_string_result), public, deferred :: get_command_string

  • function get_string_result(this) result(x) Prototype

    Returns a string from a plot_object.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_object), intent(in) :: this

    The plot_object object.

    Return Value character(len=:), allocatable

    The result string.

procedure(pd_get_string_result), public, deferred :: get_data_string

  • function pd_get_string_result(this) result(x) Prototype

    Retrieves a string from a plot_data object.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(in) :: this

    The plot_data object.

    Return Value character(len=:), allocatable

    The string.

procedure, public :: get_name => pd_get_name

  • private pure function pd_get_name(this) result(txt)

    Gets the name to associate with this data set.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(in) :: this

    The plot_data object.

    Return Value character(len=:), allocatable

    The name.

procedure, public :: set_name => pd_set_name

  • private subroutine pd_set_name(this, txt)

    Sets the name to associate with this data set.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(inout) :: this

    The plot_data object.

    character(len=*), intent(in) :: txt

    The name.