1 | #!/bin/bash
|
---|
2 | #
|
---|
3 | # This a resource file for the scripts, in which paths, variables
|
---|
4 | # and setups are defined
|
---|
5 | #
|
---|
6 | # This setup file is for the machines on the FACT cluster at ISDC
|
---|
7 | #
|
---|
8 |
|
---|
9 | # setup to use ftools
|
---|
10 | export HEADAS=/opt/heasoft-6.11/x86_64-unknown-linux-gnu-libc2.13-0/
|
---|
11 | export HEADASPROMPT=/dev/null
|
---|
12 |
|
---|
13 | # setup to use ROOT
|
---|
14 | rootsys=/swdev_nfs/root_v5.32.00
|
---|
15 | if ! export | grep ROOTSYS | grep $rootsys >|/dev/null
|
---|
16 | then
|
---|
17 | export ROOTSYS=$rootsys
|
---|
18 | export PATH=$PATH:$ROOTSYS/bin
|
---|
19 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ROOTSYS/lib
|
---|
20 | fi
|
---|
21 |
|
---|
22 | # software versions
|
---|
23 | export factpath=/swdev_nfs/FACT++
|
---|
24 | export mars=~/Mars.von.Thomas.2012.03.07
|
---|
25 |
|
---|
26 | # site
|
---|
27 | processingsite=isdc
|
---|
28 | sitekey=4
|
---|
29 | storagesite=isdc
|
---|
30 |
|
---|
31 | # queuing system
|
---|
32 | queuesys=sge
|
---|
33 | sgepath=/usr/bin
|
---|
34 |
|
---|
35 | # logging and setup
|
---|
36 | logpath=~/datacenter/autologs
|
---|
37 | lockpath=~/datacenter/locks
|
---|
38 | rsynctempdir=/scratch/rsync_tmp
|
---|
39 |
|
---|
40 | # data paths
|
---|
41 | datapath=/scratch_nfs/data
|
---|
42 | seqpath=/scratch_nfs/sequences
|
---|
43 | auxdata=/fact/aux
|
---|
44 | rawdata=/fact/raw
|
---|
45 | rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
|
---|
46 |
|
---|
47 | # get paths for mars, macros and scripts
|
---|
48 | # in case the variable is not yet set
|
---|
49 | if [ "$mars" == "" ]
|
---|
50 | then
|
---|
51 | mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
|
---|
52 | fi
|
---|
53 | macrospath=$mars/datacenter/macros
|
---|
54 | scriptspath=`dirname $0`
|
---|
55 |
|
---|
56 | # rcfiles
|
---|
57 | # dependencies of steps
|
---|
58 | steps=$scriptspath/../Setup/steps_fact_isdc.rc
|
---|
59 | # file with db information
|
---|
60 | sqlrc=$mars/sql.rc
|
---|
61 |
|
---|
62 |
|
---|
63 | #addresses to which the errors are sent
|
---|
64 | erradrs="daniela.dorner@unige.ch"
|
---|
65 | #addresses to which the changes are sent
|
---|
66 | adrs="daniela.dorner@unige.ch"
|
---|
67 |
|
---|
68 |
|
---|
69 | #
|
---|
70 | #setup for jobmanager
|
---|
71 | #
|
---|
72 | sleeptime=150 #600 #30
|
---|
73 | sleeptimelimit=360 #360
|
---|
74 | errorsleeptimedefault=60 #60
|
---|
75 |
|
---|
76 | algorithm=2
|
---|
77 |
|
---|
78 | #hour: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
---|
79 | pnototal=( 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 )
|
---|
80 | pnototalwe=( 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 )
|
---|
81 |
|
---|
82 | # set variables for jobmanager
|
---|
83 | scripts=( "RunCallisto.sh" "RunStar.sh" )
|
---|
84 | scriptscolname=( "Callisto" "Star" )
|
---|
85 | ratio=( 0.6 0.4 )
|
---|
86 | maxjobs=( 20 30 )
|
---|
87 |
|
---|
88 |
|
---|
89 | # further wishlist: adapt ratio automatically
|
---|
90 |
|
---|