function conv_h2hxt, helio, date, $
		roll=roll, $
		hxa=hxa, cmd=cmd, suncenter=suncenter
;+
; NAME:
;	CONV_H2HXT
; PURPOSE:
;	To convert from heliocentric coordinates to an HXT pixel location
; CALLING SEQUENCE:
; 	hxt = conv_h2hxt(helio, date)
;	hxt = conv_h2hxt('S13W19', '15-nov-91')
; INPUTS:
;       helio   - The heliocentric angle in degrees
;                       (0,*) = longitude (degrees) W positive
;                       (1,*) = latitude (degrees) N positive
; OUTPUTS:
;       hxt     - The pixel coordinates of the point(s) in question in 
;		  126 arcsec units (??)  Rectified HXA coordinates, in 
;		  HXT pitch units, as used in the Matsushita study
;                       (0,*) = E/W direction with W negative!
;				NOTE: This is opposite of SXT and HELIO
;                       (1,*) = N/S direction
; HISTORY:
;	written by HSH, July 29, 1992
;       TRM  June 1993 Modified to call conv_h2p.pro and changed the inputs
;	22-Jun-93 (MDM) - Modified the header some
;	16-Oct-93 (MDM) - Removed the tilt keyword input
;-

xy = conv_h2p(helio, date, roll=roll, hxa=hxa, cmd=cmd, suncenter=suncenter)
out = conv_p2hxt(xy)

return, out
end
