source: branches/trigger_burst_research/Setup/setup.fact.isdc@ 19923

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