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

Last change on this file since 10004 was 10004, checked in by Daniela Dorner, 14 years ago
implemented usage of cluster in Dortmund (phido), i.e. usage of pbs
  • Property svn:executable set to *
File size: 3.8 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# queuing system
40queuesys=pbs # wuerzburg data center
41pbspath=/cm/shared/apps/torque/2.3.7/bin
42setwalltime="yes"
43setpmem="yes"
44
45
46mainpath=/fhgfs/groups/app
47
48# logging and setup
49logpath=$mainpath/fact/datacenter/autologs
50lockpath=$mainpath/fact/datacenter/locks
51setuppath=$mainpath/fact/simulated/setup
52
53## paths of data
54#datapath=/magic/data
55#subsystempath=/magic/subsystemdata
56#sequpath=/magic/sequences
57#datasetpath=/magic/datasets
58
59## paths and setup for mc
60mcpath=$mainpath/fact/simulated
61mcsequpath=$mcpath/sequences
62corsikapath=$mainpath/magic/software/MagicSoft/Simulation/Corsika/Mmcs6500
63corsikapath=$mainpath/fact/Mmcs6500
64export FLUPRO=$corsikapath'/fluka2008_3c'
65
66
67#webpath=/www/htdocs/datacenter
68
69# get paths for mars, macros and scripts
70if [ "$SOURCEFILEPATH" = "" ]
71then
72 mars=`dirname $0 | sed -e 's/\/datacenter\/scripts//'`
73else
74 mars=`echo $SOURCEFILEPATH | sed -e 's/\/datacenter\/scripts//'`
75fi
76macrospath=$mars/datacenter/macros
77scriptspath=$mars/datacenter/scripts
78# rcfiles
79# dependencies of steps
80steps=$mars/resources/steps_fact.rc
81# file with db information
82sqlrc=$mars/sql.rc
83
84
85#addresses to which the errors are sent
86erradrs="dorner@astro.uni-wuerzburg.de"
87#addresses to which the changes are sent
88adrs="dorner@astro.uni-wuerzburg.de"
89
90
91#setup for jobmanager
92sleeptime=60 #30
93sleeptimelimit=360 #360
94errorsleeptimedefault=60 #60
95max=200 #maximum number of processes for one script in case there are more than one and the others do not have anything to do
96totalmax=200 #maximum number of processes (total) overwrites pnototal(we) in case it is smaller
97
98#
99# FIXME:
100# max anz an prozessen setzen
101# besser Verhaeltnis zwischen den Prozessen und das am besten noch
102# automatisch anpassen
103# evtl noch maximale anz an callistos setzen
104#
105
106#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
107pnototal=( 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 )
108pnototalwe=( 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 )
109
110pnocorsika=( 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 )
111pnocorsikawe=( 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 )
112
113# set variables for jobmanager
114scripts=( "runcorsika" )
115scriptscolname=( "Corsika" )
116pnosweek=( ${pnocorsika[@]} )
117pnoswe=( ${pnocorsikawe[@]} )
118
119# settings for pbs
120walltimes=( "72:00:00" )
121pmems=( "1gb" )
122
Note: See TracBrowser for help on using the repository browser.