Program s2_plplot

program s2_plplot

        ! Uses
    use s2_types_mod
    use s2_pl_mod

        ! Calls
    call parse_options
    call s2_pl_free
    call s2_pl_plot

        ! Variables
    character (len=S2_STRING_LEN) :: filename_in
    character (len=S2_STRING_LEN) :: filename_out
    logical :: scale = .true.
    character (len=S2_STRING_LEN) :: title = ''
    type (s2_pl) :: pl

        ! Subroutines and functions
    subroutine parse_options ()

end program s2_plplot
Read a fit pl file and plot the values to and output postscript file.

Usage:

Author: J. D. McEwen (mcewen@mrao.cam.ac.uk)

Version: 0.1 - April 2005


Description of Variables

filename_in

character (len=S2_STRING_LEN) :: filename_in

filename_out

character (len=S2_STRING_LEN) :: filename_out

scale

logical :: scale = .true.

title

character (len=S2_STRING_LEN) :: title = ''

pl

type (s2_pl) :: pl

Description of Subroutines and Functions

parse_options

subroutine parse_options ()
    ! Calls: getArgument
end subroutine parse_options
Parse the options passed when program called.

Author: J. D. McEwen (mcewen@mrao.cam.ac.uk)

Version: 0.1 - November 2004