pro plot_uvcs_nonop,svmhk2,svmhk4,single=single,noconvert=noconvert 
; 
;     svmhk2 = array of all monitors from SVHK2 TLM stream generated by DACS 
;     svmhk4 = array of all monitors from SVHK4 TLM stream generated by DACS 
; 
;     single is an optional number that is from 0 to 4 that controls the 
;            plot number for a single plot.  If the parameter is omitted 
;            or 0 then all of the plots are made on a single page.  Otherwise 
;            the plot is the following 
; 
; @(#)plot_uvcs_nonop.pro	1.1 01/23/98 :LASCO IDL LIBRARY
;
; offset the beginning of HK before HK information begins 
; 
offset=12
; 
if keyword_set(noconvert) then begin 
        !y.title = 'Temp (DN)'  
        !y.range = [0,255] 
endif else begin 
        !y.title='Temp (Deg)' 
        !y.range = [0,40] 
endelse 
 
if keyword_set(single) then begin 
        !p.multi=0 
endif else begin 
        !p.multi=[0,2,2,0,0] 
        single = 0 
endelse 
 
getcputime,svmhk2,firstday,time2,cdstime=utc2
getcputime,svmhk4,firstday,time4,cdstime=utc4
 
!x.title = 'Time (Hours) Starting Date:  '+ str2utc(utc(0)) 
; 
;   UVCS TSU TRP1,   thermistor type 3 
; 
if ( (single eq 0) or (single eq 1) ) then begin 
   v = fix(svmhk2,offset+72,*))               ;Byte offset 72 
   if ( not keyword_set(noconvert) ) then v = cnvrt_temps (v,4) 
   utplot,time2,v,title='UVCS TSU Temp Ref Point' 
endif 
 
; 
;   UVCS REU TRP2,   thermistor type 3 
; 
if ( (single eq 0) or (single eq 2) ) then begin 
   v = fix(svmhk4(offset+152,*))               ;Byte offset 152 
   if ( not keyword_set(noconvert) ) then v = cnvrt_temps (v,4) 
   utplot,time4,v,title='UVCS REU Temp Ref Point' 
endif 
 
; 
;   UVCS TSU TH2,   thermistor type 3 
; 
if ( (single eq 0) or (single eq 3) ) then begin 
   v = fix(svmhk2(offset+61,*))               ;Byte offset 61 
   if ( not keyword_set(noconvert) ) then v = cnvrt_temps (v,4) 
   utplot,time2,v,title='UVCS Thermistor 1' 
endif 
 
; 
;   UVCS TSU TH2,   thermistor type 3 
; 
if ( (single eq 0) or (single eq 4) ) then begin 
   v = fix(svmhk4(offset+152,*))               ;Byte offset 152 
   if ( not keyword_set(noconvert) ) then v = cnvrt_temps (v,4) 
   utplot,time4,v,title='UVCS Thermistor 2' 
endif 
 
!y.title = '' 
!p.multi = 0 
!x.title = '' 
empty 
return 
end 
