In [1]:
# Load in the module that does the heavy lifting
import CalcDiscrimination as CD
In [2]:
# Pick some parameter values - see the paper for definitions
ensemble = "A"
mDM = 50.0 #DM mass
f = -0.995 #Interference parameter
r_np = 0.75 #Ratio of neutron to proton couplings
In [3]:
# Calculate the discrimination significances for 10 samps
# This will probably take about a minute or so depending on the parameters...
#CD.CalcDiscrim("A", mDM, f, r_np)
CD.CalcDiscrim(ensemble, mDM, f, r_np)
In [ ]: