aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2021-01-15 09:12:00 -0600
committertlatorre <tlatorre@uchicago.edu>2021-01-15 09:12:00 -0600
commitd668b842b65113e3260c3f1db2a7c09aaa2cafef (patch)
tree913ab9eaa7df848d4caed8e3d33e1850becfa8e9
parentcc2460119d160ac22eaf94e0742089fdeae99dfc (diff)
downloadsddm-d668b842b65113e3260c3f1db2a7c09aaa2cafef.tar.gz
sddm-d668b842b65113e3260c3f1db2a7c09aaa2cafef.tar.bz2
sddm-d668b842b65113e3260c3f1db2a7c09aaa2cafef.zip
fix x axis
-rwxr-xr-xutils/dm-search4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/dm-search b/utils/dm-search
index 94051d8..bcaa6b1 100755
--- a/utils/dm-search
+++ b/utils/dm-search
@@ -857,7 +857,7 @@ if __name__ == '__main__':
plt.plot(DM_MASSES[dm_particle_id],np.array(limits[dm_particle_id])*100**3*3600*24*365/fiducial_volume/livetime,color=color,label='$' + ''.join([particle_id[int(''.join(x))] for x in grouper(str(dm_particle_id),2)]) + '$')
plt.gca().set_xscale("log")
despine(fig,trim=True)
- plt.xlabel("Energy (MeV)")
+ plt.xlabel("Mass (MeV)")
plt.ylabel("Event Rate (events/$\mathrm{m}^3$/year)")
plt.legend()
plt.tight_layout()
@@ -874,7 +874,7 @@ if __name__ == '__main__':
plt.plot(DM_MASSES[dm_particle_id],discovery_array[dm_particle_id],color=color,ls='--')
plt.gca().set_xscale("log")
despine(fig,trim=True)
- plt.xlabel("Energy (MeV)")
+ plt.xlabel("Mass (MeV)")
plt.ylabel("Number of Events")
plt.legend()
plt.tight_layout()