1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
*
* strings.F
*
* Jonathan Callahan
* Feb 19th 1998
*
* This function sets the second argument to be equal
* to the first one.
*
*
* In this subroutine we provide information about
* the function. The user configurable information
* consists of the following:
*
* descr Text description of the function
*
* num_args Required number of arguments
*
* axis_inheritance Type of axis for the result
* ( CUSTOM, IMPLIED_BY_ARGS, NORMAL, ABSTRACT )
* CUSTOM - user defined axis
* IMPLIED_BY_ARGS - same axis as the incoming argument
* NORMAL - the result is normal to this axis
* ABSTRACT - an axis which only has index values
*
* piecemeal_ok For memory optimization:
* axes where calculation may be performed piecemeal
* ( YES, NO )
*
*
* For each argument we provide the following information:
*
* name Text name for an argument
*
* unit Text units for an argument
*
* desc Text description of an argument
*
* type The argument is one of ( FLOAT_ARG, STRING_ARG )
*
* axis_influence Are this argument's axes the same as the result grid?
* ( YES, NO )
*
* axis_extend How much does Ferret need to extend arg limits relative to result
*
SUBROUTINE strings_init(id)
INCLUDE 'ferret_cmn/EF_Util.cmn'
INTEGER id, arg
* **********************************************************************
* USER CONFIGURABLE PORTION |
* |
* V
CALL ef_set_desc(id,'sets result equal to input' )
CALL ef_set_num_args(id, 1)
CALL ef_set_axis_inheritance(id, IMPLIED_BY_ARGS,
. IMPLIED_BY_ARGS, IMPLIED_BY_ARGS, IMPLIED_BY_ARGS)
CALL ef_set_piecemeal_ok(id, NO, NO, NO, NO)
arg = 1
CALL ef_set_arg_name(id, arg, 'A')
CALL ef_set_arg_unit(id, arg, ' ')
CALL ef_set_arg_desc(id, arg, 'this arg is passed through')
CALL ef_set_axis_influence(id, arg, YES, YES, YES, YES)
* ^
* |
* USER CONFIGURABLE PORTION |
* **********************************************************************
RETURN
END
*
* In this subroutine we compute the result
*
SUBROUTINE strings_compute(id, arg_1, result)
INCLUDE 'ferret_cmn/EF_Util.cmn'
INCLUDE 'ferret_cmn/EF_mem_subsc.cmn'
INTEGER id
REAL bad_flag(1:EF_MAX_ARGS), bad_flag_result
REAL arg_1(mem1lox:mem1hix, mem1loy:mem1hiy,
. mem1loz:mem1hiz, mem1lot:mem1hit)
REAL result(memreslox:memreshix, memresloy:memreshiy,
. memresloz:memreshiz, memreslot:memreshit)
* After initialization, the 'res_' arrays contain indexing information
* for the result axes. The 'arg_' arrays will contain the indexing
* information for each variable's axes.
INTEGER res_lo_ss(4), res_hi_ss(4), res_incr(4)
INTEGER arg_lo_ss(4,1:EF_MAX_ARGS), arg_hi_ss(4,1:EF_MAX_ARGS),
. arg_incr(4,1:EF_MAX_ARGS)
CHARACTER arg_name*24, arg_title*128, arg_units*32
CHARACTER ax_name(4)*16, ax_units(4)*16
LOGICAL backward(4), modulo(4), regular(4)
* **********************************************************************
* USER CONFIGURABLE PORTION |
* |
* V
INTEGER i,j,k,l
INTEGER i1, j1, k1, l1
CALL ef_get_arg_info(id, 1, arg_name, arg_title, arg_units)
CALL ef_get_axis_info(id, 1, ax_name, ax_units, backward,
. modulo, regular)
WRITE(6,*) arg_name, arg_title, arg_units
WRITE(6,*) ' axis units bkwd mod reg'
DO 50 i=1, 4
WRITE(6,66) ax_name(i), ax_units(i), backward(i), modulo(i),
. regular(i)
50 CONTINUE
66 FORMAT (a16, 2x, a16, 3i4)
CALL ef_get_res_subscripts(id, res_lo_ss, res_hi_ss, res_incr)
CALL ef_get_arg_subscripts(id, arg_lo_ss, arg_hi_ss, arg_incr)
CALL ef_get_bad_flags(id, bad_flag, bad_flag_result)
i1 = arg_lo_ss(X_AXIS,ARG1)
DO 400 i=res_lo_ss(X_AXIS), res_hi_ss(X_AXIS)
j1 = arg_lo_ss(Y_AXIS,ARG1)
DO 300 j=res_lo_ss(Y_AXIS), res_hi_ss(Y_AXIS)
k1 = arg_lo_ss(Z_AXIS,ARG1)
DO 200 k=res_lo_ss(Z_AXIS), res_hi_ss(Z_AXIS)
l1 = arg_lo_ss(T_AXIS,ARG1)
DO 100 l=res_lo_ss(T_AXIS), res_hi_ss(T_AXIS)
IF ( arg_1(i,j,k,l) .EQ. bad_flag(1) ) THEN
result(i,j,k,l) = bad_flag_result
ELSE
result(i,j,k,l) = arg_1(i,j,k,l)
END IF
l1 = l1 + arg_incr(T_AXIS,ARG1)
100 CONTINUE
k1 = k1 + arg_incr(Z_AXIS,ARG1)
200 CONTINUE
j1 = j1 + arg_incr(Y_AXIS,ARG1)
300 CONTINUE
i1 = i1 + arg_incr(X_AXIS,ARG1)
400 CONTINUE
* ^
* |
* USER CONFIGURABLE PORTION |
* **********************************************************************
RETURN
END
|