##!/usr/bin/python2
## -*- coding: utf-8 -*-

<%page args="shot, page" />

<%
    from pygolem_lite.web import make_config, get_page_paths, cat, make_zoom_image
    import re, os
    from pygolem_lite import Shot
    page_path, base_path, page  = get_page_paths(shot, page)
%>

<h2>Integrated dose measurements</h2>

<table>
	<tr>
		<th>Discharge phase</th>
		<th>Integrated dose &#91;Sv&#93;</th>
	</tr>

	<tr>
		<td>before</td>
		<td>${cat('pre_Sv')}</td>
	</tr>

	<tr>
		<td>after</td>
		<td>${cat('post_Sv')}</td>
	</tr>

	<tr>
		<td>difference</td>
		<td>${cat('diff_Sv')}</td>
	</tr>
</table>

<h2>Diagnostic instrument</h2>
<a href="http://www.flukebiomedical.com/Biomedical/usen/radiation-safety/Survey-Meters/451P-pressurized-ion-chamber-radiation-detector-survey-meter.htm?PID=54793>Fluke Biomedical 451P Pressurized μR Ion Chamber Radiation Survey Meter</a>

<h3>Communication scripts</h3>
<dl>
	<dt><a href="main.py">main.py</a></dt>
		<dd>main communication script in Python</dd>
	<dt><a href="makefile">makefile</a></dt>
		<dd>execution batch file</dd>
</dl>

