source: trunk/DataCheck/QuickLook/ReDoStar.sh@ 15574

Last change on this file since 15574 was 15387, checked in by Daniela Dorner, 11 years ago
removed sourcekey
  • Property svn:executable set to *
File size: 1.7 KB
Line 
1#!/bin/bash
2#
3source `dirname $0`/../Sourcefile.sh
4printprocesslog "INFO starting $0"
5
6#root=/opt/root_svn/bin/thisroot.sh
7#source $root
8
9anapath=/loc_data/analysis
10auxpath=/loc_data/aux
11
12printprocesslog "INFO get list of calibrated files"
13
14#calfiles=( `find $anapath -type f -name '*_C.root' 2>/dev/null | grep -v failed_stuff | sort` )
15calfiles=( `find $anapath/callisto -type f -name '*_C.root' 2>/dev/null | sort` )
16if [ ${#calfiles[@]} -eq 0 ]
17then
18 printprocesslog "INFO no calibrated files available "
19 finish
20fi
21#starfiles=( `find $anapath -type f -name '*_I.root' 2>/dev/null | grep -v failed_stuff | sort` )
22starfiles=( `find $anapath/star -type f -name '*_I.root' 2>/dev/null | sort` )
23if [ ${#starfiles[@]} -eq 0 ]
24then
25 printprocesslog "INFO no star files available "
26 finish
27fi
28
29echo ${#calfiles[@]}" "${#starfiles[@]}
30printprocesslog "INFO #cal-files:"${#calfiles[@]}" #star-files:"${#starfiles[@]}
31
32if [ ${#starfiles[@]} -lt ${#calfiles[@]} ]
33then
34 for calfile in ${calfiles[@]}
35 do
36 starfile=`echo $calfile | sed -e 's/callisto/star/' -e 's/_C/_I/'`
37 if ! ls $starfile >/dev/null 2>&1
38 then
39 echo $starfile
40 echo $starfile" is missing -> reprocess. "
41 #source=`echo $starfile | cut -d/ -f4`
42 seqfile=`echo $starfile | sed -e 's/star/sequences/' -e 's/_I.root/.seq/'`
43 echo $seqfile
44 ##echo $source" "$seqfile
45 #`dirname $0`/RunStar.sh $source $seqfile
46 `dirname $0`/RunStar.sh $seqfile
47 if ! ls $starfile >/dev/null 2>&1
48 then
49 echo " failed: check log "`echo $starfile | sed -e 's/_I.root/-images.log/'`
50 echo " check calfile "$calfile
51 fi
52 echo ""
53 fi
54 done
55fi
56
57
Note: See TracBrowser for help on using the repository browser.