Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding count rate in core #127

Closed
wants to merge 10 commits into from
3 changes: 2 additions & 1 deletion gcn/notices/core/Statistics.example.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/core/Statistics.schema.json",
"far": 0.001,
"trigger_type": "rate",
"net_count_rate": 2000,
"background_count_rate": 250,
"rate_snr": 5.2,
"rate_duration": 10,
"rate_energy_range": [100, 1000],
Expand Down
11 changes: 11 additions & 0 deletions gcn/notices/core/Statistics.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,21 @@
"type": "number",
"description": "False alarm rate: the rate of occurrence of non-astrophysical events that are of the same intensity or significance as the current event [Hz]"
},
<<<<<<< HEAD
=======
"trigger_type": {
"enum": ["rate", "image"],
"description": "Type of trigger algorithm used to identify the transient event."
},
>>>>>>> e84f4da1964f4b46bc9da752a3c009fd71d17e68
"net_count_rate": {
"type": "number",
"description": "Net count rate of the transient above the background [counts/s] over rate duration and rate energy range. Do specify rate_duration and rate_energy_range with net_count_rate property."
},
"backgound_count_rate": {
"type": "number",
"description": "Count rate of the background for the transient [counts/s] for rate_duration and rate_energy_range used for net count rate."
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not think we need to include this.

"rate_snr": {
"type": "number",
"description": "Rate signal to noise ratio [dimensionless]"
Expand Down
Loading