-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc.papi
More file actions
40 lines (25 loc) · 995 Bytes
/
bashrc.papi
File metadata and controls
40 lines (25 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Sample .bashrc for PANIC software
test -s ~/.alias && . ~/.alias || true
# To give all access permissions to the group and allow other
# users read and write permission
# This subtracts 002 from the sytem defaults to give a default
# access permission for your files of 664 (rw-rw-r--) and for
# your directories of 775 (rwxrwxr-x)
umask 002
### PAPI environment ###
PAPI_HOME=${HOME}/papi
PYTHONPATH=$PYTHONPATH:$PAPI_HOME
PAPI_CONFIG=$PAPI_HOME/config_files/papi.cfg
QT_GRAPHICSSYSTEM=native
ASTROMETRY=/usr/local/astrometry/bin
KDE_FORK_SLAVES=1
# Proxy required for cdsclient at MPIA
if [[ ($HOST =~ panic22) || ($HOST =~ panic35) ]] ; then
export http_proxy=derfel.caha.es:3128
fi
XPA_HOME=/usr/loca/bin
MONTAGE=/usr/local/Montage_v3.3/bin
PATH=$PATH:$ASTROMETRY:$HOME/bin:$MONTAGE:$XPA_HOME
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib64
export PYTHONPATH PAPI_HOME PAPI_CONFIG http_proxy ASTROMETRY
export LD_LIBRARY_PATH QT_GRAPHICSSYSTEM KDE_FORK_SLAVES PATH