Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-15 | fix x axis | tlatorre | |
2021-01-15 | fix y axis again | tlatorre | |
2021-01-15 | fix y axis | tlatorre | |
2021-01-14 | calculate total number of atmospheric events by summing flux_weights | tlatorre | |
2021-01-05 | add --fast argument to dm-search | tlatorre | |
2021-01-05 | add --fast | tlatorre | |
2021-01-04 | get rid of nhit_thresh | tlatorre | |
2021-01-03 | add --universe argument to dm-search | tlatorre | |
2021-01-03 | reduce memory usage by creating weights dict early | tlatorre | |
2021-01-03 | cache results from get_events() | tlatorre | |
2020-12-25 | don't exit if some runs don't have MC | tlatorre | |
2020-12-22 | move check earlier | tlatorre | |
2020-12-22 | fix typo from last commit | tlatorre | |
2020-12-22 | go back to checking rhdr instead of ev | tlatorre | |
2020-12-21 | fix another rhdr check | tlatorre | |
2020-12-21 | fix rhdr check | tlatorre | |
2020-12-21 | only concat files with at least 1 event | tlatorre | |
2020-12-21 | use correct bins when calculation threshold | tlatorre | |
2020-12-21 | update dm-search to only look for mediator masses up to 1 GeV | tlatorre | |
2020-12-21 | update bins for muon histograms | tlatorre | |
This commit updates the bins for the muon histograms to not go too far above 2 GeV. The reason is that at these energies most muons will exit the detetor and my energy reconstruction doesn't work too well. I also updated chi2 and dm-search to use the flux_weight when sampling from the MC. | |||
2020-12-16 | use a hash to merge weights with MC data | tlatorre | |
2020-12-16 | print out livetime from run_info.log in dm-search | tlatorre | |
2020-12-15 | add code to reweight the tau neutrino events | tlatorre | |
This commit updates the code to reweight the MC data from tau neutrinos since I stupidly simulated the muon neutrino flux instead of the tau neutrino flux. | |||
2020-12-09 | update discovery threshold again | tlatorre | |
2020-12-09 | ensure discovery threshold is at least 0 | tlatorre | |
2020-12-09 | speed up chi2 and dm-search | tlatorre | |
2020-12-09 | discard negative weights | tlatorre | |
2020-12-09 | fix bug introduced in previous commit | tlatorre | |
This commit fixes a bug I introduced earlier in chi2 and dm-search since we want to remove runs not in the MC for both the signal and atmospheric samples. | |||
2020-12-09 | don't delete mc data from runs not in data when running chi2 --coverage | tlatorre | |
2020-12-08 | speed up dm-search | tlatorre | |
2020-12-08 | use weighted MC when running dm-search --test | tlatorre | |
2020-12-08 | fix more typos | tlatorre | |
2020-12-08 | fix another typo | tlatorre | |
2020-12-08 | fix typo from last commit | tlatorre | |
2020-12-08 | update dm-search and chi2 to refit with GENIE systematics | tlatorre | |
2020-12-08 | don't sample DM events when running --test | tlatorre | |
2020-12-08 | update dm-search to fix bug | tlatorre | |
This commit updates dm-search to fix a bug where I was returning lists from get_limits() but then comparing the best fit and discovery lists as if they were numpy arrays. I also updated how I calculate the expected number of events based on the results from doing a toy MC. | |||
2020-11-30 | update code to work with python3 | tlatorre | |
This commit updates the python code to work with python 3 and with a newer version of matplotlib. - zip_longest -> izip_longest - fix tick marks for log plots - scipy.misc -> scipy.special | |||
2020-11-17 | small fixes | tlatorre | |
2020-11-16 | add --run-list argument to chi2 and dm-search | tlatorre | |
This commit updates the chi2 and dm-search scripts to add the ability to pass a run list on the comand line. | |||
2020-11-16 | fix latex error | tlatorre | |
2020-11-16 | fix bug by converting list to array | tlatorre | |
2020-11-16 | calculate livetime based on pulse gt and 10 MHz clock | tlatorre | |
This commit updates get_events() to calculate the livetime based on both the number of pulse gt events and the 10 MHz clock and to return it in a dictionary stored with the dataframe. I also update dm-search so that the results are now reported as a function of events/cm^3/s. Also updated radius cut to be the AV radius. | |||
2020-11-16 | fix integrate_mc_hist() by dividing by bin width | tlatorre | |
2020-11-16 | use nlopt to find xopt | tlatorre | |
This commit updates both the chi2 and dm-search scripts to run nlopt at the end of the MCMC to find the best fit point. The reason for this is that for the dm-search script, we rely on the best fit point being correct when doing the discovery threshold analysis. To really get the best fit point with the MCMC we would need to run a ridiculous number of steps, so it's better to run a fewer amount of steps to get close and then run the minimization from there. | |||
2020-11-16 | return np.inf if parameters are out of bounds | tlatorre | |
2020-11-16 | update lower bound for external muons and dm to 0 | tlatorre | |
2020-11-16 | DM_ENERGIES -> DM_MASSES | tlatorre | |
2020-11-16 | don't apply retrigger cut to MC | tlatorre | |
2020-11-16 | loop over MC filenames | tlatorre | |