source: trunk/DataCheck/Setup/setup.fact.lp.data@ 13306

Last change on this file since 13306 was 13306, checked in by Daniela Dorner, 12 years ago
added (new versions of setup files to include all variables)
  • 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 machine data in La Palma
7#
8
9# setup to use ftools
10export HEADAS=/opt/heasoft-6.11/x86_64-unknown-linux-gnu-libc2.13-0/
11export HEADASPROMPT=/dev/null
12
13# setup to use ROOT
14rootsys=/opt/root_v5.12.00f
15if ! export | 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=/home/fact/SW.automatic.processing/FACT++.2012.01.25
24export mars=/home/fact/SW.automatic.processing/Mars.CheObs.svn.2012.01.25
25
26# site
27processingsite=lp
28sitekey=3
29storagesite=wue
30
31# logging and setup
32logpath=/home/fact/logs.automatic.processing/autologs
33lockpath=/home/fact/logs.automatic.processing/locks
34#setuppath=/magic/simulated/setup
35rsynctempdir=/loc_data/rsync_tmp
36
37# data paths
38auxdata=/data00/fact-construction/aux
39auxdata=/loc_data/aux
40rawdata=/data00/fact-construction/raw
41rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
42ziprawdata=/loc_data/zipraw
43ziprawdata_for_sed=$(printf "%s\n" "$ziprawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
44
45# get paths for mars, macros and scripts
46# in case the variable is not yet set
47macrospath=$mars/datacenter/macros
48scriptspath=$mars/datacenter/scripts
49# rcfiles
50# dependencies of steps
51steps=$mars/resources/steps_fact.rc
52# file with db information
53sqlrc=$mars/sql.rc
54
55
56#addresses to which the errors are sent
57erradrs="daniela.dorner@unige.ch"
58#addresses to which the changes are sent
59adrs="daniela.dorner@unige.ch"
60
61
62#
63#setup for jobmanager
64#
65sleeptime=600 #30
66sleeptimelimit=360 #360
67errorsleeptimedefault=60 #60
68
69algorithm=2
70#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
71pnototal=( 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 )
72pnototalwe=( 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 )
73
74
75# set variables for jobmanager
76#scripts=( "runcorsika" "runceres" "runcallisto_mc" "runstar_mc" )
77#scriptscolname=( "Corsika" "Ceres" "Callisto" "Star" )
78#ratio=( 0.2 0.6 0.1 0.1 )
79#maxjobs=( 20 20 25 25 )
80
81
82# further wishlist: adapt ratio automatically
83
84
85export AUTOMATIONSETUP="lp.fact"
86#export SOURCEFILEPATH=$mars/datacenter/scripts
87
88
89#source $SOURCEFILEPATH/sourcefile
90
91# Author(s): Daniela Dorner 05/2005 <mailto:dorner@astro.uni-wuerzburg.de>
92#
93# Copyright: MAGIC Software Development, 2000-2010
94#
95#
96# ========================================================================
97#
98# This a resource file for the scripts, in which the standard paths and
99# functions, which are needed more often are stored.
100# Only constant variables are stored here, changing variables are stored
101# in datacenter/scripts/setup
102#
103
Note: See TracBrowser for help on using the repository browser.