Shots with plasma position measurement & HXR activity

From #44000 to #44164 with t_plasma_duration_limit=7

ShotNoBasic diagnosticsHXR diagnosticsFast camerasPlasma position
44015
24-03-07
17:55:33
44016
24-03-07
18:05:54
44040
24-03-11
23:13:20
44041
24-03-12
08:53:26
44078
24-03-12
10:56:20
44080
24-03-12
11:02:49
44081
24-03-12
11:05:54
44082
24-03-12
11:09:05
44084
24-03-12
11:15:58
44085
24-03-12
11:19:25
44086
24-03-12
11:22:35
44091
24-03-12
14:01:05
44092
24-03-12
14:04:22
44103
24-03-12
15:04:30
44109
24-03-12
15:27:18
44111
24-03-12
15:33:46
44114
24-03-12
15:43:17
44120
24-03-12
16:02:47
44126
24-03-12
16:22:14
44132
24-03-12
16:40:40
44136
24-03-12
16:53:24
44137
24-03-12
16:57:07
44138
24-03-12
17:00:31
44139
24-03-12
17:04:12
44140
24-03-12
17:07:37
44141
24-03-12
17:10:51
44142
24-03-12
17:14:06
44144
24-03-12
17:20:07
44145
24-03-12
17:23:33
44148
24-03-12
17:32:54
44149
24-03-12
17:36:11
44150
24-03-12
17:39:26
44151
24-03-12
17:42:41
44158
24-03-14
16:40:00
44160
24-03-14
16:51:09
Alltogether 35 discharges

For generation bash script used

from=44000
to=44164
soubor=index.html; 
url=https://golem.fjfi.cvut.cz/shots/
t_plasma_duration_limit=7
title='Shots with plasma position measurement & HXR activity'
#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></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" ]] \
; 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>
    </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;