TUreadUDFrc TCL UTILITIES USER MANUAL TUreadUDFrc
SYNOPSIS
Return the 1D polynomial expansion of a given value
PACKAGE
TCLUTILS
NAME
TUreadUDFrc
USAGE
TUreadUDFrc  PgM udfRc
INPUT DEFINITIONS
PgM - The calling program
udfRc - An array of runtime options defined in either the system wide or personal UDFrc file associated with the calling program.
RETURN DEFINITION
NONE
DESCRIPTION
TUreadUDFrc returns all of the runtime options set for the program PgM. The runtime options are first looked for in the system-wide UDFrc file ($UDFTOOL_HOME/ConFigs/UDFrc) and then in the personal UDFrc file ($HOME/.UDFrc) should that exist. Runtime options set in the personal UDFrc file will take presidence over the system-wide settings. The options are returned in the array udfRc with the options as the array indices.
ERRORS
None Generated
C BACKING
Yes
EXAMPLE(S)
# FIND the runtime options set for the program dBAsk

TUreadUDFrc dBAsk rT

set aI [array names rT]
set aLen [llength $aI]
for { set I 0 } { $I < $aLen } { incr I } {
   set OpT [lindex $aI $I]
   puts stderr "Runtime Option $OpT set to $rT($OpT)"
}

>Runtime Option MinP set to P.M
>Runtime Option MinD set to P.M
>Runtime Option BroWseR set to /usr/bin/opera
>Runtime Option MinQ set to P.M

      
Nov 12, 2006