#!/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  08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
#
#   Copyright: MAGIC Software Development, 2000-2004
#
#
# ========================================================================
#
#

source /home/operator/Mars/datacenter/scripts/sourcefile

set -C

cd $mars

datetime=`date +%F-%H-%M-%S`
year=`date +%Y`

scriptlogpath=$logpath/run/insertdatasets/`date +%Y/%m`
if [ ! -d $scriptlogpath ]
then
  mkdir -pv $scriptlogpath 
  if [ ! -d $scriptlogpath ]
  then 
     echo "could not make scriptlogpath "$scriptlogpath 
     exit
  fi
fi

scriptlog=$scriptlogpath/insertdatasets-$datetime.log

date >> $scriptlog 2>&1

date > $lockpath/lock-insertdatasets.txt >> $scriptlog 2>&1 
checklock0=$?
case $checklock0 in 
    0)   echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
    1)   echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
         echo "-> getting list for callisto is running -> exit" >> $scriptlog 2>&1
         date  >> $scriptlog 2>&1
         exit;;
    *)   echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
esac


datasetfiles=(`ls /magic/datasets/*/*`)
echo "datasetfiles: "${datasetfiles[@]}  >> $scriptlog 2>&1 
echo "" >> $scriptlog 2>&1 

for datasetfile in ${datasetfiles[@]}
do 
   no=`echo $datasetfile | cut -d/ -f5 | cut -c8-99 | cut -d. -f1`
   no2=`grep 'AnalysisNumber:' $datasetfile | sed -e 's/AnalysisNumber://g' | sed -e 's/ //g'`
   no3=`printf %08d $no2`
   if [ "$no" = "$no3" ]
   then 
      echo "number in filename and in file are the same -> continue" >> $scriptlog 2>&1 
   else
      echo "number in filename and in file are not the same " >> $scriptlog 2>&1 
      echo " -> continue with next dataset" >> $scriptlog 2>&1 
      continue
   fi
   source=`grep 'SourceName:' $datasetfile | sed -e 's/SourceName://g' | sed -e 's/ //g' | sed -e 's/#//g'` >> $scriptlog 2>&1 
   mode=`grep 'WobbleMode:' $datasetfile` >> $scriptlog 2>&1 
   mode2=`echo $mode | grep ^\#` >> $scriptlog 2>&1 
   if [ "$mode2" = "" ]
   then 
      wobble="Y" >> $scriptlog 2>&1 
   else
      wobble="N" >> $scriptlog 2>&1 
   fi
   echo "file: "$datasetfile >> $scriptlog 2>&1 
   echo "  datasetno:  "$no2 >> $scriptlog 2>&1 
   echo "  sourcename: "$source >> $scriptlog 2>&1 
   echo "  wobble:     "$wobble >> $scriptlog 2>&1 
   echo " " >> $scriptlog 2>&1 
   
   insertdatasetpath=$logpath/insertdataset/$no3
   if [ ! -d $insertdatasetpath ]
      then
      mkdir -pv $insertdatasetpath >> $scriptlog 2>&1
      if [ ! -d $insertdatasetpath ]
      then 
         echo "could not make insertdatasetpath "$insertdatasetpath >> $scriptlog 2>&1
         continue
      fi
   fi
   insertdatasetlog=$insertdatasetpath/insertdataset-$no3.log
   check0=`root -q -b $macrospath/insertdataset.C+\("\"$no2\""\,"\"$source\""\,"\"$wobble\"",kFALSE\) | tee $insertdatasetlog | grep int | sed -e 's/(int)//'`
   case $check0 in 
      1)   echo "check0=$check0 -> everthing ok " >> $scriptlog 2>&1 ;;
      *)   echo "check0=$check0 -> ERROR " >> $scriptlog 2>&1 ;;
   esac
done

rm -v $todofile >> $scriptlog 2>&1 
rm -v $lockpath/lock-insertdatasets.txt >> $scriptlog 2>&1 

set +C

date  >> $scriptlog 2>&1

