Skip to content
Snippets Groups Projects
NPEnvironment.bash 509 B
# This File content all environment variable needed by NPTool.
# On linux system, include it in your bashrc or tcshrc file.

# NPTool Needs
export NPTOOL=/YourPathToNPTool/NPTool
export NPLIB=$NPTOOL/NPLib
export NPSIM=$NPTOOL/NPSimulation
export NPANA=$NPTOOL/NPAnalysis
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$NPLIB/lib

# alias
alias Simulation='$NPSIM/bin/$G4SYSTEM/Simulation'
alias Analysis='$NPANA/Analysis'

alias NPT='cd $NPTOOL'	
alias NPL='cd $NPLIB'	
alias NPS='cd $NPSIM'	
alias NPA='cd $NPANA'