PRO xrcf_params, ANGLES = angles, PERIODS = periods, ROWLAND = rowland, $ HC = hc, NAMES = names, FOCAL_LEN = focal_len, $ HSI_PIXEL = hsi_pixel, HSI_ANGLE = hsi_angle, TOGA_RC = toga_rc, $ ROWLANDS = rowlands ; Procedure to provide XRCF parameters to other routines ; Any changes to these values should happen here followed by ; the command .run xrcf_params to the IDL command line. ; 12/24/96 KAF edited this with updated angles based on HSI 3D test. ; 1/04/97 KAF edited this with updated angles based on HSI 3D test. ; 7/10/97 dd Add the TOGA_RC keyword ; 8/20/97 dd Change the Rowland spacing to 8788.04 mm. ; 12/15/97 dd Update the periods and rowland spacing for ; "Prelim report" values. Add ROWLANDS. ; ; values are in the order: LEG, MEG, HEG names = ['LEG','MEG','HEG'] ; nominally 0., +5., -5. degrees ;angles = [0.01, 5.0, -5.0] ;angles = [-0.0387, 4.6822, -5.2736] angles = [0.0059298, 4.7411532, -5.1908347] ; nominally 9912.50, 4008.0, 2000.0 ;periods = [9912.50, 4008.00, 2000.00] ;periods = [9903.90, 4000.77, 2000.95] periods = [9912.16, 4001.41, 2000.81] ; nominally 8782.8 mm ; rowland = 8782.80 ; rowland = 8788.04 rowland = 8782.8 rowlands = [8788.04, 8782.8, 8782.8] ; TOGA rowland spacing toga_rc = 5366.55 ; hc hc = 12.39852035 ; focal length at XRCF nominally 100258.30 mm focal_len = 10258.30 ; HSI pixel size in microns ; Value from Ian E and Mike Juda compromise from TOGA HSI ; hsi_pixel = 6.428 ; ; From Ian Evans 12/21/96: hsi_pixel = 6.42368 ; stage Y microns / HSI pixel hsi_angle = -0.5181 ; degrees RETURN END