Ignore:
Timestamp:
03/19/07 18:15:51 (17 years ago)
Author:
pinsard
Message:

improvements/corrections of some *.pro headers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/GRILLE/tracegrille.pro

    r209 r231  
    1 ;------------------------------------------------------------ 
    2 ;------------------------------------------------------------ 
    3 ;------------------------------------------------------------ 
    41;+ 
    52; 
     
    85; 
    96; @categories 
    10 ;  
     7; 
    118; @param GLAMIN {in}{required} 
    12 ; The 1d or 2d array in longitude of points of the grid.If GLAM/GLAMIN  
    13 ; is not specified, it trace the grid specified by vargrid, on the  
     9; The 1d or 2d array in longitude of points of the grid.If GLAM/GLAMIN 
     10; is not specified, it trace the grid specified by vargrid, on the 
    1411; domain defined by domdef. 
    1512; 
    1613; @param GPHIIN {in}{required} 
    17 ; The 1d or 2d array in latitude of points of the grid.If GPHI/GPHIIN  
    18 ; is not specified, it trace the grid specified by vargrid, on the  
     14; The 1d or 2d array in latitude of points of the grid.If GPHI/GPHIIN 
     15; is not specified, it trace the grid specified by vargrid, on the 
    1916; domain defined by domdef. 
    2017; 
    21 ; @keyword XSTRIDE {type=integer}  
    22 ; It specify that we want to trace only one line of  
     18; @keyword XSTRIDE {type=integer} 
     19; It specify that we want to trace only one line of 
    2320; constant i every xstride points 
    2421; 
    2522; @keyword YSTRIDE {type=integer} 
    26 ; It specify that we want to trace only one line of  
     23; It specify that we want to trace only one line of 
    2724; constant j every xstride points 
    2825; 
    29 ; @keyword OCEAN  
     26; @keyword OCEAN 
    3027; To trace the grid only on ocean points. 
    31 ;  
     28; 
    3229; @keyword EARTH 
    3330; To trace the grid only on land points. 
     
    3835; 
    3936; @keyword _EXTRA 
    40 ; Used to pass your keywords. 
    41 ;  
     37; Used to pass keywords 
     38; 
    4239; @uses 
    4340; common.pro 
    44 ;  
     41; 
    4542; @examples 
    4643; 
     
    5653; @version 
    5754; $Id$ 
    58 ;                   
     55; 
    5956;- 
    60 ;------------------------------------------------------------ 
    61 ;------------------------------------------------------------ 
    62 ;------------------------------------------------------------ 
     57; 
    6358PRO tracegrille, glamin, gphiin, OCEAN = ocean, EARTH = earth $ 
    6459                 , XSTRIDE = xstride, YSTRIDE = ystride, RMOUT = rmout $ 
    6560                 , _extra = extra 
    66 ;--------------------------------------------------------- 
    6761; 
    6862  compile_opt idl2, strictarrsubs 
     
    116110    gphi = gphiin 
    117111    IF (size(glam))[0] EQ 1 AND (size(gphi))[0] EQ 1 THEN BEGIN 
    118       nx = n_elements(glam)  
    119       ny = n_elements(gphi)  
     112      nx = n_elements(glam) 
     113      ny = n_elements(gphi) 
    120114      glam = glam#replicate(1, ny) 
    121115      gphi = replicate(1, nx)#gphi 
     
    191185  endcase 
    192186 
    193   if keyword_set(key_performance) THEN print, 'temps trace grille', systime(1)-tempsun  
     187  if keyword_set(key_performance) THEN print, 'temps trace grille', systime(1)-tempsun 
    194188  !except = oldexcept 
    195189 
Note: See TracChangeset for help on using the changeset viewer.