Ignore:
Timestamp:
07/21/06 14:47:49 (18 years ago)
Author:
navarro
Message:

english and nicer header (2a)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/CALCULS/level2depth.pro

    r134 r142  
    44;------------------------------------------------------------ 
    55;+ 
    6 ; NAME:level2depht 
    76; 
    8 ; PURPOSE: permet de passer d''un tableau 2d de niveau au 
    9 ; tableau 2d de profondeur correspondant a ces niveaux 
     7; @file_comments 
     8; Allows to pass from a 2d level array to a 2d depth array corresponding o these levels 
    109; 
    11 ; CATEGORY: SANS BOUCLE 
     10; @categories 
     11; Without loop 
    1212; 
    13 ; CALLING SEQUENCE: res=level2depth(niveau) 
     13; @param TAB {in}{required} 
     14; 2d level array of sill levels (or a structure respecting litchamp criterions) 
    1415; 
    15 ; INPUTS: niveau tableau 2d de niveaux seuil (ou une structure repondant 
    16 ; aux criteres de litchamp) 
     16; @keyword NOMASK 
     17; To do not mask land points. 
    1718; 
    18 ; KEYWORD PARAMETERS: 
    19 ;       /NOMASK: pour ne pas masquer les points terres 
     19; @returns  
     20; 2d array containing depthes 
    2021; 
    21 ; OUTPUTS: un tableau 2d contenant des profondeurs 
     22; @uses 
     23; common.pro 
    2224; 
    23 ; COMMON BLOCKS: 
    24 ;       common.pro 
    25 ; 
    26 ; SIDE EFFECTS: 
    27 ; 
    28 ; RESTRICTIONS: 
    29 ; 
    30 ; EXAMPLE: 
    31 ; 
    32 ; MODIFICATION HISTORY: Sebastien Masson (smasson@lodyc.jussieu.fr) 
     25; @history 
     26; Sebastien Masson (smasson@lodyc.jussieu.fr) 
    3327;                       17/6/1999 
    3428;                       14/6/2000 accepte !values.f_nan 
     29; 
     30; @version 
     31; $Id$ 
     32; 
    3533;- 
    3634;------------------------------------------------------------ 
     
    4139  compile_opt idl2, strictarrsubs 
    4240; 
    43    tempsun = systime(1)         ; pour key_performance 
     41   tempsun = systime(1)         ; To key_performance 
    4442@common 
    4543;------------------------------------------------------------ 
    46 ; lecture du champ d''entree et recuperation de la taille du sous 
    47 ; domaine utilise 
     44; Reading of the input field  and recovery of the used subdomain's size 
    4845;------------------------------------------------------------ 
    4946   niveaux = litchamp(tab) 
    5047   grille,mask, -1, -1,gdep,nx,ny,nz,firstx,firsty,firstz,lastx,lasty,lastz 
    5148;--------------------------------------------------------------- 
    52 ; verification de la coherence entre la taille du tableau et le domaine definit par domdef 
     49; verification of the coherence between array's size and the domain definied by domdef 
    5350;--------------------------------------------------------------- 
    5451   taille = size(niveaux) 
Note: See TracChangeset for help on using the changeset viewer.