#!/bin/csh
# File Name:    drill_size
# File Purpose: This file is a c-shell script that is called by the drill tool
#               manager function. It is called once for every drill size and
#               is used to calculate the actual drill size and to set the drill
#               bit designator. The script is passed a set of parameters that
#               can be used in this calculation. The script can be written in
#               other script languages (certainly perl) - see KIT 4578.

############################# End of notes ###############################

# Set numeric variables to have text names.
set BD_THK = `echo "$1"`
set FIN_SZ = `echo "$2"`
set H_TYPE = `echo "$3"`
set MN_TOL = `echo "$4"`
set MX_TOL = `echo "$5"`
set USER_P = `echo "$6"`
set OUTPUT = `echo "$7"`
set TL_NUM = `echo "$8"`
set DRL_DS = `echo "$9"`
set TYPE_2 = `echo "$10"`
set SHAPE  = `echo "$11"`
set SL_LEN = `echo "$12"`

# Check to ensure that user parameters have been selected. If not, exit program.


set SIZE = $FIN_SZ
echo "$SIZE" > $OUTPUT

