source: trunk/MagicSoft/Mars/datacenter/scripts/runstar@ 7927

Last change on this file since 7927 was 7927, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 2.6 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 08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
21#
22# Copyright: MAGIC Software Development, 2000-2006
23#
24#
25# ========================================================================
26#
27# This script is launching star for sequence.
28#
29# In the case of star only one sequence is processed. Despite of
30# that the structure of the script is such, that also more sequences could
31# be processed. The restriction to one sequence has been made, as star
32# takes some time. There's one todo file per sequence.
33# First the script searches for a todo file. Then star is run for the
34# sequence from this todo file.
35#
36# the star.rc files are taken from the mars directory
37#
38
39program=star
40source `dirname $0`/sourcefile
41
42set -C
43
44column=fStar
45
46scriptlogpath=$logpath/run/$program/`date +%Y/%m/%d`
47makedir $scriptlogpath
48scriptlog=$scriptlogpath/run$program-$datetime.log
49
50date >> $scriptlog 2>&1
51
52# get sequence #
53gettodo >> $scriptlog 2>&1
54sequence=$process
55
56# lock sequ
57lockfile=$lockpath/lock-$table-$column-$sequence.txt
58checklock >> $scriptlog 2>&1
59
60cd $mars
61
62echo "run $program for sequence $sequence..." >> $scriptlog 2>&1
63no=`printf %08d $sequence | cut -c 0-4`
64no2=`printf %08d $sequence`
65var1=$no
66var2=$no2
67outpath="$datapath/$program/$no/$no2"
68inpath=`echo $outpath | sed -e 's/star/callisto/'`
69makedir $outpath >> $scriptlog 2>&1
70
71sequfile="$sequpath/$no/sequence$no2.txt"
72
73setstatus "start" >> $scriptlog 2>&1
74
75./star -b -q -v4 -f --log=$outpath/$program$no2.log --html=$outpath/$program$no2.html --ind=$inpath --out=$outpath $sequfile 2>> $scriptlog> /dev/null
76check1=$?
77
78case $check1 in
79 0) echo " check1=$check1 -> everything ok " >> $scriptlog 2>&1;;
80 *) echo " check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1
81 com=$Fstar
82 check=$check1
83 ;;
84esac
85
86setstatus "stop" >> $scriptlog 2>&1
87
88finish >> $scriptlog 2>&1
89
Note: See TracBrowser for help on using the repository browser.