... | ... | @@ -608,7 +608,26 @@ The summarypages can be found here: |
|
|
|
|
|
For both of these cases we see that remnant quantities are not calculated and a note added to the Logging page.
|
|
|
|
|
|
## Check that remnant properties are not calculated for BNS systems
|
|
|
## Check that remnant properties are can be calculated if forced
|
|
|
|
|
|
Below we show that remnant properties can be calculated if it is forced:
|
|
|
|
|
|
```python
|
|
|
from pesummary.io import read
|
|
|
|
|
|
f = read("/home/charlie.hoy/projects/pesummary_review/bbh_fits/PhenomNSBH_samples.hdf5")
|
|
|
assert "final_mass" not in f.parameters
|
|
|
print(f.parameters)
|
|
|
f.generate_all_posterior_samples(force_remnant_calculation=True)
|
|
|
assert "final_mass" in f.parameters
|
|
|
print(f.parameters)
|
|
|
```
|
|
|
|
|
|
Running the above script results in the following from being printed:
|
|
|
|
|
|
```bash
|
|
|
|
|
|
```
|
|
|
|
|
|
## Review comments
|
|
|
|
... | ... | |