{% extends 'layouts/base.html' %} {% set page_title = 'Run {0} information'.format(run.number) %} {% block css %} {{ super() }} {% endblock %} {% block container %}

{{ run.number }}

Events: {% if DefaultConditions.EVENT_COUNT in conditions_by_name %} {{ '{:,}'.format(conditions_by_name[DefaultConditions.EVENT_COUNT].value) }} {% else %} 0 {% endif %}

{% if prev_run %} < {{ prev_run.number }} {% endif %} {% if next_run %} {{ next_run.number }} > {% endif %}

{% if run.start_time %} Start   {{ run.start_time }} {% else %} No start info {% endif %} {% if run.end_time %} End {{ run.end_time }} {% else %} No end info {% endif %} {% if run.end_time and run.start_time %} Length {{ run.end_time - run.start_time }} {% endif %}

Files

{% for file in important_files %} {% endfor %}
{{ file.path }}
{% if other_files %}
{% for file in other_files %} {% endfor %}
{{ file.path }}
{% endif %}
{% for condition in conditions %} {% endfor %}
Name Value
{{ condition.name }} {% if condition.value_type == 'json'%}
{{ condition.value }}
{% else %} {{ condition.value }} {% endif %}
{% if component_stats %}

Components

{% for comp_name in component_sorted_keys %} {% set stats = component_stats[comp_name]%} {% endfor %}
Name Event count Event rate Data rate
{{ comp_name }} {{ stats["evt-number"] }} {{ stats["evt-rate"]|round(2, 'floor') }} {{ stats["data-rate"]|round(2, 'floor') }}
{% endif %}
{% endblock %} {% block js_btm %} {{ super() }} {% endblock %}