source: trunk/MagicSoft/Mars/datacenter/scripts/dowebplots@ 7426

Last change on this file since 7426 was 7426, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 3.2 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/2005 <mailto:dorner@astro.uni-wuerzburg.de>
21#
22# Copyright: MAGIC Software Development, 2000-2004
23#
24#
25# ========================================================================
26#
27#
28
29user=`whoami`
30source /home/$user/Mars/datacenter/scripts/sourcefile
31
32set -C
33
34cd $mars
35
36datetime=`date +%F-%H-%M-%S`
37
38scriptlogpath=$logpath/run/dowebplots/`date +%Y/%m/%d`
39makedir $scriptlogpath
40
41scriptlog=$scriptlogpath/dowebplots-$datetime.log
42
43date >> $scriptlog 2>&1
44
45lockfile=$lockpath/lock-dowebplots.txt
46date > $lockfile >> $scriptlog 2>&1
47checklock0=$?
48case $checklock0 in
49 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
50 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
51 echo "-> for datacheck is running -> exit" >> $scriptlog 2>&1
52 date >> $scriptlog 2>&1
53 exit;;
54 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
55esac
56
57
58
59rootfiles=`find /www/htdocs/datacenter/ -name '*.root' -maxdepth 10 | grep -v '_I_' | grep -v '_Y_' | grep -v 'subsystemdata' | grep -v 'star_lapalma'`
60
61if [ "$rootfiles" = "" ]
62then
63 echo "nothing to do -> exit" >> $scriptlog 2>&1
64 rm -v $lockfile >> $scriptlog 2>&1
65 date >> $scriptlog 2>&1
66 exit
67fi
68
69echo "rootfiles: "${rootfiles[@]} >> $scriptlog 2>&1
70
71for rootfile in ${rootfiles[@]}
72do
73 date >> $scriptlog 2>&1
74 psfile=`echo $file | sed -e 's/.root$/.ps/g'`
75 echo "rootfile: $rootfile" >> $scriptlog 2>&1
76 echo "psfile: $psfile" >> $scriptlog 2>&1
77
78 daterootfile=`date +%Y%m%d -r $rootfile` >> $scriptlog 2>&1
79 datepsfile=`date +%Y%m%d -r $psfile` >> $scriptlog 2>&1
80 if [ "$datepsfile" = "" ]
81 then
82 echo "date of psfile is empty -> the file $psfile doesn't exist" >> $scriptlog 2>&1
83 echo " -> setting date to 0 and producing psfile..." >> $scriptlog 2>&1
84 datepsfile=0
85 fi
86
87 echo "checking date..." >> $scriptlog 2>&1
88 echo "date of rootfile: $daterootfile" >> $scriptlog 2>&1
89 echo "date of psfile: $datepsfile" >> $scriptlog 2>&1
90
91 if [ "$datepsfile" -gt "$daterootfile" ] >> $scriptlog 2>&1
92 then
93 echo "psfile is older than rootfile -> continue " >> $scriptlog 2>&1
94 continue
95 fi
96
97 echo "producing psfile..." >> $scriptlog 2>&1
98 ./showplot -b --save-as-ps=$psfile $rootfile >> $scriptlog 2>&1
99
100 echo "converting plots to png..." >> $scriptlog 2>&1
101 pstoimg -antialias -flip r270 -density 100 -type png -multipage $psfile >> $scriptlog 2>&1
102done
103
104rm -v $lockfile >> $scriptlog 2>&1
105
106set +C
107
108date >> $scriptlog 2>&1
109
Note: See TracBrowser for help on using the repository browser.