; ---------------------------------------------------------------------- ; Find image row given a column, nires spec order, and polynomials. ; mode=1 : lower bound. ; mode=2 : upper bound. ; The lower bound is offset for some orders to align profiles. ; function nsx_find_image_row, mode, icol, nso row = round(( nsx_find_real_image_row(mode,icol,nso) )) return, row end ;int nsx_find_image_row( int mode, int icol, int nso ) ;{ ;int row; ;row = cnint(( nsx_find_real_image_row(mode,icol,nso) )); ;return(row); ;}