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

Last change on this file since 13721 was 13586, checked in by Daniela Dorner, 12 years ago
correct HEADAS path, paths for running FillAuxData.sh at ISDC
  • Property svn:executable set to *
File size: 2.3 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
14rootsys=/swdev_nfs/root_v5.32.00
15if ! export | grep ROOTSYS | grep $rootsys >|/dev/null
16then
17 export ROOTSYS=$rootsys
18 export PATH=$PATH:$ROOTSYS/bin
19 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ROOTSYS/lib
20fi
21
22# software versions
23export factpath=/swdev_nfs/FACT++
24export mars=~/Mars.von.Thomas.2012.03.07
25
26# site
27processingsite=isdc
28sitekey=4
29storagesite=isdc
30
31# queuing system
32queuesys=sge
33sgepath=/usr/bin
34
35# logging and setup
36logpath=~/datacenter/autologs
37lockpath=~/datacenter/locks
38rsynctempdir=/scratch/rsync_tmp
39
40# data paths
41datapath=/scratch_nfs/data
42seqpath=/scratch_nfs/sequences
43auxdata=/fact/aux
44rawdata=/fact/raw
45rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
46# rawdata and ziprawdata are the same
47# variable $ziprawdata needed for FillAuxData.sh
48ziprawdata=/fact/raw
49ziprawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
50
51# get paths for mars, macros and scripts
52# in case the variable is not yet set
53if [ "$mars" == "" ]
54then
55 mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
56fi
57macrospath=$mars/datacenter/macros
58scriptspath=`dirname $0`
59
60# rcfiles
61# dependencies of steps
62steps=$scriptspath/../Setup/steps_fact_isdc.rc
63# file with db information
64sqlrc=$mars/sql.rc
65
66
67#addresses to which the errors are sent
68erradrs="daniela.dorner@unige.ch"
69#addresses to which the changes are sent
70adrs="daniela.dorner@unige.ch"
71
72
73#
74#setup for jobmanager
75#
76sleeptime=150 #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=( 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 )
84pnototalwe=( 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 )
85
86# set variables for jobmanager
87scripts=( "RunCallisto.sh" "RunStar.sh" )
88scriptscolname=( "Callisto" "Star" )
89ratio=( 0.6 0.4 )
90maxjobs=( 20 30 )
91
92
93# further wishlist: adapt ratio automatically
94
Note: See TracBrowser for help on using the repository browser.