2.9 INTERNAL PROCS

A TAE internal proc is a process, procedure or parameter set (PARMSET) definition nested within another proc definition. It provides a way for short, related procs, such as ones declaring parameter qualifiers, to be contained within a single PDF.

The rules governing internal procs are the following:

A convenient use of internal procs is to provide qualifiers for a parameter. In the following example, the internal proc QUALSET provides qualifiers to parameter IMAGE:

!  Typical Invocation:
!  ENHANCE image=bigimage |line=200,band=3|
!
PROCESS     !in ENHANCE.PDF
   PARMSET NAME=QUALSET 
   parm line integer valid=1:3000 
   parm band integer valid=1:8
   END-PROC
parm image quals=qualset
END-PROC