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

Last change on this file since 17597 was 17571, checked in by Daniela Dorner, 11 years ago
usage of new Mars version
  • 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++
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 the errors are sent
66erradrs="dorner@astro.uni-wuerzburg.de"
67#addresses to which the changes are sent
68adrs="dorner@astro.uni-wuerzburg.de"
69
70
71#
72#setup for jobmanager
73#
74sleeptime=300 #600 #30
75sleeptimelimit=360 #360
76errorsleeptimedefault=60 #60
77
78algorithm=2
79
80#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
81pnototal=( 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 )
82pnototalwe=( 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 )
83
84# set variables for jobmanager
85scripts=( "RunCallisto.sh" "RunStar.sh" )
86queues=( "fact_medium" "fact_short" )
87scriptscolname=( "Callisto" "Star" )
88ratio=( 0.6 0.4 )
89maxjobs=( 150 50 )
90
91# fact_short 1h 192 slots
92# fact_medium 6h 128 slots
93# fact_long 168h 64 slots
94
95# further wishlist: adapt ratio automatically
96
97# setup transfer
98numrsyncwuelimit=3
99
100# setup for qla
101anapath=/scratch/fact/data.2013.05.11
102qlasge="yes"
103resulttable1="AnalysisResultsRunISDC"
104resulttable2="AnalysisResultsNightISDC"
105firstnight=20111115
106
Note: See TracBrowser for help on using the repository browser.