----- file created by makedoc on: Tue Feb 11 14:15:24 2003
----- Documentation for /scisoft/IDL/scisoft/xaid/src//plotset.pro -----

 NAME:
	PLOTSET

 PURPOSE:
	This procedure produces a graphic with a data set.

 CATEGORY:
	XAID xafs data analysis package 

 CALLING SEQUENCE:

	PLOTSET,set

 INPUTS:
	set:	fltarr(ncol,npoints) set of data

 OPTIONAL INPUTS:
	
 KEYWORD PARAMETERS:
	XRANGE=[xmin,xmax] range of the x variable for the plot
	YRANGE=[ymin,ymax]              y
	XYRANGE=[xymin,xymax] sets XRANGE and YRANGE simultaneously.
	TITLE='top_title' title to be written at the top
	XTITLE='x_title'  title of x axis
	YTITLE='y_title'           y
	TIT_STR= the titles in a structure of type title_str = 
	 {name:'set name', x:'x title', y:'y title', top:'top title'}
	 (title_str has lower priority than title,xtitle and ytitle)
	OVER  = if set to 1 then overplots the previous plot
	PSYM = symbol of the plot (0=cont. line, default):
		1 Plus sign
		2 Asterisk
		3 Period
		4 Diamond
		5 Triangle
		6 Square
		7 X
		8 (See IDL users guide, D-15)
		9 Undefined
		10 Histogram mode

 OUTPUTS:
	a plot

 OPTIONAL OUTPUTS:

 COMMON BLOCKS:

 SIDE EFFECTS:

 RESTRICTIONS:

 PROCEDURE:
	Straightforward

 EXAMPLE:

		PLOTSET,myset,xrange=[0,15]

 MODIFICATION HISTORY:
 	Written by:	Manuel Sanchez del Rio. ESRF
	January, 1993	
	93-05-27 MSR adds title_str keyword

