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_plplotRead 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
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
subroutine parse_options () ! Calls: getArgument end subroutine parse_optionsParse the options passed when program called.
Author: J. D. McEwen (mcewen@mrao.cam.ac.uk)
Version: 0.1 - November 2004