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-2006
|
---|
23 | #
|
---|
24 | #
|
---|
25 | # ========================================================================
|
---|
26 | #
|
---|
27 | # This script produces the qualityplots in the web by executing the macro
|
---|
28 | # plotdb.C
|
---|
29 | #
|
---|
30 | # After checking, if the script is already running, the plots are produced
|
---|
31 | # (ps and root file). Then they are moved to the webdirectory and there png
|
---|
32 | # files are produced from the ps file.
|
---|
33 | #
|
---|
34 |
|
---|
35 | user=`whoami`
|
---|
36 | program=doqualityplots
|
---|
37 | source /home/$user/Mars/datacenter/scripts/sourcefile
|
---|
38 |
|
---|
39 | set -C
|
---|
40 |
|
---|
41 | cd $mars
|
---|
42 |
|
---|
43 | datetime=`date +%F-%H-%M-%S`
|
---|
44 |
|
---|
45 | scriptlogpath=$logpath/run/doqualityplots/`date +%Y/%m/%d`
|
---|
46 | makedir $scriptlogpath
|
---|
47 |
|
---|
48 | scriptlog=$scriptlogpath/doqualityplots-$datetime.log
|
---|
49 |
|
---|
50 | date >> $scriptlog 2>&1
|
---|
51 |
|
---|
52 | # check if script is already running
|
---|
53 | lockfile=$lockpath/lock-doqualityplots.txt
|
---|
54 | checklock >> $scriptlog 2>&1
|
---|
55 |
|
---|
56 | # producing the plots with the values from the database
|
---|
57 | echo "producing plots: " >> $scriptlog 2>&1
|
---|
58 | check0=`root -q -b $macrospath/plotdb.C+\(\) | tee -a $scriptlog | grep int | sed -e 's/.*(int)//'`
|
---|
59 |
|
---|
60 | case $check0 in
|
---|
61 | 1) echo "check0=$check0 -> everything ok -> move files" >> $scriptlog 2>&1;;
|
---|
62 | *) echo "check0=$check0 -> ERROR -> couldn't create plots -> exit" >> $scriptlog 2>&1
|
---|
63 | rm -v $lockfile >> $scriptlog 2>&1
|
---|
64 | exit;;
|
---|
65 | esac
|
---|
66 |
|
---|
67 | # making files available in the web
|
---|
68 | webpath=/www/htdocs/datacenter/datacheck
|
---|
69 | name=plotdb
|
---|
70 | psfile=$webpath/$name.ps
|
---|
71 |
|
---|
72 | echo "moving files: " >> $scriptlog 2>&1
|
---|
73 | mv -v $name.{root,ps} $webpath >> $scriptlog 2>&1
|
---|
74 |
|
---|
75 | echo "producing png files: " >> $scriptlog 2>&1
|
---|
76 | pstoimg -antialias -flip r270 -density 100 -type png -multipage $psfile >> $scriptlog 2>&1
|
---|
77 |
|
---|
78 |
|
---|
79 | # second part
|
---|
80 | # making plots for all datasets
|
---|
81 | datasets=`find $datapath/ganymed -name ganymed*.root | grep -v summary`
|
---|
82 |
|
---|
83 | for dataset in ${datasets[@]}
|
---|
84 | do
|
---|
85 | nr=`echo $dataset | cut -d/ -f6`
|
---|
86 | nr2=`echo $nr | cut -c 1-5`
|
---|
87 | outpath=`dirname $dataset`
|
---|
88 | webpath=`echo $outpath | sed -e 's/magic\/data/www\/htdocs\/datacenter/'`
|
---|
89 | plotlog=$outpath/plotdb$nr.log
|
---|
90 | datasetfile=$datasetpath/$nr2/dataset$nr.txt
|
---|
91 | makedir $outpath >> $scriptlog 2>&1
|
---|
92 | rm -v $plotlog >> $scriptlog 2>&1
|
---|
93 | check1=`root -q -b $macrospath/plotdb.C+\("\"$datasetfile\""\) 2>>$plotlog | tee -a $scriptlog | grep int | sed -e 's/.*(int)//'`
|
---|
94 | echo "check1: "$check1 >> $scriptlog 2>&1
|
---|
95 | newpsfile=$outpath/plotdb$nr.ps
|
---|
96 | newrootfile=$outpath/plotdb$nr.root
|
---|
97 | mv -v plotdb.ps $newpsfile >> $scriptlog 2>&1
|
---|
98 | mv -v plotdb.root $newrootfile >> $scriptlog 2>&1
|
---|
99 | cp -v $newrootfile $webpath >> $scriptlog 2>&1
|
---|
100 | check1=
|
---|
101 | done
|
---|
102 |
|
---|
103 | rm -v $lockfile >> $scriptlog 2>&1
|
---|
104 |
|
---|
105 | set +C
|
---|
106 |
|
---|
107 | date >> $scriptlog 2>&1
|
---|
108 |
|
---|