# this bit of code should be included in your ~/.bashrc.

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

#########################################################################
#########################################################################
##                                                                     ##
##                    LCG and LCG-inspired configuration               ##
##                                                                     ##
##                        (http://lcginfo.cern.ch/)                    ##
##                                                                     ##
#########################################################################
#########################################################################

export LCG_REPO=/cvmfs/sft.cern.ch/lcg/views

### for latest Geant4 this is the one you need
export LCG_RELEASE=94rc1
export LCG_PLATFORM=x86_64-slc6-gcc62-opt

## for production this is the current tested one
#export LCG_RELEASE=93
#export LCG_PLATFORM=x86_64-slc6-gcc62-opt

##
source                $LCG_REPO/LCG_$LCG_RELEASE/$LCG_PLATFORM/setup.sh
export QT_QPA_FONTDIR=$LCG_REPO/LCG_$LCG_RELEASE/$LCG_PLATFORM/fonts

cat <<EOF

#########################################################################
#########################################################################

Current Software setup  is

        LCG version : $LCG_RELEASE
        platform    : $LCG_PLATFORM

        G4examples  : $LCG_REPO/LCG_$LCG_RELEASE/$LCG_PLATFORM/share/Geant4-*/examples

#########################################################################
#########################################################################
EOF

return