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

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