{% extends "base.html" %} {% block content %} {% block header %}

{{ dir_name }}

..


{% if parent_name %}

{{ parent_name }}


{% endif %} {% endblock %} {% block directory_summary %}

Summary

{{ total }} comparisons:

To the DQM GUI...

Releases:

Statistical Test (Pvalue threshold):


{% endblock %} {% block subdirectories %} {% if subdirs %}

Sub-Directories

{% for name, total, successes, nulls, fails, success, null, fail in subdirs %}

{{ name }}

{{ total }} comparisons:


{% endfor %}
{% endif %} {% endblock %} {% block failed_comparisons %} {% if failed_histos %}

Failing Comparisons

{% endif %} {% for name, p_value, url1, url2, overlay in failed_histos %}

{{ name }}

Chi2: {{ p_value }}

{{ release1 }}
{{ release2 }}
{% endfor %} {% if failed_histos %}
{% endif %} {% endblock %} {% block successful_comparisons %} {% if successful_histos %}

Successful Comparisons

{% for name, p_value, url1, url2, overlay in successful_histos %}

{{ name }}

Chi2: {{ p_value }}

{{ release1 }}
{{ release2 }}
{% endfor %}
{% endif %} {% endblock %} {% block null_comparisons %} {% if null_histos %}

Null Comparisons

{% for name, p_value, url1, url2, overlay in null_histos %}

{{ name }}

Chi2: {{ p_value }}

{{ release1 }}
{{ release2 }}
{% endfor %}
{% endif %} {% endblock %} {% block ranks_summary %} {# Only if directory is RootFileComparison directory #} {% endblock %} {% endblock %}