Index: trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots	(revision 9123)
+++ 	(revision )
@@ -1,111 +1,0 @@
-#!/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/2005 <mailto:dorner@astro.uni-wuerzburg.de>
-#
-#   Copyright: MAGIC Software Development, 2000-2007
-#
-#
-# ========================================================================
-#
-# This script produces the qualityplots in the web by executing the macro 
-# plotdb.C 
-# 
-# After checking, if the script is already running, the plots are produced 
-# (ps and root file). Then they are moved to the webdirectory and there png 
-# files are produced from the ps file. 
-#
-
-source `dirname $0`/sourcefile
-printprocesslog "INFO starting $0"
-program=doqualityplots
-
-set -C
-
-cd $mars
-
-scriptlog=$runlogpath/$program-$datetime.log
-date >> $scriptlog 2>&1
-
-# check if script is already running
-lockfile=$lockpath/lock-$program.txt
-checklock  >> $scriptlog 2>&1
-
-# producing the plots with the values from the database 
-echo "producing plots: " >> $scriptlog 2>&1
-printprocesslog "INFO producing data quality plots"
-check0=`root -q -b $macrospath/plotdb.C+\(\) | tee -a $scriptlog | intgrep`
-
-case $check0 in 
-   1)   echo " check0=$check0 -> everything ok -> move files" >> $scriptlog 2>&1
-        printprocesslog "INFO plots successfully produced"
-        ;;
-   *)   echo " check0=$check0 -> ERROR -> couldn't create plots -> exit" >> $scriptlog 2>&1
-        printprocesslog "ERROR producing plots failed"
-        finish >> $scriptlog 2>&1
-        ;;
-esac
-
-# making files available in the web
-printprocesslog "INFO moving files to web"
-webpath=/www/htdocs/datacenter/datacheck
-name=plotdb
-psfile=$webpath/$name.ps
-
-echo "moving files: " >> $scriptlog 2>&1
-mv -v $name.{root,ps} $webpath  >> $scriptlog 2>&1
-
-echo "creating temporary dir for pstoimg..." >> $scriptlog 2>&1
-tempwebplotspath=/tmp/pstoimgtmp/tempqualityplots
-makedir $tempwebplotspath >> $scriptlog 2>&1
-
-echo "producing png files: " >> $scriptlog 2>&1
-pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1
-
-echo "removing temporary dir..." >> $scriptlog 2>&1
-rmdir -pv $tempwebplotspath >> $scriptlog 2>&1
-
-# second part
-# making plots for all datasets
-printprocesslog "INFO producing plots for datasets"
-datasets=`find $datapath/ganymed -name ganymed*.root | grep -v summary`
-
-for dataset in ${datasets[@]}
-do 
-   printprocesslog "INFO producing plots for dataset $dataset"
-   nr=`echo $dataset | cut -d/ -f6`
-   nr2=`echo $nr | cut -c 1-5`
-   outpath=`dirname $dataset`
-   webpath=`echo $outpath | sed -e 's/magic\/data/www\/htdocs\/datacenter/'`
-   plotlog=$outpath/plotdb$nr.log
-   datasetfile=$datasetpath/$nr2/dataset$nr.txt
-   makedir $outpath >> $scriptlog 2>&1
-   rm -v $plotlog >> $scriptlog 2>&1
-   check1=`root -q -b $macrospath/plotdb.C+\("\"$datasetfile\""\) 2>>$plotlog | tee -a $scriptlog | intgrep`
-   echo " check1: "$check1 >> $scriptlog 2>&1
-   newpsfile=$outpath/plotdb$nr.ps
-   newrootfile=$outpath/plotdb$nr.root
-   mv -v plotdb.ps $newpsfile >> $scriptlog 2>&1
-   mv -v plotdb.root $newrootfile >> $scriptlog 2>&1
-   cp -v $newrootfile $webpath >> $scriptlog 2>&1
-   check1=
-done
-
-finish >> $scriptlog 2>&1
-
Index: trunk/MagicSoft/Mars/datacenter/scripts/webupdate-callisto
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/webupdate-callisto	(revision 9123)
+++ 	(revision )
@@ -1,51 +1,0 @@
-#!/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/2006 <mailto:dorner@astro.uni-wuerzburg.de>
-#
-#   Copyright: MAGIC Software Development, 2000-2007
-#
-#
-# ========================================================================
-#
-#
-
-
-source `dirname $0`/sourcefile
-printprocesslog "INFO starting $0"
-
-scriptlog=$runlogpath/webupdate-callisto-$datetime.log
-date >> $scriptlog 2>&1
-
-echo "do plots for all root-files (callisto) ..." >> $scriptlog 2>&1
-$scriptspath/dowebplots -p callisto
-
-echo "do rsync for callisto files" >> $scriptlog 2>&1
-rsync -av --delete --exclude=*/*/20[01][0-9]*_Y_*[.]root --exclude=*/*/callisto.rc $datapath/callisto/ $webpath/callisto >> $scriptlog 2>&1
-
-echo "do rsync for subsystem files" >> $scriptlog 2>&1
-rsync -av --delete /magic/subsystemdata/ $webpath/subsystemdata >> $scriptlog 2>&1
-
-echo "do rsync for sequence files" >> $scriptlog 2>&1
-rsync -av --delete /magic/sequences/ $webpath/sequences >> $scriptlog 2>&1
-
-date >> $scriptlog 2>&1
-
-printprocesslog "INFO $0 finished"
-
Index: trunk/MagicSoft/Mars/datacenter/scripts/webupdate-ganymed
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/webupdate-ganymed	(revision 9123)
+++ 	(revision )
@@ -1,48 +1,0 @@
-#!/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/2006 <mailto:dorner@astro.uni-wuerzburg.de>
-#
-#   Copyright: MAGIC Software Development, 2000-2007
-#
-#
-# ========================================================================
-#
-#
-
-
-source `dirname $0`/sourcefile
-printprocesslog "INFO starting $0"
-
-scriptlog=$runlogpath/webupdate-ganymed-$datetime.log
-date >> $scriptlog 2>&1
-
-echo "do plots for all root-files (ganymed) ..." >> $scriptlog 2>&1
-$scriptspath/dowebplots -p ganymed
-
-echo "do rsync for ganymed files" >> $scriptlog 2>&1
-rsync -av --delete $datapath/ganymed/ $webpath/ganymed >> $scriptlog 2>&1
-
-echo "do rsync for dataset files" >> $scriptlog 2>&1
-rsync -av --delete /magic/datasets/ $webpath/datasets >> $scriptlog 2>&1
-
-date >> $scriptlog 2>&1
-
-printprocesslog "INFO $0 finished"
-
Index: trunk/MagicSoft/Mars/datacenter/scripts/webupdate-sinope
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/webupdate-sinope	(revision 9123)
+++ 	(revision )
@@ -1,44 +1,0 @@
-#!/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/2006 <mailto:dorner@astro.uni-wuerzburg.de>
-#
-#   Copyright: MAGIC Software Development, 2000-2007
-#
-#
-# ========================================================================
-#
-#
-
-source `dirname $0`/sourcefile
-printprocesslog "INFO starting $0"
-
-scriptlog=$runlogpath/webupdate-sinope-$datetime.log
-date >> $scriptlog 2>&1
-
-echo "do plots for all root-files (sinope) ..." >> $scriptlog 2>&1
-$scriptspath/dowebplots -p sinope >> $scriptlog 2>&1
-
-echo "do rsync for sinope files" >> $scriptlog 2>&1
-rsync -av --delete $datapath/sinope/ $webpath/sinope >> $scriptlog 2>&1
-
-date >> $scriptlog 2>&1
-
-printprocesslog "INFO $0 finished"
-
Index: trunk/MagicSoft/Mars/datacenter/scripts/webupdate-star
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/webupdate-star	(revision 9123)
+++ 	(revision )
@@ -1,51 +1,0 @@
-#!/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/2006 <mailto:dorner@astro.uni-wuerzburg.de>
-#
-#   Copyright: MAGIC Software Development, 2000-2007
-#
-#
-# ========================================================================
-#
-#
-
-
-source `dirname $0`/sourcefile
-printprocesslog "INFO starting $0"
-
-scriptlog=$runlogpath/webupdate-star-$datetime.log
-date >> $scriptlog 2>&1
-
-echo "do plots for all root-files (star) ... " >> $scriptlog 2>&1
-$scriptspath/dowebplots -p star
-
-echo "do rsync for star files" >> $scriptlog 2>&1
-rsync -av --delete --exclude=*/*/20[01][0-9]*_I_*[.]root $datapath/star/ $webpath/star >> $scriptlog 2>&1
-
-echo "do rsync for star files from la palma" >> $scriptlog 2>&1
-rsync -av --delete --exclude=*/20[01][0-9]*_[IQY]_*[.]root --exclude=*/Time*.dat /scratch/lapalma/star/ $webpath/star_lapalma >> $scriptlog 2>&1
-
-echo "do rsync for sequence files" >> $scriptlog 2>&1
-rsync -av --delete /magic/sequences/ $webpath/sequences >> $scriptlog 2>&1
-
-date >> $scriptlog 2>&1
-
-printprocesslog "INFO $0 finished"
-
