srg/Templates/heasarc/show_heasarc_rass2rxs.html
2024-06-05 11:33:02 +03:00

40 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block header %}{% endblock %}
{% block content %}
{% if heasarc %}
<h4>Specific {{ heasarc.description }} fields:</h4>
count_rate = {{ heasarc.count_rate }} # Source Count Rate<br />
count_rate_error = {{ heasarc.count_rate_error }} # Error in Source Count Rate<br />
exposure = {{ heasarc.exposure }} # Source Exposure Time<br />
source_extent = {{ heasarc.source_extent }} # Source Extent<br />
source_extent_prob = {{ heasarc.source_extent_prob }} # Probability of the Source Extent<br />
source_quality_flag = {{ heasarc.source_quality_flag }} # Source Quality Flag (0=Good)<br />
hardness_ratio_1 = {{ heasarc.hardness_ratio_1 }} # Hardness Ratio 1<br />
hardness_ratio_2 = {{ heasarc.hardness_ratio_2 }} # Hardness Ratio 2<br />
<hr>
plaw_flux = {{ heasarc.plaw_flux }}<br />
plaw_chi2_reduced ={{ heasarc.plaw_chi2_reduced }}<br />
plaw_nh = {{ heasarc.plaw_nh }}<br />
<hr>
mekal_flux = {{ heasarc.mekal_flux }}<br />
mekal_chi2_reduced = {{ heasarc.mekal_chi2_reduced }}<br />
mekal_nh = {{ heasarc.mekal_nh }}<br />
<hr>
bb_flux = {{ heasarc.bb_flux }}<br />
bb_chi2_reduced = {{ heasarc.bb_chi2_reduced }}<br />
bb_nh = {{ heasarc.bb_nh }}<br />
<hr>
x_pixel_error = {{ heasarc.x_pixel_error }} 1-Sigma Error in X Image Coordinate<br />
y_pixel_error = {{ heasarc.y_pixel_error }} 1-Sigma Error in Y Image Coordinate<br />
time = {{ heasarc.time }} Start Time of Exposure When Source Is within FOV and Detector on<br />
{% endif %}
{% endblock %}