A bit less strenious way to find your shell is to issue a command: echo $SHELL
If you have only one or two windows open, you can avoid logging out and back in by issuing IN EACH OPEN WINDOW the following command: source ~/.tcshrc or source ~/.bashrc depending on the shell.
D.L. 2003.05.25
if ( ${OSTYPE} =~ linu* ) then
setenv ROOTSYS /afs/cern.ch/sw/root/v4.02.00/rh73_slc3/root
set path=($path ${ROOTSYS}/bin)
if ( ${?LD_LIBRARY_PATH} == 0 ) then
setenv LD_LIBRARY_PATH ${ROOTSYS}/lib
else
setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:${ROOTSYS}/lib
endif
endif
export ROOTSYS=/afs/cern.ch/sw/root/v4.02.00/rh73_slc3/root
export PATH=$PATH:${ROOTSYS}/bin
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ROOTSYS}/lib
{
gSystem->Load("libHTBDAQ_Data.so");
}