source: trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots@ 7407

Last change on this file since 7407 was 7407, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 2.4 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/doqualityplots/`date +%Y/%m/%d`
39makedir $scriptlogpath
40
41scriptlog=$scriptlogpath/doqualityplots-$datetime.log
42
43date >> $scriptlog 2>&1
44
45lockfile=$lockpath/lock-doqualityplots.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
58echo "producing plots: " >> $scriptlog 2>&1
59check0=`root -q -b $macrospath/plotdb.C+\(\) | tee -a $scriptlog | grep int | sed -e 's/.*(int)//'`
60
61case $check0 in
62 1) echo "check0=$check0 -> everything ok -> move files" >> $scriptlog 2>&1;;
63 *) echo "check0=$check0 -> ERROR -> couldn't create plots -> exit" >> $scriptlog 2>&1
64 rm -v $lockfile >> $scriptlog 2>&1
65 exit;;
66esac
67
68
69webpath=/www/htdocs/datacenter/datacheck
70name=plotdb
71psfile=$webpath/$name.ps
72
73echo "moving files: " >> $scriptlog 2>&1
74mv -v $name.{root,ps} $webpath >> $scriptlog 2>&1
75
76echo "moving files: " >> $scriptlog 2>&1
77pstoimg -antialias -flip r270 -density 100 -type png -multipage $psfile >> $scriptlog 2>&1
78
79rm -v $lockfile >> $scriptlog 2>&1
80
81set +C
82
83date >> $scriptlog 2>&1
84
Note: See TracBrowser for help on using the repository browser.