Shots with plasma position measurement & HXR activity & MHDs

From #44421 to #44500 with t_plasma_duration_limit=7

ShotNoBasic diagnosticsHXR diagnosticsFast camerasPlasma positionMHD
44421
24-04-10
11:04:57
44422
24-04-10
11:10:02
44423
24-04-10
11:13:31
44424
24-04-10
11:17:00
44425
24-04-10
11:20:33
44426
24-04-10
11:24:05
44427
24-04-10
11:27:43
44487
24-04-17
11:49:06
44488
24-04-17
12:13:19
Alltogether 9 discharges

For generation bash script used

from=44421
to=44500
soubor=index.html; 
url=https://golem.fjfi.cvut.cz/shots/
t_plasma_duration_limit=7
title='Shots with plasma position measurement & HXR activity & MHDs'
#url=/shots

echo "<html><body>
<h1>$title</h1>
<h2>From #$from to #$to with t_plasma_duration_limit=$t_plasma_duration_limit</h2>
<table>" > $soubor;
echo "<tr><th>ShotNo</th><th>Basic diagnostics</th><th>HXR diagnostics</th><th>Fast cameras</th><th>Plasma position</th><th>MHD</th></tr>" >> $soubor;
Counter=0
for i in `seq $from $to`; do echo -ne '*'$i:; 
if [[ `echo $(</golem/shots/$i/Diagnostics/PlasmaDetection/Results/t_plasma_duration)|bc|tr -d -` > $t_plasma_duration_limit ]] \
&& [[ -e "/golem/shots/$i/Devices/Oscilloscopes/TektrMSO58-a/ScreenShotAll.png" ]] \
&& [[ -e "/golem/shots/$i/Devices/AVs/PhotronMiniUX100-a/ScreenShotAll.png" ]] \
&& [[ -e "/golem/shots/$i/Diagnostics/FastCameras/icon-fig.png" ]] \
&& [[ -e "/golem/shots/$i/Devices/DASs/2NI_PC-VoSv/ScreenShotAll.png" ]] \
; then
    let Counter++ #increment
    echo -ne yes';'
    echo "<tr>
    <td><a href=$url/$i>$i</a><br>`cat /golem/shots/$i/shot_date`<br>`cat /golem/shots/$i/shot_time`</td>
    <td><img src=$url/$i/Diagnostics/BasicDiagnostics/graph.png></td>
    <td><img src=$url/$i/Devices/Oscilloscopes/TektrMSO58-a/rawdata.jpg></td>
    <td><img src=$url/$i/Devices/AVs/PhotronMiniUX100-a/rawdata.jpg></td>
    <td><img src=$url/$i/Diagnostics/FastCameras/graph.png></td>
    <td><img src=$url/$i/Devices/DASs/2NI_PC-VoSv/rawdata.jpg></td>
    </tr>" >> $soubor;
else echo -ne no';';fi;done
echo "</table>Alltogether $Counter discharges<hr/>
<h2>For generation bash script used</h2>
<pre>
`cat script.bash|sed 's/</\</g'|sed 's/>/\>/g'`
</pre></body></html>" >> $soubor;