#!/bin/csh
if(`printenv SW_BASE` == "") setenv SW_BASE /usr/local/softWoRx
if(`uname -s` == "Linux") then
	set TARG=`uname -p`
else
	set TARG=mips
endif

if(-x /usr/bin/kdesu) then
    kdesu -d -n -c dbus-launch $SW_BASE/bin/$TARG/R3DConfig
else
    xterm -geometry 100x60+00+00 -fg black -bg lightgray -hold -name "Configure Microscope Parameters" -e $SW_BASE/bin/$TARG/R3DConfig
endif

