#!/bin/sh
#
# ========================================================================
#
# *
# * This file is part of MARS, the MAGIC Analysis and Reconstruction
# * Software. It is distributed to you in the hope that it can be a useful
# * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
# * It is distributed WITHOUT ANY WARRANTY.
# *
# * Permission to use, copy, modify and distribute this software and its
# * documentation for any purpose is hereby granted without fee,
# * provided that the above copyright notice appear in all copies and
# * that both that copyright notice and this permission notice appear
# * in supporting documentation. It is provided "as is" without express
# * or implied warranty.
# *
#
#
#   Author(s): Daniela Dorner  07/2010 <mailto:daniela.dorner@unige.ch>
#              Christian Farnier 07/2010 <mailto:christian.farnier@unige.ch>
#
#   Copyright: MAGIC Software Development, 2000-2010
#
#
# ========================================================================
#
# This script is launching the calibration of mc sequences. 
# 

source `dirname $0`/sourcefile
printprocesslog "INFO starting $0"
program=callisto
step=Callisto

set -C

# get sequence # 
gettodo "1" 
sequence=${primaries[0]}
cereskey=${primaries[1]}

# lock sequ for cal
lockfile=$lockpath/lock-$step-$sequence-$cereskey.txt
checklock 

cd $mars

# run calibration for sequence
printprocesslog "INFO starting $program for sequence $sequence cereskey $cereskey"

# define files and paths
sequfile="$mcsequpath/`printf %08d $sequence | cut -c 1-4`/sequence`printf %08d $sequence`.txt"
outpath=$mcpath/$program/`printf %03d $cereskey`/`printf %08d $sequence | cut -c 1-4`/`printf %08d $sequence | cut -c 5-8`
makedir $outpath
log=$outpath/$program`printf %08d $sequence`
callistorc=$setuppath/$program/callisto.rc
inpath=$mcpath/ceres/`printf %03d $cereskey`/`printf %08d $sequence | cut -c 1-4`/`printf %08d $sequence | cut -c 5-8`

setstatus "start"

command="./callisto -b -q -v4 -f --out=$outpath --ind=$inpath --log=$log.log --html=$log.html --config=$callistorc $sequfile"
printprocesslog "INFO executing "$command
$command
check1=$?

case $check1 in
   0)  printprocesslog "INFO $program finished successfully for sequence $sequence cereskey $cereskey (return code $check1)"
       ;;
   *)  printprocesslog "ERROR $program failed for sequence $sequence cereskey $cereskey (return code $check1)"
       check=$check1
       ;;
esac

setstatus "stop"

finish

