#
# PADE_EXPORT -- This file is used to set various
# environment variables and directory paths needed by
# the PADE program.  The syntax of the commands in 
# this script assume that the user is running either
# the sh, ksh, or bash UN*X shells.  If the user is 
# running either the csh or tcsh UN*X shells, he 
# or she should use the PADE_SETENV script.
#
# NOTE: Some of the environment variables and directory
#       paths set in this script may be set elsewhere,
#       (e.g., in the user's .profile file).  If this is
#       the case, they need not be set here -- even if
#       they are labeled REQUIRED.
#
# You might want to add the relevant lines from this file to
# your .profile
#
# Set the PADE_ROOT environment variable -- REQUIRED, 
# PADE WILL NOT START without it!
# example: PADE_ROOT=~/nist_pade
#
PADE_ROOT=<put path-to-nist_pade/nist_pade here>
export PADE_ROOT
#
# Set the EDITOR environment variable -- OPTIONAL, however, 
# the first time the user tries to edit a file, PADE 
# will query the user for the name of a valid editor (full 
# path name allowed) if this variable is not set.
# example: EDITOR=vi
#
EDITOR=<replace this with your favorite editor>
export EDITOR
#
# Set the PVM_ROOT environment variable -- REQUIRED for 
# normal PVM execution.  PADE will start but the user 
# will not be able to start PVM (version 3.3 or higher) and 
# PADE will not be able to perform its normal operations.
# example: PVM_ROOT=/usr/local/apps/pvm3
#
PVM_ROOT=<replace with the top of the PVM installation>
export PVM_ROOT
#
# Set the PVM_ARCH environment variable -- REQUIRED for 
# normal PVM execution. The variable is neeeded for the 
# same reasons as given for PVM_ROOT.
# example: PVM_ARCH=`$PVM_ROOT/lib/pvmgetarch`
#
PVM_ARCH=<replace with your PVM_ARCH>
export PVM_ARCH
#
# Set the XPVM_ROOT environment variable -- OPTIONAL, this
# variable is only needed if the user intends to invoke 
# XPVM.
# example: XPVM_ROOT=/usr/local/apps/xpvm
#
XPVM_ROOT=<replace with the top of the XPVM installation>
export XPVM_ROOT
#
# Set the TCL_LIBRARY environment variable -- REQUIRED, the 
# PADE main window will appear but without any functionality.
# example: TCL_LIBRARY=/usr/local/apps/tcl/tcl7.4/library
#
TCL_LIBRARY=<replace with the TCL library directory>
export TCL_LIBRARY
#
# Set the TK_LIBRARY environment variable -- REQUIRED, the 
# PADE main window will appear, but without any functionality
# example: TK_LIBRARY=/usr/local/apps/tcl/tk4.0/library
#
TK_LIBRARY=<replace with the TK library directory>
export TK_LIBRARY
#
# Add the PVM executable directory to the PATH, if necessary.
#
PATH=$PATH:$HOME/pvm3/bin/$PVM_ARCH
#
# Add the XPVM executable directory to the PATH, if necessary.
#
PATH=$PATH:$XPVM_ROOT/src/$PVM_ARCH
#
# Add the caml_utils/$PVM_ARCH directory to the PATH, if necessary.
# Note the caml_utils might be in a path different from $PADE_ROOT.
#
PATH=$PATH:$PADE_ROOT/caml_utils/$PVM_ARCH
#
# Add the PADE_ROOT/pade directory to the PATH, if necessary.
#
PATH=$PATH:$PADE_ROOT/pade
#
# Some people may want to add the PATHs to pvmd3, pvm, and aimk.
#
PATH=$PATH:$PVM_ROOT/lib/$PVM_ARCH:$PVM_ROOT/lib
#
# Export the PATH after all changes
#
export PATH
#
# End of PADE setup file
#
