Update Reviewer Notes authored by ABHIRUP GHOSH's avatar ABHIRUP GHOSH
...@@ -42,12 +42,6 @@ The overall plan for this review is here: ...@@ -42,12 +42,6 @@ The overall plan for this review is here:
### `lalinference/src/LALInference.c` and `lalinference/src/LALInference.h` ### `lalinference/src/LALInference.c` and `lalinference/src/LALInference.h`
``` ```
import lal
import lalsimulation as ls
import lalinference as li
import numpy as np
import matplotlib.pyplot as plt
dQuadMonS = np.random.uniform(-200,200,10000) dQuadMonS = np.random.uniform(-200,200,10000)
dQuadMonA = np.random.uniform(-200,200,10000) dQuadMonA = np.random.uniform(-200,200,10000)
...@@ -58,10 +52,13 @@ for idx in range(10000): ...@@ -58,10 +52,13 @@ for idx in range(10000):
dQuadMon1.append(x[0]), dQuadMon2.append(x[1]) dQuadMon1.append(x[0]), dQuadMon2.append(x[1])
plt.figure() plt.figure()
plt.scatter(dQuadMonS, dQuadMonA, color='r', alpha=0.1) plt.scatter(dQuadMonS, dQuadMonA, color='r', alpha=0.1, label='S-A')
plt.scatter(dQuadMon1, dQuadMon2, color='k', alpha=0.05) plt.scatter(dQuadMon1, dQuadMon2, color='k', alpha=0.05, label='1-2')
plt.legend(loc='best')
plt.xlabel('$\delta \kappa _S$')
plt.ylabel('$\delta \kappa _A$')
``` ```
![download](uploads/be779d3e2272a0e6737d4233d7cca2e8/download.png)
| Code | Test | Status | | Code | Test | Status |
|------|------|--------| |------|------|--------|
... ...
......