... | @@ -52,6 +52,18 @@ summarypages --webdir /home/charlie.hoy/public_html/projects/pesummary_review/v0 |
... | @@ -52,6 +52,18 @@ summarypages --webdir /home/charlie.hoy/public_html/projects/pesummary_review/v0 |
|
|
|
|
|
The output pages can be seen [here](https://ldas-jobs.ligo.caltech.edu/~charlie.hoy/projects/pesummary_review/v0.12.0/viewing_angle/home.html). We see that the inferred `viewing_angle` is `0.83^{+0.26}_{-0.22}` which agrees with the results in Table 1.
|
|
The output pages can be seen [here](https://ldas-jobs.ligo.caltech.edu/~charlie.hoy/projects/pesummary_review/v0.12.0/viewing_angle/home.html). We see that the inferred `viewing_angle` is `0.83^{+0.26}_{-0.22}` which agrees with the results in Table 1.
|
|
|
|
|
|
|
|
We also check the samples using the conversion [here](https://git.ligo.org/publications/gw190814/gw190814-discovery/-/wikis/PE-result-table#pe-table) which was reviewed as part of the GW190814 discovery paper:
|
|
|
|
|
|
|
|
```python
|
|
|
|
from pesummary.io import read
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
f = read("/home/charlie.hoy/public_html/projects/pesummary_review/v0.12.0/viewing_angle/samples/PublicationSamples_pesummary.dat")
|
|
|
|
pesummary_viewing_angle = f.samples_dict["viewing_angle"]
|
|
|
|
reviewed_viewing_angle = np.array([np.min([i, np.pi-i]) for i in f.samples_dict["theta_jn"]])
|
|
|
|
np.testing.assert_almost_equal(pesummary_viewing_angle, reviewed_viewing_angle)
|
|
|
|
```
|
|
|
|
|
|
## Reviewer comments
|
|
## Reviewer comments
|
|
|
|
|
|
# `summaryextract`
|
|
# `summaryextract`
|
... | | ... | |