Probability contains the file Survival_Probability.txt with column 0 containing Neutrino Energy in MeV and columns 1,2,3 containing Pee, Peu, Pet probabilities.



gg-Mz folders have npz files, which are numpy array files. All files have three vectors in them, called gg_grid, Mz_grid, chi2_grid. The vectors stored in the npz files can be looked up with --

data = np.load('example.npz')
print(data.files)

These vectors represent a meshgrid created using 

Mz_grid, gg_grid = np.meshgrid(Mz_mass, sqrt_gg)

where, sqrt_gg is log-spaced vector of \sqrt(g_\nu g_q) values between 1e-6 to 1e-4, Mz_mass is mediator mass values between 1 MeV and 50 MeV



Sigma_Beta_xsig folders contain the required systematic uncertainty on background values for future experiments to rule out LMAD. The npz files have two vectors in them, "mult" representing exposure in ton years, and "all_sigma_betas" representing the required sigma_beta value. Filenames have Bkg, Bkg08, Bkg05 representing current background, 20%lower background, and halved background, and A2, A1 representing sigma_alpha being 0.2 or 0.1



LMAD_vs_Muon only has npz files with vectors sqrt_gg, chi2_results2



EpsU_EpsD_plane contains files with data in the unequal couplings to up and down quarks plane. npz files have vectors with names u_grid, d_grid, and chi2_grid calculated over the meshgrid.