#
# PADE_SETENV -- 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 csh or tcsh UN*X shells.  If the user is running
# either the sh, ksh, or bash UN*X shells, he or she
# should use the PADE_EXPORT script.
#
# NOTE: Some of the environment variables and directory
#       paths set in this script may be set elsewhere,
#       (e.g., in the user's .cshrc 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 .cshrc
#
# Set the PADE_ROOT environment variable -- REQUIRED, 
# PADE WILL NOT START without it!
# example: setenv PADE_ROOT ~/nist_pade
#
setenv PADE_ROOT <put path-to-nist_pade/nist_pade here>
#
# 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: setenv EDITOR vi
#
setenv EDITOR <replace this with your favorite 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: setenv PVM_ROOT /usr/local/apps/pvm3
#
setenv PVM_ROOT <replace with the top of the PVM installation>
#
# 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: setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
#
setenv PVM_ARCH <replace with your PVM_ARCH>
#
# Set the XPVM_ROOT environment variable -- OPTIONAL, this
# variable is only needed if the user intends to invoke 
# XPVM.
# example: setenv XPVM_ROOT /usr/local/apps/xpvm
#
setenv XPVM_ROOT <replace with the top of the XPVM installation>
#
# Set the TCL_LIBRARY environment variable -- REQUIRED, the 
# PADE main window will appear but without any functionality.
# example: setenv TCL_LIBRARY /usr/local/apps/tcl/tcl7.4/library
#
setenv TCL_LIBRARY <replace with the TCL library directory>
#
# Set the TK_LIBRARY environment variable -- REQUIRED, the 
# PADE main window will appear, but without any functionality
# example: setenv TK_LIBRARY /usr/local/apps/tcl/tk4.0/library
#
setenv TK_LIBRARY <replace with the TK library directory>
#
# Add the PVM executable directory to the PATH, if necessary.
#
set path=($path $HOME/pvm3/bin/$PVM_ARCH)
#
# Add the XPVM executable directory to the PATH, if necessary.
#
set 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.
#
set path=($path $PADE_ROOT/caml_utils/$PVM_ARCH)
#
# Add the PADE_ROOT/pade directory to the PATH, if necessary.
#
set path=($path $PADE_ROOT/pade)
#
# Some people may want to add the PATHs to pvmd3, pvm, and aimk.
#
set path=($path $PVM_ROOT/lib/$PVM_ARCH $PVM_ROOT/lib)
#
# End of PADE setup file
#
