58 lines
2.4 KiB
HTML
58 lines
2.4 KiB
HTML
|
|
{% extends "base.html" %}
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if heasarc %}
|
|
<h4>Specific {{ heasarc.description }} fields:</h4>
|
|
Exposure = {{ heasarc.Exposure }}<br>
|
|
LastObsDate = {{ heasarc.LastObsDate }}<br>
|
|
FirstObsDate = {{ heasarc.FirstObsDate }}<br>
|
|
FirstDetDate = {{ heasarc.FirstDetDate }}<br>
|
|
LastDetDate = {{ heasarc.LastDetDate }}<br>
|
|
BestDetectionID = {{ heasarc.BestDetectionID }}<br>
|
|
DetFlag = {{ heasarc.DetFlag }}<br>
|
|
Rate_band0 = {{ heasarc.Rate_band0 }}<br>
|
|
Rate_band0_pos = {{ heasarc.Rate_band0_pos }}<br>
|
|
Rate_band0_neg = {{ heasarc.Rate_band0_neg }}<br>
|
|
Rate_band1 = {{ heasarc.Rate_band1 }}<br>
|
|
Rate_band1_pos = {{ heasarc.Rate_band1_pos }}<br>
|
|
Rate_band1_neg = {{ heasarc.Rate_band1_neg }}<br>
|
|
Rate_band2 = {{ heasarc.Rate_band2 }}<br>
|
|
Rate_band2_pos = {{ heasarc.Rate_band2_pos }}<br>
|
|
Rate_band2_neg = {{ heasarc.Rate_band2_neg }}<br>
|
|
Rate_band3 = {{ heasarc.Rate_band3 }}<br>
|
|
Rate_band3_pos = {{ heasarc.Rate_band3_pos }}<br>
|
|
Rate_band3_neg = {{ heasarc.Rate_band3_neg }}<br>
|
|
PeakRate_band0_pos = {{ heasarc.PeakRate_band0_pos }}<br>
|
|
PeakRate_band0_neg = {{ heasarc.PeakRate_band0_neg }}<br>
|
|
PeakRate_band1 = {{ heasarc.PeakRate_band1 }}<br>
|
|
PeakRate_band1_pos = {{ heasarc.PeakRate_band1_pos }}<br>
|
|
PeakRate_band1_neg = {{ heasarc.PeakRate_band1_neg }}<br>
|
|
PeakRate_band2 = {{ heasarc.PeakRate_band2 }}<br>
|
|
PeakRate_band2_pos = {{ heasarc.PeakRate_band2_pos }}<br>
|
|
PeakRate_band2_neg = {{ heasarc.PeakRate_band2_neg }}<br>
|
|
PeakRate_band3 = {{ heasarc.PeakRate_band3 }}<br>
|
|
PeakRate_band3_pos = {{ heasarc.PeakRate_band3_pos }}<br>
|
|
PeakRate_band3_neg = {{ heasarc.PeakRate_band3_neg }}<br>
|
|
PowFlux = {{ heasarc.PowFlux }}<br>
|
|
PowFlux_pos = {{ heasarc.PowFlux_pos }}<br>
|
|
PowFlux_neg = {{ heasarc.PowFlux_neg }}<br>
|
|
APECFlux = {{ heasarc.APECFlux }}<br>
|
|
APECFlux_pos = {{ heasarc.APECFlux_pos }}<br>
|
|
APECFlux_neg = {{ heasarc.APECFlux_neg }}<br>
|
|
PowPeakFlux = {{ heasarc.PowPeakFlux }}<br>
|
|
PowPeakFlux_pos = {{ heasarc.PowPeakFlux_pos }}<br>
|
|
PowPeakFlux_neg = {{ heasarc.PowPeakFlux_neg }}<br>
|
|
FittedPowNH = {{ heasarc.FittedPowNH }}<br>
|
|
FittedPowRedChi = {{ heasarc.FittedPowRedChi }}<br>
|
|
FittedAPECNH = {{ heasarc.FittedAPECNH }}<br>
|
|
FittedAPECRedChi = {{ heasarc.FittedAPECRedChi }}<br>
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|