... | ... | @@ -693,6 +693,7 @@ print(f.parameters) |
|
|
## example outputs
|
|
|
|
|
|
* https://ligo.gravity.cf.ac.uk/~charlie.hoy/LVC/projects/pesummary_review/v0.5.6/non_precessing_remnant/home.html
|
|
|
* https://ligo.gravity.cf.ac.uk/~charlie.hoy/LVC/projects/pesummary_review/v0.5.6/non_precessing_remnant/evolved/home.html
|
|
|
|
|
|
## Check non_evolved quantities
|
|
|
|
... | ... | @@ -720,7 +721,14 @@ To check that the `non_evolved` quantities are returned when the `--evolve_spins |
|
|
$ summarypages --webdir /home/charlie.hoy/public_html/LVC/projects/pesummary_review/v0.5.6/non_precessing_remnant/evolved --samples /home/charlie.hoy/projects/pesummary_review/remnant/non_evolved/PhenomD_samples.hdf5 --gw --approximant IMRPhenomD --labels non_precessing --evolve_spins
|
|
|
```
|
|
|
|
|
|
Next we
|
|
|
We then checked the samples directly by using the following script:
|
|
|
|
|
|
```python
|
|
|
import numpy as np
|
|
|
data = np.genfromtxt("/home/charlie.hoy/public_html/LVC/projects/pesummary_review/v0.5.6/non_precessing_remnant/evolved/samples/non_precessing_pesummary.dat", names=True)
|
|
|
assert "final_mass_non_evolved" not in data.dtype.names
|
|
|
assert "final_mass" in data.dtype.names
|
|
|
```
|
|
|
|
|
|
## Review comments
|
|
|
|
... | ... | |