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/PLOTS/DESSINE/scontour.pro

    r134 r142  
    33;------------------------------------------------------------ 
    44;+ 
    5 ; NAME:scontour (super contour) 
    65; 
    7 ; PURPOSE: meme chose que contour mais compatible avec l''ensemble de 
    8 ; l'environnement (common.pro est inclu) 
     6; @File_comments 
     7; Same thing that contour but compatible with the whole environnement (common.pro inclued) 
    98; 
    10 ; CATEGORY:dessine 
     9; @categories graphics 
    1110; 
    12 ; CALLING SEQUENCE: scontour, z [, x, y] 
    13 ;  
    1411; INPUTS:cd IDL>?contour 
    1512; 
    16 ; KEYWORD PARAMETERS: 
     13; @keyword NOREINITPLT 
     14; We active it if we do not want environnement variables !p, !x, !y, !z  
     15; to be reinitilalizted by the procedure reinitplt 
     16;  
     17; @keyword _EXTRA 
     18; used to pass your keywords 
    1719; 
    18 ;  meme que ceux de bar_plot avec en plus: 
    19 ;      NOREINITPLT: a actier si on ne veut pas que les variables 
    20 ;      d''environnemet !p, !x, !y, !z soient reinitialisees par la 
    21 ;      procedure reinitplt 
     20; @uses 
     21; common.pro 
    2222; 
    23 ; OUTPUTS: 
    24 ; 
    25 ; COMMON BLOCKS:common.pro 
    26 ; 
    27 ; SIDE EFFECTS: 
    28 ; 
    29 ; RESTRICTIONS: 
    30 ; 
    31 ; EXAMPLE: 
     23; @examples 
    3224;      IDL> z = dist(100)  
    3325;      IDL> scontour, z, nlevels=10,small=[1,2,1],xstyle=1,ystyle=1 
    34 ;      IDL> @ps 
     26;      IDL> \@ps 
    3527; 
    36 ; MODIFICATION HISTORY:Sebastien Masson (smasson@lodyc.jussieu.fr) 
     28; @history Sebastien Masson (smasson@lodyc.jussieu.fr) 
    3729;                      10/10/1999 
     30;  
     31; @version 
     32; $Id$ 
     33; 
    3834;- 
    3935;------------------------------------------------------------ 
     
    4541; 
    4642@common 
    47 ; 1) je reinitialise l''environnememt graphique (les variables !x, !y et !p):  
     43; 1) I reinitializate the graphic environment (variables !x, !y et !p):  
    4844  if NOT keyword_set(NOREINITPLT) then reinitplt, _extra = ex  
    49 ; 2) je place le dessin a l'ecran comme sur le postcript  
     45; 2) i put the drawing on the screen like on the postcript  
    5046; if ex contains norease and c_orientation keywords we force ex.noerase = 0 
    5147  IF chkstru(ex, 'overplot') EQ 0 THEN placedessin, 'autre', _extra = ex 
    5248; fiddle when noerase is used with c_orentation... 
    53 ; call contour with /nodata to get the graphic envoronment, then force 
     49; call contour with /nodata to get the graphic environment, then force 
    5450; noerase = 0 and overplot = 1 
    5551  IF size(ex, /type) EQ 8 THEN BEGIN 
     
    8581    ENDCASE 
    8682  ENDIF 
    87 ; 4) je termine le dessin  
     83; 4) End of drawing 
    8884  terminedessin, _extra = ex  
    8985 
Note: See TracChangeset for help on using the changeset viewer.