-
Notifications
You must be signed in to change notification settings - Fork 87
/
config.sh
executable file
·62 lines (48 loc) · 1.69 KB
/
config.sh
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
#
###########
# Configuration script to set QuantSoftware enviroment variables.
# Edit the first few uncommented lines below, then copy this file
# to localconfig.sh. Be sure to "source localconfig.sh" each time
# you use QSTK
#
# Tucker Balch
#
###########
# In most cases you should only have to change the lines regarding
# QS and QSDATA.The rest are taken care of automatically. However,
# if you run in to problems, double check again here.
#
# Where is your installation of QSTK? If you followed instructions on
# on the wiki, this line should be correct:
export QS=$HOME/QSTK
# Where is your data. To use the default data that comes with the
# distribution, use the first line (default). If you are using the
# machines at GT use the second line (with hzr71)
export QSDATA=$QS/QSData
#export QSDATA=/hzr71/research/QSData
###########
# You probably should not need to revise any of the lines below.
#
# Which machine are we on?
export HOSTNAME=`hostname`
export QSDATAPROCESSED=$QSDATA/Processed
export QSDATATMP=$QSDATA/Tmp
export QSBIN=$QS/Bin
export PYTHONPATH=$PYTHONPATH:$QS:$QSBIN
# expand the PATH
export PATH=$PATH:$QSBIN
# location to store scratch files
export QSSCRATCH=$QSDATA/Scratch
export CACHESTALLTIME=12
#Cachestalltime in hours
# Info regarding remote hosting of the system.
# This is where, for instance we might place a copy of
# the system for remote execution, or for the website.
export REMOTEUSER=tb34
export REMOTEHOST=gekko.cc.gatech.edu
export REMOTEHOME=/nethome/$REMOTEUSER
# NAG Library Specific Defines. Only needed
# if you have a NAG library license.
export PYTHONPATH=$PYTHONPATH:/usr/local/lib/NAG/
export NAG_KUSARI_FILE=/usr/local/lib/NAG/nagkey.txt