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 in Wuerzburg
|
---|
7 | #
|
---|
8 |
|
---|
9 | # setup to use ftools
|
---|
10 | export HEADAS=/opt/heasoft-6.12/x86_64-unknown-linux-gnu
|
---|
11 | export HEADASPROMPT=/dev/null
|
---|
12 |
|
---|
13 | # setup to use ROOT
|
---|
14 | root=/opt/root_v5.34.06/bin/thisroot.sh
|
---|
15 | source $root
|
---|
16 |
|
---|
17 | # software versions
|
---|
18 | export factpath=/opt/FACT++
|
---|
19 | export mars=~/opt/Mars
|
---|
20 |
|
---|
21 | # site
|
---|
22 | processingsite=wue
|
---|
23 | sitekey=1
|
---|
24 | storagesite=wue
|
---|
25 |
|
---|
26 | # queuing system
|
---|
27 | queuesys=sge
|
---|
28 | sgepath=/opt/sge/bin/lx-amd64/
|
---|
29 |
|
---|
30 | # logging and setup
|
---|
31 | logpath=/home/fact/logs.automatic.processing/autologs
|
---|
32 | lockpath=/home/fact/logs.automatic.processing/locks
|
---|
33 |
|
---|
34 | # data paths
|
---|
35 | datapath=/fact/data
|
---|
36 | drstimepath=$datapath
|
---|
37 | seqpath=/fact/sequences
|
---|
38 | auxdata=/fact/aux
|
---|
39 | rawdata=/fact/raw
|
---|
40 | rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
|
---|
41 |
|
---|
42 | ## paths and setup for mc
|
---|
43 | mcpath=/magic/simulated
|
---|
44 | mcsequpath=$mcpath/sequences
|
---|
45 | corsikapath=/opt/MagicSoft/Simulation/Corsika/Mmcs6500
|
---|
46 | export FLUPRO=$corsikapath'/fluka2011_2'
|
---|
47 |
|
---|
48 | # get paths for mars, macros and scripts
|
---|
49 | # in case the variable is not yet set
|
---|
50 | if [ "$mars" == "" ]
|
---|
51 | then
|
---|
52 | mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
|
---|
53 | fi
|
---|
54 | macrospath=$mars/datacenter/macros
|
---|
55 | scriptspath=`dirname $0`
|
---|
56 |
|
---|
57 | # rcfiles
|
---|
58 | # dependencies of steps
|
---|
59 | steps=$scriptspath/../Setup/steps_fact_isdc.rc
|
---|
60 | # file with db information
|
---|
61 | sqlrc=$mars/sqlmc.rc
|
---|
62 |
|
---|
63 |
|
---|
64 | #addresses to which the errors are sent
|
---|
65 | erradrs="dorner@astro.uni-wuerzburg.de"
|
---|
66 | #addresses to which the changes are sent
|
---|
67 | adrs="dorner@astro.uni-wuerzburg.de"
|
---|
68 |
|
---|
69 |
|
---|
70 | #
|
---|
71 | #setup for jobmanager
|
---|
72 | #
|
---|
73 | sleeptime=150 #600 #30
|
---|
74 | sleeptimelimit=360 #360
|
---|
75 | errorsleeptimedefault=60 #60
|
---|
76 |
|
---|
77 | algorithm=2
|
---|
78 |
|
---|
79 | #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
|
---|
80 | 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 )
|
---|
81 | 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 )
|
---|
82 |
|
---|
83 | # set variables for jobmanager
|
---|
84 | scripts=( "RunCeres.sh" "RunMCCallisto.sh" "RunMCStar.sh" )
|
---|
85 | scriptscolname=( "Ceres" "Callisto" "Star" )
|
---|
86 | ratio=( 0.6 0.2 0.2 )
|
---|
87 | maxjobs=( 10 10 10 )
|
---|
88 |
|
---|
89 |
|
---|
90 | # further wishlist: adapt ratio automatically
|
---|
91 |
|
---|