Changeset 45 for trunk


Ignore:
Timestamp:
01/31/08 10:20:00 (16 years ago)
Author:
ericg
Message:

Minor modifs

Location:
trunk/procs
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/procs/def_grid.pro

    r41 r45  
    4747      cmd.grid = strmid(cmd.grid, 1, strlen(cmd.grid)-1) 
    4848      read_grid_from_file = 1 
    49       print, '   Will read grid info '+cmd.grid+' from data file' 
     49      print, '    Will read grid info '+cmd.grid+' from data file' 
    5050      key_shift_map = 0 
    5151      IF strpos(cmd.var, '@@') NE -1 THEN BEGIN  
  • trunk/procs/legend_overlay.pro

    r41 r45  
    2727 
    2828CASE plttyp OF  
    29    'yfx': leg_txt = 'Linfit = '+coeff_txt+coefflu_txt+coeffm_txt 
     29   'yfx': leg_txt = coeff_txt+coefflu_txt+coeffm_txt 
    3030   ELSE: 
    3131END   
  • trunk/procs/meshes/mesh_from_file.pro

    r41 r45  
    1313   s_file = directory+file_name 
    1414 
    15    print,'   Model inits for ', model, ' from file: ', s_file 
     15   print,'    Model inits for ', model, ' from file: ', s_file 
    1616 
    1717   sm_file = hom_idl+'grids/grids_'+model+'.nc'  
  • trunk/procs/search_time_file.pro

    r40 r45  
    6262         nfiles = n_elements(line) 
    6363 
    64          print, '     ->', nfiles, ' file(s) found for date1 '+date1+' and date2 '+date2+':' 
    65          print, line 
     64         print, '     -> ', strtrim(string(nfiles), 2), ' file(s) found for date1 '+date1+' and date2 '+date2+':' 
     65         print, '      ', line 
    6666         print, ' ' 
    6767 
  • trunk/procs/yfx.pro

    r41 r45  
    9393               print, '    Linfit coef (a+bx) = ', coeff(0), coeff(1), ' errbar = ',sigmaerr 
    9494               ; text for plot info in legend_overlay 
    95                coeff_txt = strtrim(string(coeff(1), format = fmt_linfit), 2) 
     95               coeff_txt = 'Linfit = '+strtrim(string(coeff(1), format = fmt_linfit), 2) 
    9696               IF proberr NE 1.0 THEN print, '    WARNING: proba = ',proberr 
    9797               ; divide serie in two domains (on x axis) seperated by linfit_sep (plt_def) 
     
    196196                              hotyp = 't' 
    197197                        ;*****  edit here for field specific ***** 
    198                              ; minmax = ',-5,20' 
     198                             ; minmax = ',0,20' 
    199199                             ; mult_coeff = 1000. 
    200200                             ; varname = 'Coupling strength ['+cmd.date1+'-'+cmd.spec+']' 
     
    202202                              mult_coeff = 1. 
    203203                              varname = 'Alpha: Qtot=f(SST) ['+cmd.date1+'-'+cmd.spec+']' 
     204                              coeff_txt = "" & coefflu_txt = "" & coeffm_txt = "" 
    204205                        ;**************************************** 
    205206                              print, '    Mult, min, max set in plt_map ',mult_coeff, minmax 
Note: See TracChangeset for help on using the changeset viewer.