Ignore:
Timestamp:
03/28/07 14:17:24 (17 years ago)
Author:
pinsard
Message:

replace some print by some report in some .pro (continuation)

Location:
trunk/SRC/ToBeReviewed/PLOTS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/bar_plot.pro

    r232 r240  
    141141; 
    142142if (n_params(d) eq 0) then begin  ;Print call & return if no parameters 
    143   print,'bar_test,values,baselines=baselines,colors=colors,barnames=barnames,$' 
    144   print,' title=title,xtitle=xtitle,ytitle=ytitle,baserange=baserange, $' 
    145   print,' barwidth=barwidth,barspace=barspace,baroffset=baroffset, $' 
    146   print,' outline=outline,overplot=overplot,background=background, $' 
    147   print,' rotate=rotate' 
     143  ras = report(['bar_test,values,baselines=baselines,colors=colors,barnames=barnames,$', $ 
     144  ' title=title,xtitle=xtitle,ytitle=ytitle,baserange=baserange, $', $ 
     145  ' barwidth=barwidth,barspace=barspace,baroffset=baroffset, $', $ 
     146  ' outline=outline,overplot=overplot,background=background, $', $ 
     147  ' rotate=rotate']) 
    148148  return 
    149149endif 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltt.pro

    r232 r240  
    277277 
    278278   IF type EQ 't' AND keyword_set(filter) THEN BEGIN 
    279       print, '    Applying a running mean filter of width '+string(filter, format = '(I3)') 
     279      ras = report('    Applying a running mean filter of width '+string(filter, format = '(I3)')) 
    280280      z2d = smooth(z2d, filter) 
    281281      z2d[0:filter/2-1] = 0. 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/label_gmt.pro

    r231 r240  
    5959      max=level_z2d[Ncontour-1]+intervalle 
    6060 
    61       print, '     Number of contour intervals, plotting min & max ', ncontour, min, max 
    62       print, ' ' 
     61      ras = report(['     Number of contour intervals, plotting min & max ' + $ 
     62string(ncontour) + string(min)+ string(max),' ']) 
    6363 
    6464      ; color index 
Note: See TracChangeset for help on using the changeset viewer.