Ignore:
Timestamp:
06/19/06 16:14:56 (18 years ago)
Author:
smasson
Message:

new compilation options (compile_opt idl2, strictarrsubs) in each routine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/IMAGE/imdisp.pro

    r23 r114  
    11;------------------------------------------------------------------------------- 
    22FUNCTION IMDISP_GETPOS, ASPECT, POSITION=POSITION, MARGIN=MARGIN 
     3; 
     4  compile_opt idl2, strictarrsubs 
     5; 
    36 
    47;- Compute a position vector given an aspect ratio (called by IMDISP_IMSIZE) 
     
    4649FUNCTION IMDISP_IMSCALE, IMAGE, RANGE=RANGE, BOTTOM=BOTTOM, NCOLORS=NCOLORS, $ 
    4750  NEGATIVE=NEGATIVE 
     51; 
     52  compile_opt idl2, strictarrsubs 
     53; 
    4854 
    4955;- Byte-scale an image (called by IMDISP) 
     
    7379;------------------------------------------------------------------------------- 
    7480FUNCTION IMDISP_IMREGRID, DATA, NX, NY, INTERP=INTERP 
     81; 
     82  compile_opt idl2, strictarrsubs 
     83; 
    7584 
    7685;- Regrid a 2D array (called by IMDISP) 
     
    112121PRO IMDISP_IMSIZE, IMAGE, X0, Y0, XSIZE, YSIZE, ASPECT=ASPECT, $ 
    113122  POSITION=POSITION, MARGIN=MARGIN 
     123; 
     124  compile_opt idl2, strictarrsubs 
     125; 
    114126 
    115127;- Compute the size and offset for an image (called by IMDISP) 
     
    171183  BACKGROUND=BACKGROUND, ERASE=ERASE, $ 
    172184  AXIS=AXIS, NEGATIVE=NEGATIVE, _EXTRA=EXTRA_KEYWORDS 
     185; 
     186  compile_opt idl2, strictarrsubs 
     187; 
    173188 
    174189;+ 
Note: See TracChangeset for help on using the changeset viewer.