/Spextool/pro/xplotflatprofiles.pro

http://github.com/jbochanski/TFIRE · Prolog · 514 lines · 365 code · 149 blank · 0 comment · 19 complexity · 8076960b465b224090e059acc9857490 MD5 · raw file

  1. pro xplotflatprofiles_initcommon
  2. ; Build the structures which will hold the important info.
  3. ; w - contains info pertaining to widget operations.
  4. common xplotflatprofiles_state, state
  5. w = {max_fld:[0L,0L],$
  6. min_fld:[0L,0L],$
  7. message:0L,$
  8. order_dl:0L,$
  9. range_base:0L,$
  10. plotwin:0L,$
  11. xplotflatprofiles_base:0L}
  12. p = {buffer:[0L,0L],$
  13. fix:0L,$
  14. plotwin_wid:0L,$
  15. pixmap_wid:0L,$
  16. pixpp:((get_screen_size())[1]-150)/float(6),$
  17. ysize:0,$
  18. pscale:!p,$
  19. ranges:ptr_new(fltarr(2)),$
  20. rangeorder:0,$
  21. scrollsize:[600L,(get_screen_size())[1]-150],$
  22. xscale:!x,$
  23. yscale:!y}
  24. d = {deg:0L,$
  25. orders:ptr_new(intarr(2)),$
  26. norders:0,$
  27. profiles:ptr_new(fltarr(2,2)),$
  28. sgdeg:0.,$
  29. sgwidth:0.,$
  30. type:'',$
  31. x:ptr_new(fltarr(2))}
  32. state = {w:w,p:p,d:d}
  33. end
  34. ;
  35. ;******************************************************************************
  36. ;
  37. pro xplotflatprofiles_cleanup,event
  38. common xplotflatprofiles_state
  39. ptr_free, state.d.orders
  40. ptr_free, state.d.profiles
  41. ptr_free, state.d.x
  42. state = 0B
  43. end
  44. ;
  45. ;******************************************************************************
  46. ;
  47. pro xplotflatprofiles_minmax
  48. common xplotflatprofiles_state
  49. widget_control, state.w.min_fld[1], set_value=strcompress($
  50. (*state.p.ranges)[0,state.p.rangeorder], /re)
  51. widget_control, state.w.max_fld[1], set_value=strcompress($
  52. (*state.p.ranges)[1,state.p.rangeorder], /re)
  53. end
  54. ;
  55. ;******************************************************************************
  56. ;
  57. pro xplotflatprofiles_plot,PS=ps
  58. common xplotflatprofiles_state
  59. if keyword_set(PS) then begin
  60. xplotflatprofiles_plotprofiles
  61. endif else begin
  62. wset, state.p.plotwin_wid
  63. erase
  64. xplotflatprofiles_plotprofiles
  65. wset, state.p.pixmap_wid
  66. erase
  67. xplotflatprofiles_plotprofiles
  68. endelse
  69. end
  70. ;
  71. ;******************************************************************************
  72. ;
  73. pro xplotflatprofiles_plotprofiles
  74. common xplotflatprofiles_state
  75. !p.multi[2] = state.d.norders
  76. !p.multi[0] = state.d.norders
  77. if not state.p.fix then *state.p.ranges = fltarr(2,state.d.norders)
  78. for i = 0, state.d.norders-1 do begin
  79. j = state.d.norders-1-i
  80. prof = (*state.d.profiles)[*,j]
  81. ; Get plot range.
  82. if state.p.fix then begin
  83. ymin = (*state.p.ranges)[0,i]
  84. ymax = (*state.p.ranges)[1,i]
  85. endif else begin
  86. ymin = min(prof,max=ymax)
  87. del = ymax-ymin
  88. ymin = ymin-0.1*del
  89. ymax = ymax+0.1*del
  90. endelse
  91. title = '!5Order '+strcompress((*state.d.orders)[j], /re)
  92. plot,*state.d.x,prof,charsize=2,$
  93. xticks=tics,xticklen = 0.06,xminor=5,xtitle='!5Pixels',$
  94. title=title,ytitle='!5Flux',/ysty,yrange=[ymin,ymax],/xsty
  95. if not state.p.fix then (*state.p.ranges)[*,i] = !y.crange
  96. if state.d.type eq 'Disp' then begin
  97. result = robustsg(*state.d.x,prof,state.d.sgwidth,$
  98. 3,0.01,DEGREE=state.d.sgdeg)
  99. oplot,result[*,0],result[*,1],color=2
  100. endif
  101. if state.d.type eq 'Spat' then begin
  102. coeff = robustpoly1d(*state.d.x,prof,state.d.deg,3,0.1,/SILENT)
  103. oplot,*state.d.x,poly(*state.d.x,coeff),color=2
  104. endif
  105. if i eq 0 then begin
  106. state.p.pscale = !p
  107. state.p.xscale = !x
  108. state.p.yscale = !y
  109. endif
  110. endfor
  111. !p.multi=0
  112. end
  113. ;
  114. ;******************************************************************************
  115. ;
  116. pro xplotflatprofiles_range
  117. common xplotflatprofiles_state
  118. textfont = '-adobe-helvetica-medium-r-normal--0-0-75-75-p-0-iso8859-1'
  119. buttonfont = '-adobe-helvetica-bold-r-normal--14-140-75-75-p-82-iso8859-1'
  120. if not xregistered('xplotprofiles_range') then begin
  121. state.w.range_base = widget_base(GROUP_LE=state.w.xplotflatprofiles_base,$
  122. /COLUMN, $
  123. TITLE='Plot Range')
  124. value = 'Order '+strcompress( reverse((*state.d.orders)), /re)
  125. state.w.order_dl = widget_droplist(state.w.range_base,$
  126. font=buttonfont,$
  127. value=value,$
  128. /dynamic_resize,$
  129. event_pro='xplotflatprofiles_button_event',$
  130. uvalue='Order')
  131. min = coyote_field2(state.w.range_base,$
  132. labelfont=buttonfont,$
  133. fieldfont=textfont,$
  134. title='Min:',$
  135. uvalue='Min',$
  136. xsize=10,$
  137. /cr_only,$
  138. event_pro = 'xplotflatprofiles_button_event',$
  139. textid=textid)
  140. state.w.min_fld = [min,textid]
  141. max = coyote_field2(state.w.range_base,$
  142. labelfont=buttonfont,$
  143. fieldfont=textfont,$
  144. title='Max:',$
  145. uvalue='Max',$
  146. xsize=10,$
  147. /cr_only,$
  148. event_pro = 'xplotflatprofiles_button_event',$
  149. textid=textid)
  150. state.w.max_fld = [max,textid]
  151. kill = widget_button(state.w.range_base,$
  152. value='Quit',$
  153. uvalue='Quit Range',$
  154. event_pro = 'xplotflatprofiles_button_event',$
  155. font=buttonfont)
  156. widget_control, state.w.range_base, /Realize
  157. ; Start the Event Loop. This will be a non-blocking program.
  158. XManager, 'xplotprofiles_range', $
  159. state.w.range_base, $
  160. /No_Block
  161. event_handler='xplotprofiles_buttons'
  162. xplotflatprofiles_minmax
  163. state.p.fix = 1
  164. endif else begin
  165. value = 'Order '+strcompress( reverse((*state.d.orders)), /re)
  166. widget_control, state.w.order_dl, set_value=value
  167. state.p.rangeorder = 0
  168. xplotprofiles_minmax
  169. endelse
  170. end
  171. ;
  172. ;******************************************************************************
  173. ;
  174. pro xplotflatprofiles_startup,GROUP_LEADER=group_leader
  175. common xplotflatprofiles_state
  176. buttonfont = '-adobe-helvetica-bold-r-normal--14-140-75-75-p-82-iso8859-1'
  177. ; Make the widget
  178. state.w.xplotflatprofiles_base = widget_base(title='Plot Profiles',$
  179. /column,$
  180. group_leader=group_leader,$
  181. /tlb_size_events)
  182. plot_base = widget_base(state.w.xplotflatprofiles_base,$
  183. /column,$
  184. frame=2)
  185. row = widget_base(plot_base,$
  186. /row)
  187. button = widget_button(row,$
  188. font=buttonfont,$
  189. event_pro = 'xplotflatprofiles_button_event',$
  190. value='Plot PS',$
  191. uvalue='Plot PS')
  192. button = widget_button(row,$
  193. font=buttonfont,$
  194. value='Write FITS',$
  195. event_pro = 'xplotflatprofiles_button_event',$
  196. uvalue='Write FITS')
  197. button = widget_button(row,$
  198. FONT=buttonfont,$
  199. VALUE='Range',$
  200. event_pro = 'xplotflatprofiles_button_event',$
  201. UVALUE='Range')
  202. quit_button = widget_button(row,$
  203. font=buttonfont,$
  204. value='Done',$
  205. uvalue='Quit',$
  206. event_pro = 'xplotflatprofiles_button_event')
  207. state.w.message = widget_text(row, $
  208. YSIZE=1)
  209. state.w.plotwin = widget_draw(plot_base,$
  210. xsize=state.p.scrollsize[0],$
  211. ysize=state.p.ysize,$
  212. x_scroll_size=state.p.scrollsize[0],$
  213. y_scroll_size=state.p.scrollsize[1],$
  214. event_pro = 'xplotflatprofiles_plotwin_event',$
  215. /scroll,$
  216. /motion_events,$
  217. /button_events,$
  218. uvalue='Plot Window')
  219. widget_control, state.w.xplotflatprofiles_base, /Realize
  220. ; Get plotwin ids
  221. widget_control, state.w.plotwin, get_value = x
  222. state.p.plotwin_wid = x
  223. window, /free, /pixmap,xsize=state.p.scrollsize[0],$
  224. ysize=state.p.ysize
  225. state.p.pixmap_wid = !d.window
  226. ; Start the Event Loop. This will be a non-blocking program.
  227. XManager, 'xplotflatprofiles', $
  228. state.w.xplotflatprofiles_base, $
  229. /No_Block,$
  230. event_handler='xplotflatprofiles_resize',$
  231. cleanup = 'xplotflatprofiles_cleanup'
  232. geom = widget_info(state.w.xplotflatprofiles_base, /geometry)
  233. state.p.buffer[0] = geom.xsize-state.p.scrollsize[0]
  234. state.p.buffer[1] = geom.ysize-state.p.ysize
  235. end
  236. ;
  237. ;******************************************************************************
  238. ;
  239. ; ------------------------------Event Handlers--------------------------------
  240. ;
  241. ;******************************************************************************
  242. ;
  243. pro xplotflatprofiles_button_event,event
  244. common xplotflatprofiles_state
  245. widget_control, event.id, GET_UVALUE = uvalue
  246. case uvalue of
  247. 'Order': begin
  248. state.p.rangeorder = event.index
  249. xplotflatprofiles_minmax
  250. end
  251. 'Min': begin
  252. min = cfld(state.w.min_fld,4,CANCEL=cancel)
  253. if cancel then goto, cont
  254. (*state.p.ranges)[0,state.p.rangeorder] = min
  255. xplotflatprofiles_plot
  256. setfocus,state.w.max_fld
  257. end
  258. 'Max': begin
  259. max = cfld(state.w.max_fld,4,CANCEL=cancel)
  260. if cancel then goto, cont
  261. (*state.p.ranges)[1,state.p.rangeorder] = max
  262. xplotflatprofiles_plot
  263. setfocus,state.w.min_fld
  264. end
  265. 'Plot PS': begin
  266. forminfo = CMPS_FORM(/INITIALIZE,SELECT='Full Portrait (color)')
  267. formInfo = CMPS_FORM(Cancel=canceled, $
  268. button_names = ['Create PS File'],$
  269. defaults=forminfo,$
  270. Parent=state.w.xplotflatprofiles_base)
  271. IF NOT canceled THEN BEGIN
  272. thisDevice = !D.Name
  273. Set_Plot, "PS"
  274. Device, _Extra=formInfo
  275. xplotflatprofiles_plot,/PS
  276. Device, /Close
  277. Set_Plot, thisDevice
  278. !p.background=0
  279. ENDIF
  280. end
  281. 'Quit': widget_control, event.top, /DESTROY
  282. 'Quit Range': begin
  283. widget_control, event.top, /DESTROY
  284. state.p.fix = 0
  285. end
  286. 'Range': xplotflatprofiles_range
  287. 'Write FITS': begin
  288. path = dialog_pickfile(DIALOG_PARENT=state.w.xplotflatprofiles_base,$
  289. file='idl.fits')
  290. if path ne '' then writefits,path,[[*state.d.x_arcs],$
  291. [*state.d.profiles]]
  292. end
  293. endcase
  294. cont:
  295. end
  296. ;
  297. ;******************************************************************************
  298. ;
  299. pro xplotflatprofiles_plotwin_event,event
  300. common xplotflatprofiles_state
  301. !p = state.p.pscale
  302. !x = state.p.xscale
  303. !y = state.p.yscale
  304. x = event.x/float(state.p.scrollsize[0])
  305. y = event.y/float(state.p.ysize)
  306. xy = convert_coord(x,y,/NORMAL,/TO_DATA)
  307. ; Update cursor position.
  308. label = 'Cursor X: '+strtrim(xy[0],2)+'
  309. widget_control,state.w.message,set_value=label
  310. ; Copy the pixmaps and draw the lines.
  311. wset, state.p.plotwin_wid
  312. device, copy=[0,0,state.p.scrollsize[0],state.p.ysize,0,0,$
  313. state.p.pixmap_wid]
  314. plots, [event.x,event.x],[0,state.p.ysize],color=2,/DEVICE
  315. end
  316. ;
  317. ;******************************************************************************
  318. ;
  319. pro xplotflatprofiles_resize, event
  320. common xplotflatprofiles_state
  321. widget_control, state.w.xplotflatprofiles_base, tlb_get_size = size
  322. state.p.scrollsize[0]=size[0]-state.p.buffer[0]
  323. state.p.scrollsize[1]=size[1]-state.p.buffer[1]
  324. widget_control, state.w.plotwin, xsize=state.p.scrollsize[0]
  325. widget_control, state.w.plotwin, ysize=state.p.scrollsize[1]
  326. state.p.ysize = state.p.scrollsize[1] > $
  327. state.p.pixpp*state.d.norders*(1 > (2-state.d.norders*0.1))
  328. widget_control, state.w.plotwin, draw_ysize=state.p.ysize
  329. widget_control, state.w.plotwin,draw_xsize=state.p.scrollsize[0]
  330. wdelete,state.p.pixmap_wid
  331. window, /free, /pixmap,xsize=state.p.scrollsize[0],$
  332. ysize=state.p.ysize
  333. state.p.pixmap_wid = !d.window
  334. xplotflatprofiles_plot
  335. end
  336. ;
  337. ;******************************************************************************
  338. ;
  339. ; ------------------------------Main Program--------------------------------
  340. ;
  341. ;******************************************************************************
  342. ;
  343. pro xplotflatprofiles,x,profiles,orders,DISP=disp,SPAT=spat,$
  344. GROUP_LEADER=group_leader
  345. common xplotflatprofiles_state
  346. if not xregistered('xplotflatprofiles') then xplotflatprofiles_initcommon
  347. state.d.norders = n_elements(orders)
  348. state.p.ysize = state.p.scrollsize[1] > $
  349. state.p.pixpp*state.d.norders*(1 > (2-state.d.norders*0.1))
  350. *state.d.orders = orders
  351. *state.d.x = x
  352. *state.d.profiles = profiles
  353. if not xregistered('xplotflatprofiles') then xplotflatprofiles_startup,$
  354. GROUP_LEADER=group_leader
  355. if n_elements(DISP) ne 0 then begin
  356. state.d.sgdeg = disp[1]
  357. state.d.sgwidth = disp[0]
  358. state.d.type = 'Disp'
  359. endif
  360. if n_elements(SPAT) ne 0 then begin
  361. state.d.deg = spat
  362. state.d.type = 'Spat'
  363. endif
  364. xplotflatprofiles_plot
  365. end