| 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
|
|---|
| 10 | export HEADAS=/swdev_nfs/heasoft-6.11.1/x86_64-unknown-linux-gnu-libc2.12
|
|---|
| 11 | export HEADASPROMPT=/dev/null
|
|---|
| 12 |
|
|---|
| 13 | # setup to use ROOT
|
|---|
| 14 | root=/swdev_nfs/root_v5.32.00/bin/thisroot.sh
|
|---|
| 15 | source $root
|
|---|
| 16 |
|
|---|
| 17 | # software versions
|
|---|
| 18 | export factpath=/swdev_nfs/FACT++
|
|---|
| 19 | export mars=~/Mars.svn.2013.05.11
|
|---|
| 20 |
|
|---|
| 21 | # site
|
|---|
| 22 | processingsite=isdc
|
|---|
| 23 | sitekey=4
|
|---|
| 24 | storagesite=isdc
|
|---|
| 25 |
|
|---|
| 26 | # queuing system
|
|---|
| 27 | queuesys=sge
|
|---|
| 28 | sgepath=/usr/bin
|
|---|
| 29 |
|
|---|
| 30 | # logging and setup
|
|---|
| 31 | logpath=~/logs.automatic.processing/autologs
|
|---|
| 32 | lockpath=~/logs.automatic.processing/locks
|
|---|
| 33 | rsynctempdir=/scratch/rsync_tmp
|
|---|
| 34 |
|
|---|
| 35 | # data paths
|
|---|
| 36 | datapath=/scratch/fact/data.2013.05.11
|
|---|
| 37 | datapath_for_sed=$(printf "%s\n" "$datapath" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
|
|---|
| 38 | seqpath=/scratch/fact/sequences
|
|---|
| 39 | auxdata=/fact/aux
|
|---|
| 40 | auxdata_for_sed=$(printf "%s\n" "$auxdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
|
|---|
| 41 | rawdata=/fact/raw
|
|---|
| 42 | rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
|
|---|
| 43 | # rawdata and ziprawdata are the same
|
|---|
| 44 | # variable $ziprawdata needed for FillAuxData.sh
|
|---|
| 45 | ziprawdata=/fact/raw
|
|---|
| 46 | ziprawdata_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
|
|---|
| 50 | if [ "$mars" == "" ]
|
|---|
| 51 | then
|
|---|
| 52 | mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
|
|---|
| 53 | fi
|
|---|
| 54 | macrospath=$mars/datacenter/macros
|
|---|
| 55 | scriptspath=`dirname $0`
|
|---|
| 56 |
|
|---|
| 57 | # rcfiles
|
|---|
| 58 | # dependencies of steps
|
|---|
| 59 | steps=$scriptspath/../Setup/steps_fact_isdc.rc
|
|---|
| 60 | # file with db information
|
|---|
| 61 | sqlrc=$mars/sql.rc
|
|---|
| 62 |
|
|---|
| 63 |
|
|---|
| 64 | #addresses to which the errors are sent
|
|---|
| 65 | erradrs="dorner@astro.uni-wuerzburg.de"
|
|---|
| 66 | #addresses to which the changes are sent
|
|---|
| 67 | adrs="dorner@astro.uni-wuerzburg.de"
|
|---|
| 68 |
|
|---|
| 69 |
|
|---|
| 70 | #
|
|---|
| 71 | #setup for jobmanager
|
|---|
| 72 | #
|
|---|
| 73 | sleeptime=300 #600 #30
|
|---|
| 74 | sleeptimelimit=360 #360
|
|---|
| 75 | errorsleeptimedefault=60 #60
|
|---|
| 76 |
|
|---|
| 77 | algorithm=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
|
|---|
| 80 | pnototal=( 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 )
|
|---|
| 81 | pnototalwe=( 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
|
|---|
| 84 | scripts=( "RunCallisto.sh" "RunStar.sh" )
|
|---|
| 85 | queues=( "fact_medium" "fact_short" )
|
|---|
| 86 | scriptscolname=( "Callisto" "Star" )
|
|---|
| 87 | ratio=( 0.6 0.4 )
|
|---|
| 88 | maxjobs=( 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
|
|---|
| 97 | numrsyncwuelimit=3
|
|---|
| 98 |
|
|---|
| 99 | # setup for qla
|
|---|
| 100 | anapath=/scratch/fact/data.2013.05.11
|
|---|
| 101 | qlasge="yes"
|
|---|
| 102 | resulttable1="AnalysisResultsRunISDC"
|
|---|
| 103 | resulttable2="AnalysisResultsNightISDC"
|
|---|
| 104 | firstnight=20111115
|
|---|
| 105 |
|
|---|