; szss96_input4.pro -- translated by f2idl ; using argument information from plutot.f and plutot_f.c ; and documentation information from plutot_d.f ;+ ; NAME: ; szss96_input4 ; ; PURPOSE: ; TO FILL COMMOM BLOCKS CH4V3 and CH4ALL ; CALLING SEQUENCE: ; input4 ; PROCEDURE: ; call fortran input4, lines 485-508 of plutot.f ; EXAMPLE: ; ; get_ch4v3,SIGXOUT & if max(sigxout) lt 1e-50 then input4 ; MODIFICATION HISTORY: ; Fortran Zhu 2007 Nov 14. IDL wrapper LAY 2007 Nov 5 ; : ; ; RESTRUCTIONS: ; ; files GGWW.IN1, LBLk.dat2 must be in same directory as input4.pro ;- PRO szss96_input4 ; -------------------- This function name fcn = 'szss96_input4' ; -------------------- assign parameters (including dimensions) JM = 30 LM = 4 ;------------------------- ; setup the output variables that will be passed to the fortran ; routine ;------------------------- ; check all variables if n_params() ne 0 then begin print,'szss96_input4: wrong number of arguments' return endif ;------------------------- ; Find root directory for library tname findpro, fcn, dirlist=dirlist, /noprint if dirlist[0] eq '' then root = '.' else root = dirlist[0] ;------------------------- ; CALL lib_name = root + '/szss96.so' entry_name = 'idl_ce_call_input4_' RESULT = CALL_EXTERNAL( lib_name, ENTRY_NAME, $ /verbose ) end