| 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/2004 <mailto:dorner@astro.uni-wuerzburg.de>
|
|---|
| 21 | #
|
|---|
| 22 | # Copyright: MAGIC Software Development, 2000-2004
|
|---|
| 23 | #
|
|---|
| 24 | #
|
|---|
| 25 | # ========================================================================
|
|---|
| 26 | #
|
|---|
| 27 | #
|
|---|
| 28 |
|
|---|
| 29 | user=`whoami`
|
|---|
| 30 | source /home/$user/Mars/datacenter/scripts/sourcefile
|
|---|
| 31 |
|
|---|
| 32 | set -C
|
|---|
| 33 |
|
|---|
| 34 | table=SequenceProcessStatus
|
|---|
| 35 | column=fStar
|
|---|
| 36 | date=NULL
|
|---|
| 37 | datetime=`date +%F-%H-%M-%S`
|
|---|
| 38 | year=`date +%Y`
|
|---|
| 39 | pno=500 # number of processes, i.e. number of todo-files
|
|---|
| 40 |
|
|---|
| 41 | todofile=$listpath/ToDo-$table-$column
|
|---|
| 42 | getstatuslogpath=$logpath/getstatus/star/$year
|
|---|
| 43 | getstatuslog=$getstatuslogpath/getstatus-star-$datetime.log
|
|---|
| 44 |
|
|---|
| 45 | scriptlogpath=$logpath/run/star/`date +%Y/%m/%d`
|
|---|
| 46 | makedir $scriptlogpath
|
|---|
| 47 | scriptlog=$scriptlogpath/runstar-$datetime.log
|
|---|
| 48 |
|
|---|
| 49 | date >> $scriptlog 2>&1
|
|---|
| 50 |
|
|---|
| 51 | makedir $getstatuslogpath >> $scriptlog 2>&1
|
|---|
| 52 |
|
|---|
| 53 | cd $mars
|
|---|
| 54 |
|
|---|
| 55 | date > $lockpath/lock-getting-star-list.txt >> $scriptlog 2>&1
|
|---|
| 56 | checklock0=$?
|
|---|
| 57 | case $checklock0 in
|
|---|
| 58 | 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
|
|---|
| 59 | 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
|
|---|
| 60 | echo "-> getting list for star is running -> exit" >> $scriptlog 2>&1
|
|---|
| 61 | date >> $scriptlog 2>&1
|
|---|
| 62 | exit;;
|
|---|
| 63 | *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
|
|---|
| 64 | esac
|
|---|
| 65 |
|
|---|
| 66 | echo "checking if other todo-files are there" >> $scriptlog 2>&1
|
|---|
| 67 | if ls $todofile-[1-9]*.txt >> $scriptlog 2>&1
|
|---|
| 68 | then
|
|---|
| 69 | echo "other file(s) on disk " >> $scriptlog 2>&1
|
|---|
| 70 | echo " -> choose one file and start calculation of image parameter" >> $scriptlog 2>&1
|
|---|
| 71 | else
|
|---|
| 72 | echo "getting list..." >> $scriptlog 2>&1
|
|---|
| 73 | check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\,"\"$listpath\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
|
|---|
| 74 |
|
|---|
| 75 | case $check0 in
|
|---|
| 76 | 1) echo "check0=$check0 -> everthing ok -> run star" >> $scriptlog 2>&1;;
|
|---|
| 77 | *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
|
|---|
| 78 | esac
|
|---|
| 79 | echo "cutting to-do-file" >> $scriptlog 2>&1
|
|---|
| 80 | echo "getting no of lines" >> $scriptlog 2>&1
|
|---|
| 81 | lines=`cat $todofile.txt | wc -l`
|
|---|
| 82 | echo "number of lines: "$lines >> $scriptlog 2>&1
|
|---|
| 83 | while (( "$lines" < "$pno" ))
|
|---|
| 84 | do
|
|---|
| 85 | echo "# of lines ($lines) < # of processes ($pno) "
|
|---|
| 86 | pno=`expr $pno / 2`
|
|---|
| 87 | done
|
|---|
| 88 | echo "pno: "$pno
|
|---|
| 89 | nofiles=`expr $lines / \( $pno - 1 \)`
|
|---|
| 90 | nofiles=`expr $nofiles + 1 `
|
|---|
| 91 | echo "number of files: "$nofiles >> $scriptlog 2>&1
|
|---|
| 92 | echo "deviding todo-file" >> $scriptlog 2>&1
|
|---|
| 93 | for (( j=1 ; j <= $pno ; j++ ))
|
|---|
| 94 | do
|
|---|
| 95 | begin=$(echo "1 + ( ($j - 1) * $nofiles)" | bc -l)
|
|---|
| 96 | end=$(echo "$begin + $nofiles - 1" | bc -l)
|
|---|
| 97 | echo "begin: "$begin >> $scriptlog 2>&1
|
|---|
| 98 | echo "end: "$end >> $scriptlog 2>&1
|
|---|
| 99 | file=${todofile}-${j}.txt
|
|---|
| 100 | echo "file: "$file >> $scriptlog 2>&1
|
|---|
| 101 | sed -ne ''"$begin"','"$end"'w '"$file"'' $todofile.txt
|
|---|
| 102 | done
|
|---|
| 103 |
|
|---|
| 104 | rm -v $todofile.txt >> $scriptlog 2>&1
|
|---|
| 105 | fi
|
|---|
| 106 |
|
|---|
| 107 | rm -v $lockpath/lock-getting-star-list.txt >> $scriptlog 2>&1
|
|---|
| 108 |
|
|---|
| 109 | nr=bla
|
|---|
| 110 | echo "finding the right todo-file" >> $scriptlog 2>&1
|
|---|
| 111 | for (( i = 1; i <= $pno ; i++ ))
|
|---|
| 112 | do
|
|---|
| 113 | if ! ls $todofile-$i.txt >> $scriptlog 2>&1
|
|---|
| 114 | then
|
|---|
| 115 | echo "file is not on disk -> continue" >> $scriptlog 2>&1
|
|---|
| 116 | continue
|
|---|
| 117 | fi
|
|---|
| 118 | date > $lockpath/lock-$table-$column-$i.txt >> $scriptlog 2>&1
|
|---|
| 119 | checklock=$?
|
|---|
| 120 | case $checklock in
|
|---|
| 121 | 0) echo "checklock=$checklock -> setting number" >> $scriptlog 2>&1
|
|---|
| 122 | nr=${i}
|
|---|
| 123 | break;;
|
|---|
| 124 | 1) echo "checklock=$checklock -> file exists -> continue" >> $scriptlog 2>&1;;
|
|---|
| 125 | *) echo "checklock=$checklock -> something went completely wrong" >> $scriptlog 2>&1;;
|
|---|
| 126 | esac
|
|---|
| 127 | done
|
|---|
| 128 |
|
|---|
| 129 | case $nr in
|
|---|
| 130 | bla) echo "everything is beeing processed -> exit" >> $scriptlog 2>&1
|
|---|
| 131 | date >> $scriptlog 2>&1
|
|---|
| 132 | exit;;
|
|---|
| 133 | 12345678) echo "process nr: "$nr >> $scriptlog 2>&1;;
|
|---|
| 134 | esac
|
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 | sequences=(`cat $todofile-$nr.txt`)
|
|---|
| 138 |
|
|---|
| 139 | if [ "$sequences" = "" ]
|
|---|
| 140 | then
|
|---|
| 141 | echo "nothing to do -> exit" >> $scriptlog 2>&1
|
|---|
| 142 | rm -v $todofile-$nr.txt >> $scriptlog 2>&1
|
|---|
| 143 | rm -v $lockpath/lock-$table-$column-$nr.txt >> $scriptlog 2>&1
|
|---|
| 144 | date >> $scriptlog 2>&1
|
|---|
| 145 | exit
|
|---|
| 146 | fi
|
|---|
| 147 |
|
|---|
| 148 | echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
|
|---|
| 149 |
|
|---|
| 150 | for sequence in ${sequences[@]}
|
|---|
| 151 | do
|
|---|
| 152 | no=`printf %08d $sequence | cut -c 0-4`
|
|---|
| 153 | no2=`printf %08d $sequence`
|
|---|
| 154 | outpath="$datapath/star/$no/$no2"
|
|---|
| 155 | inpath=`echo $outpath | sed -e 's/star/callisto/'`
|
|---|
| 156 | echo "inpath: "$inpath >> $scriptlog 2>&1
|
|---|
| 157 | echo "outpath: "$outpath >> $scriptlog 2>&1
|
|---|
| 158 | makedir $outpath >> $scriptlog 2>&1
|
|---|
| 159 |
|
|---|
| 160 | sequfile="$sequpath/$no/sequence$no2.txt"
|
|---|
| 161 | echo "sequfile: "$sequfile >> $scriptlog 2>&1
|
|---|
| 162 |
|
|---|
| 163 | echo "run star..." >> $scriptlog 2>&1
|
|---|
| 164 | ./star -b -q -v4 -f --log=$outpath/star$no2.log --html=$outpath/star$no2.html --ind=$inpath --out=$outpath $sequfile 2>> $scriptlog> /dev/null
|
|---|
| 165 | check1=$?
|
|---|
| 166 |
|
|---|
| 167 | case $check1 in
|
|---|
| 168 | 0) echo "check1=$check1 -> everthing ok " >> $scriptlog 2>&1
|
|---|
| 169 | echo "-> inserting the status for star for sequence $sequence into the db" >> $scriptlog 2>&1
|
|---|
| 170 | setstatuslogpath=$logpath/setstatus/star/$no
|
|---|
| 171 | makedir $setstatuslogpath >> $scriptlog 2>&1
|
|---|
| 172 | setstatuslog=$setstatuslogpath/setstatus-star-$no2.log
|
|---|
| 173 |
|
|---|
| 174 | check4=`root -q -b $macrospath/setstatus.C+\("\"$sequence\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslog | grep int | sed -e 's/(int)//'`
|
|---|
| 175 | case $check4 in
|
|---|
| 176 | 1) echo "check4=$check4 -> everthing ok, status has been set" >> $scriptlog 2>&1;;
|
|---|
| 177 | *) echo "check4=$check4 -> ERROR -> step could not be set" >> $scriptlog 2>&1;;
|
|---|
| 178 | esac
|
|---|
| 179 | ;;
|
|---|
| 180 | *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
|
|---|
| 181 | esac
|
|---|
| 182 | done
|
|---|
| 183 |
|
|---|
| 184 | rm -v $todofile-$nr.txt >> $scriptlog 2>&1
|
|---|
| 185 | rm -v $lockpath/lock-$table-$column-$nr.txt >> $scriptlog 2>&1
|
|---|
| 186 |
|
|---|
| 187 | set +C
|
|---|
| 188 |
|
|---|
| 189 | date >> $scriptlog 2>&1
|
|---|
| 190 |
|
|---|