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

Last change on this file since 15241 was 14877, checked in by Daniela Dorner, 12 years ago
changed emailadresses in setup files, cleaned setup files for La Palma
  • Property svn:executable set to *
File size: 1.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
24#export mars=/home/fact/SW.automatic.processing/Mars.CheObs.svn.2012.01.25
25export mars=/home/fact/fast_setup_for_automatic_analysis/Mars.von.Thomas.2012.06.22
26
27# site
28processingsite=lp
29sitekey=3
30storagesite=wue
31
32# logging and setup
33logpath=/home/fact/logs.automatic.processing/autologs
34lockpath=/home/fact/logs.automatic.processing/locks
35#setuppath=/magic/simulated/setup
36rsynctempdir=/loc_data/rsync_tmp
37if ! [ -d $rsynctempdir ]
38then
39 mkdir $rsynctempdir
40fi
41
42# data paths
43auxdata=/loc_data/aux
44auxdata_for_sed=$(printf "%s\n" "$auxdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
45rawdata=/data00/fact-construction/raw
46rawdata_for_sed=$(printf "%s\n" "$rawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
47ziprawdata=/loc_data/zipraw
48ziprawdata_for_sed=$(printf "%s\n" "$ziprawdata" | sed 's/[][\.*^$(){}?+|/]/\\&/g')
49
50# get paths for mars, macros and scripts
51# in case the variable is not yet set
52macrospath=$mars/datacenter/macros
53scriptspath=$mars/datacenter/scripts
54# rcfiles
55# dependencies of steps
56steps=$mars/resources/steps_fact.rc
57# file with db information
58sqlrc=$mars/sql.rc
59
60
61#addresses to which the errors are sent
62erradrs="dorner@astro.uni-wuerzburg.de"
63#addresses to which the changes are sent
64adrs="dorner@astro.uni-wuerzburg.de"
65
66
Note: See TracBrowser for help on using the repository browser.