source: trunk/Mars/datacenter/scripts/setup.phido.fact.mc@ 10625

Last change on this file since 10625 was 10039, checked in by Daniela Dorner, 14 years ago
implemented variables for new jobmanager algorithm
  • Property svn:executable set to *
File size: 3.0 KB
Line 
1#!/bin/sh
2#
3# ========================================================================
4#
5# *
6# * This file is part of MARS, the MAGIC Analysis and Reconstruction
7# * Software. It is distributed to you in the hope that it can be a useful
8# * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
9# * It is distributed WITHOUT ANY WARRANTY.
10# *
11# * Permission to use, copy, modify and distribute this software and its
12# * documentation for any purpose is hereby granted without fee,
13# * provided that the above copyright notice appear in all copies and
14# * that both that copyright notice and this permission notice appear
15# * in supporting documentation. It is provided "as is" without express
16# * or implied warranty.
17# *
18#
19#
20# Author(s): Daniela Dorner 09/2010 <mailto:daniela.dorner@unige.ch>
21#
22# Copyright: MAGIC Software Development, 2000-2010
23#
24#
25# ========================================================================
26#
27# This a resource file for the scripts, in which the standard paths and
28# functions, which are needed more often are stored.
29#
30
31rootsys=/fhgfs/groups/app/magic/software/root_v5.12.00g
32if ! export | grep $rootsys >|/dev/null
33then
34 export ROOTSYS=$rootsys
35 export PATH=$PATH:$ROOTSYS/bin
36 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ROOTSYS/lib
37fi
38
39# site
40processingsite=phido
41sitekey=2
42storagesite=wue
43
44# queuing system
45queuesys=pbs # wuerzburg data center
46pbspath=/cm/shared/apps/torque/2.3.7/bin
47setwalltime="yes"
48setpmem="yes"
49
50
51mainpath=/fhgfs/groups/app
52
53# logging and setup
54logpath=$mainpath/fact/datacenter/autologs
55lockpath=$mainpath/fact/datacenter/locks
56setuppath=$mainpath/fact/simulated/setup
57
58## paths of data
59#datapath=/magic/data
60#subsystempath=/magic/subsystemdata
61#sequpath=/magic/sequences
62#datasetpath=/magic/datasets
63
64## paths and setup for mc
65mcpath=$mainpath/fact/simulated
66mcsequpath=$mcpath/sequences
67corsikapath=$mainpath/magic/software/MagicSoft/Simulation/Corsika/Mmcs6500
68corsikapath=$mainpath/fact/Mmcs6500
69export FLUPRO=$corsikapath'/fluka2008_3c'
70
71
72#webpath=/www/htdocs/datacenter
73
74# get paths for mars, macros and scripts
75if [ "$SOURCEFILEPATH" = "" ]
76then
77 mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
78else
79 mars=`echo $SOURCEFILEPATH | sed -e 's/\/datacenter\/scripts//'`
80fi
81macrospath=$mars/datacenter/macros
82scriptspath=$mars/datacenter/scripts
83# rcfiles
84# dependencies of steps
85steps=$mars/resources/steps_fact.rc
86# file with db information
87sqlrc=$mars/sql.rc
88
89
90#addresses to which the errors are sent
91erradrs="dorner@astro.uni-wuerzburg.de"
92#addresses to which the changes are sent
93adrs="dorner@astro.uni-wuerzburg.de"
94
95
96#
97#setup for jobmanager
98#
99sleeptime=900 #900
100
101algorithm=1
102tosubmittotal=150 #150
103limitidle=10
104
105# set variables for jobmanager
106scripts=( "runcorsika" )
107scriptscolname=( "Corsika" )
108ratio=( 1 )
109maxjobs=( 800 )
110
111# settings for pbs
112walltimes=( "72:00:00" )
113pmems=( "1gb" )
114
115
116#
117#information for copying:
118#
119
120# steps to be copied
121tocopy=( "Corsika" )
122
123# machine
124remotemachine="dc10"
125remotedir="/magic"
126
Note: See TracBrowser for help on using the repository browser.