#!/bin/csh
# splicer.sh
setenv DISPLAY localhost:0.0
setenv SPLOC /cygdrive/d/code/LRC/Splicer/splicer_code_ver2.2 
echo Starting the splicer at $SPLOC.

# path of X11R5 runtime libraries 
setenv LD_LIBRARY_PATH 	"/usr/lib"

# path where splicer help text files are stored 
setenv SPLICER_HELPFILES_PATH	"$SPLOC/help"

# path to splicer's help executable:  hsplicer-c
setenv SPLICER_HELP_PATH      "$SPLOC"

# path to splicer's startup logo executable:  splicerLogo-main-c
setenv SPLICER_LOGO_PATH       "$SPLOC"

# path to splicer's color list file:  color-name-list
setenv SPLICER_COLOR_PATH       "$SPLOC"

# where is splicer being used: ship or shore
setenv WHERE_AM_I               "Shore"

# $SPLOC/splicer-main-c >&! log
$SPLOC/splicer-main-c 

