source: trunk/DataCheck/Setup/setup.fact.isdc@ 17527

Last change on this file since 17527 was 17118, checked in by Daniela Dorner, 11 years ago
added variable auxdata_for_sed which is now used by the function getdates
  • Property svn:executable set to *
File size: 2.7 KB
Line 
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
10export HEADAS=/swdev_nfs/heasoft-6.11.1/x86_64-unknown-linux-gnu-libc2.12
11export HEADASPROMPT=/dev/null
12
13# setup to use ROOT
14root=/swdev_nfs/root_v5.32.00/bin/thisroot.sh
15source $root
16
17# software versions
18export factpath=/swdev_nfs/FACT++
19export mars=~/Mars.svn.2013.05.11
20
21# site
22processingsite=isdc
23sitekey=4
24storagesite=isdc
25
26# queuing system
27queuesys=sge
28sgepath=/usr/bin
29
30# logging and setup
31logpath=~/logs.automatic.processing/autologs
32lockpath=~/logs.automatic.processing/locks
33rsynctempdir=/scratch/rsync_tmp
34
35# data paths
36datapath=/scratch/fact/data.2013.05.11
37datapath_for_sed=$(printf "%s\n" "$datapath" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
38seqpath=/scratch/fact/sequences
39auxdata=/fact/aux
40auxdata_for_sed=$(printf "%s\n" "$auxdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
41rawdata=/fact/raw
42rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
43# rawdata and ziprawdata are the same
44# variable $ziprawdata needed for FillAuxData.sh
45ziprawdata=/fact/raw
46ziprawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
47
48# get paths for mars, macros and scripts
49# in case the variable is not yet set
50if [ "$mars" == "" ]
51then
52 mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
53fi
54macrospath=$mars/datacenter/macros
55scriptspath=`dirname $0`
56
57# rcfiles
58# dependencies of steps
59steps=$scriptspath/../Setup/steps_fact_isdc.rc
60# file with db information
61sqlrc=$mars/sql.rc
62
63
64#addresses to which the errors are sent
65erradrs="dorner@astro.uni-wuerzburg.de"
66#addresses to which the changes are sent
67adrs="dorner@astro.uni-wuerzburg.de"
68
69
70#
71#setup for jobmanager
72#
73sleeptime=300 #600 #30
74sleeptimelimit=360 #360
75errorsleeptimedefault=60 #60
76
77algorithm=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
80pnototal=( 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 )
81pnototalwe=( 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 )
82
83# set variables for jobmanager
84scripts=( "RunCallisto.sh" "RunStar.sh" )
85queues=( "fact_medium" "fact_short" )
86scriptscolname=( "Callisto" "Star" )
87ratio=( 0.6 0.4 )
88maxjobs=( 150 50 )
89
90# fact_short 1h 192 slots
91# fact_medium 6h 128 slots
92# fact_long 168h 64 slots
93
94# further wishlist: adapt ratio automatically
95
96# setup transfer
97numrsyncwuelimit=3
98
99# setup for qla
100anapath=/scratch/fact/data.2013.05.11
101qlasge="yes"
102resulttable1="AnalysisResultsRunISDC"
103resulttable2="AnalysisResultsNightISDC"
104firstnight=20111115
105
Note: See TracBrowser for help on using the repository browser.