Changeset 238 for trunk/SRC/Utilities


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

improvements/corrections of some *.pro headers

Location:
trunk/SRC/Utilities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Utilities/find.pro

    r232 r238  
    99; all file_search keywords can be used. 
    1010; 
    11 ; @categories  
     11; @categories 
    1212; find a file 
    1313; 
    14 ; @param FILEIN {in}{required}  
     14; @param FILEIN {in}{required} 
    1515; A scalar or array variable of string type, containing 
    1616; file names to match. Input names specifications may contain 
     
    2020; completed with '.pro' 
    2121; 
    22 ; @keyword FIRSTFOUND  
     22; @keyword FIRSTFOUND 
    2323; activate this keyword to stop looking for the file as soon as we found one. 
    2424; 
    25 ; @keyword IODIRECTORY {default=['.',!path]}  
     25; @keyword IODIRECTORY {default=['.',!path]} 
    2626; A scalar or array variable of string type, containing 
    2727; directories names where we are looking for the file. 
     
    3232; keyword is not taken into account. 
    3333; 
    34 ; @keyword LOOKALLDIR  
     34; @keyword LOOKALLDIR 
    3535; activate to look for the file (with a recursive search if needed) 
    3636; in . iodir, homedir, !path + the DATA:TestsData directory if it exists. 
    3737; 
    38 ; @keyword NOPRO  
     38; @keyword NOPRO 
    3939; activate to avoid the automatic search of filename completed with '.pro' 
    4040; 
    41 ; @keyword ONLYPRO  
     41; @keyword ONLYPRO 
    4242; force to look only at file ending with .pro 
    4343; 
    44 ; @keyword ONLYNC  
     44; @keyword ONLYNC 
    4545; force to look only at file ending with .nc 
    4646; 
    47 ; @keyword RECURSIVE  
     47; @keyword RECURSIVE 
    4848; performs recursive searching of directory hierarchies. 
    4949; In a recursive search, find looks recursively for any and all 
    5050; subdirectories in the file hierarchy rooted at the IODIRECTORY argument. 
    5151; 
    52 ; @keyword REPERTOIRE  
     52; @keyword REPERTOIRE 
    5353; obsolete. keep for compatibility, use directory keyword 
    5454; 
    55 ; @keyword UNIQUE  
     55; @keyword UNIQUE 
    5656; activate to make sure that each element of the output vector is unique. 
    5757; 
    58 ; @keyword TRYFIND  
     58; @keyword TRYFIND 
    5959; if the file was not found and this keyword is activated, find will call 
    6060; itself with the keywords /LOOKALLDIR and /FIRSTFOUND to try to find 
    6161; the file we are looking for. Note that if the file was found at the 
    62 ; first try this keyword as no effect (which is not the case with LOOKALLDIR)  
     62; first try this keyword as no effect (which is not the case with LOOKALLDIR) 
    6363; 
    64 ; @keyword _EXTRA  
     64; @keyword _EXTRA 
    6565; Used to pass keywords 
    6666; 
    67 ; @returns  
     67; @returns 
    6868; A scalar or array variable of string type, containing the 
    6969; name (with the full path of the matching files. If no files 
  • trunk/SRC/Utilities/fitintobox.pro

    r231 r238  
    4747    RETURN, report(['Error: ' $ 
    4848                  , 'the vector size (' + tostr(sz) + ') is incompatible' $ 
    49                   , 'with the the domain dimensions ' $ 
     49                  , 'with the domain dimensions ' $ 
    5050                  , '[jpi/nx, jpj/ny, jpk/nz, jpt] = [' $ 
    5151                  + strtrim(jpi, 1) + '/' + strtrim(nx, 1) $ 
     
    5555  RETURN, report(['Error: ' $ 
    5656                  , 'the array dimensions ' + tostr(sz) + ' are incompatible' $ 
    57                   , 'with the the domain dimensions ' $ 
     57                  , 'with the domain dimensions ' $ 
    5858                  , '[jpi/nx, jpj/ny, jpk/nz, jpt] = [' $ 
    5959                  + strtrim(jpi, 1) + '/' + strtrim(nx, 1) $ 
     
    9797; or -1 if there is an error... 
    9898; 
    99 ; @uses  
     99; @uses 
    100100; cm_4mesh 
    101101; cm_4cal 
     
    107107; Error: 
    108108; the array dimensions [180,148,78] are incompatible 
    109 ; with the the domain dimensions 
     109; with the domain dimensions 
    110110; [jpi/nx, jpj/ny, jpk/nz, jpt] = [180/41, 148/3, 31/31, 1] 
    111111; <Expression>    INT       =       -1 
     
    118118; @version 
    119119; $Id$ 
     120; 
    120121;- 
    121122; 
Note: See TracChangeset for help on using the changeset viewer.