	PRO CreDvec, fidMap=Map, tsxtf=tsxtf, tsxtp=tsxtp, toth3=toth3,$
		     fnMap=fnMap, dsxtf=dsxtf, dsxtp=dsxtp, doth3=doth3
;	----------------------------------------------------------------
;+							3-Jul-91
;	Name:
;		CreDvec (Create Data Vectors)
;	Purpose:
;		From the user request record (fnMap) and the lists of
;		times for data extraction returns the lists of data-
;		pointers (roadmap indices).
;	CALLING SEQUENCE:
;		CreDvec, [fidMap=fidmap, tsxtf=tsxtf, tsxtp=tsxtp, 
;			toth3=toth3, fnMap=fnMap, dsxtf=dsxtf, 
;			dsxtp=dsxtp, doth3=doth3]
;	Input/Keyword:
;		fidMap	user request record with fileIDs
;		tsxtf	list of requested full frame images for SXT
;		tsxtp	list of requested partial frames for SXT
;		toth3	list of requested times for the other
;	Output/Keyword:
;		fnMap	user request record with fileNames
;		dsxtf	list of requested roadmap indices
;		dsxtp	list of requested roadmap indices
;		doth3	list of requested ...
;	History:
;		written 3-July-91 by GAL
;-
;	--------------------------------------------------------------
;	ON_ERROR, 2 	;force a return to caller on error

	err = MkFnMap(fidmap=map, fnMap=fnMap)	;create fnMap

	fnerr = CkFurFiles(fnMap)		;get locations of files

	Verr = DsetVec(fnMap=FnMap, tsxtf=tsxtf, tsxtp=tsxtp,  $
		toth3=toth3, dsxtf=dsxtf, dsxtp=dsxtp, doth3=doth3)

	END
