├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── README.md ├── SR1Like │ ├── README.md │ ├── _pkg.json │ ├── asymptotic_limit.C │ ├── data │ │ ├── SignalModel_SR1_1000GeV_FromRunSourceCombinedFit180420.root │ │ ├── SignalModel_SR1_100GeV_FromRunSourceCombinedFit180420.root │ │ ├── SignalModel_SR1_50GeV_FromRunSourceCombinedFit180420.root │ │ ├── SignalModel_SR1_8GeV_FromRunSourceCombinedFit180420.root │ │ ├── xephyr_Rn220_SR1_pax6.8.0_hax2.4.0_lax1.5.1_cs1LT200_fv1_cuts1_pruned.root │ │ └── xephyr_none_SR1_pax6.8.0_hax2.4.0_lax1.5.1_cs1LT200_fv1_cuts1_pruned.root │ └── src │ │ ├── likelihoodDef.cxx │ │ ├── likelihoodDef.json │ │ └── signalDef.h └── likelihood1D │ ├── README.md │ ├── _pkg.json │ ├── likelihoodShow.C │ ├── produceDataAndModels.C │ └── src │ ├── likelihoodDef.cxx │ └── likelihoodDef.json ├── info.json ├── loadXephyr.C ├── notebooks ├── README.md ├── Simple_limit_plotting_script.ipynb ├── ToyFitter.ipynb ├── ToyGenerator_example.ipynb ├── asymptotic_inference.ipynb └── data_examples │ ├── DMTemplatesReweighted_lax0.11.1_V12.root │ ├── ERBackgroundModel_SR1_From_Combined180104Fit.root │ ├── limits_apr_ER2_RG2_W2.root │ ├── post_fit_apr_ER2_RG2_W2_M50_light.root │ ├── wimp_0050gev_variations_lax_0.11.1.root │ └── xephyr_data_none_lowenergy_roi.root ├── pacman ├── CMakeLists.txt ├── build.sh ├── check.py └── installExample.sh └── src ├── AsymptoticExclusion.cxx ├── AsymptoticExclusion.h ├── ToyFitterExclusion.cxx ├── ToyFitterExclusion.h ├── ToyGenerator.cxx ├── ToyGenerator.h ├── XeLikelihoods.cxx ├── XeLikelihoods.h ├── XePdfObjects.cxx ├── XePdfObjects.h ├── XeStat.cxx ├── XeStat.h ├── XeUtils.cxx ├── XeUtils.h ├── XeVersion.cxx ├── XeVersion.h ├── dataHandler.cxx ├── dataHandler.h ├── likelihoodHelpers.cxx ├── likelihoodHelpers.h ├── nlohmann └── json.hpp ├── plotHelpers.cxx ├── plotHelpers.h └── todo /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/SR1Like/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/README.md -------------------------------------------------------------------------------- /examples/SR1Like/_pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/_pkg.json -------------------------------------------------------------------------------- /examples/SR1Like/asymptotic_limit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/asymptotic_limit.C -------------------------------------------------------------------------------- /examples/SR1Like/data/SignalModel_SR1_1000GeV_FromRunSourceCombinedFit180420.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/data/SignalModel_SR1_1000GeV_FromRunSourceCombinedFit180420.root -------------------------------------------------------------------------------- /examples/SR1Like/data/SignalModel_SR1_100GeV_FromRunSourceCombinedFit180420.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/data/SignalModel_SR1_100GeV_FromRunSourceCombinedFit180420.root -------------------------------------------------------------------------------- /examples/SR1Like/data/SignalModel_SR1_50GeV_FromRunSourceCombinedFit180420.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/data/SignalModel_SR1_50GeV_FromRunSourceCombinedFit180420.root -------------------------------------------------------------------------------- /examples/SR1Like/data/SignalModel_SR1_8GeV_FromRunSourceCombinedFit180420.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/data/SignalModel_SR1_8GeV_FromRunSourceCombinedFit180420.root -------------------------------------------------------------------------------- /examples/SR1Like/data/xephyr_Rn220_SR1_pax6.8.0_hax2.4.0_lax1.5.1_cs1LT200_fv1_cuts1_pruned.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/data/xephyr_Rn220_SR1_pax6.8.0_hax2.4.0_lax1.5.1_cs1LT200_fv1_cuts1_pruned.root -------------------------------------------------------------------------------- /examples/SR1Like/data/xephyr_none_SR1_pax6.8.0_hax2.4.0_lax1.5.1_cs1LT200_fv1_cuts1_pruned.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/data/xephyr_none_SR1_pax6.8.0_hax2.4.0_lax1.5.1_cs1LT200_fv1_cuts1_pruned.root -------------------------------------------------------------------------------- /examples/SR1Like/src/likelihoodDef.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/src/likelihoodDef.cxx -------------------------------------------------------------------------------- /examples/SR1Like/src/likelihoodDef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/src/likelihoodDef.json -------------------------------------------------------------------------------- /examples/SR1Like/src/signalDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/SR1Like/src/signalDef.h -------------------------------------------------------------------------------- /examples/likelihood1D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/likelihood1D/README.md -------------------------------------------------------------------------------- /examples/likelihood1D/_pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/likelihood1D/_pkg.json -------------------------------------------------------------------------------- /examples/likelihood1D/likelihoodShow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/likelihood1D/likelihoodShow.C -------------------------------------------------------------------------------- /examples/likelihood1D/produceDataAndModels.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/likelihood1D/produceDataAndModels.C -------------------------------------------------------------------------------- /examples/likelihood1D/src/likelihoodDef.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/likelihood1D/src/likelihoodDef.cxx -------------------------------------------------------------------------------- /examples/likelihood1D/src/likelihoodDef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/examples/likelihood1D/src/likelihoodDef.json -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/info.json -------------------------------------------------------------------------------- /loadXephyr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/loadXephyr.C -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/Simple_limit_plotting_script.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/Simple_limit_plotting_script.ipynb -------------------------------------------------------------------------------- /notebooks/ToyFitter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/ToyFitter.ipynb -------------------------------------------------------------------------------- /notebooks/ToyGenerator_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/ToyGenerator_example.ipynb -------------------------------------------------------------------------------- /notebooks/asymptotic_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/asymptotic_inference.ipynb -------------------------------------------------------------------------------- /notebooks/data_examples/DMTemplatesReweighted_lax0.11.1_V12.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/data_examples/DMTemplatesReweighted_lax0.11.1_V12.root -------------------------------------------------------------------------------- /notebooks/data_examples/ERBackgroundModel_SR1_From_Combined180104Fit.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/data_examples/ERBackgroundModel_SR1_From_Combined180104Fit.root -------------------------------------------------------------------------------- /notebooks/data_examples/limits_apr_ER2_RG2_W2.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/data_examples/limits_apr_ER2_RG2_W2.root -------------------------------------------------------------------------------- /notebooks/data_examples/post_fit_apr_ER2_RG2_W2_M50_light.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/data_examples/post_fit_apr_ER2_RG2_W2_M50_light.root -------------------------------------------------------------------------------- /notebooks/data_examples/wimp_0050gev_variations_lax_0.11.1.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/data_examples/wimp_0050gev_variations_lax_0.11.1.root -------------------------------------------------------------------------------- /notebooks/data_examples/xephyr_data_none_lowenergy_roi.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/notebooks/data_examples/xephyr_data_none_lowenergy_roi.root -------------------------------------------------------------------------------- /pacman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/pacman/CMakeLists.txt -------------------------------------------------------------------------------- /pacman/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/pacman/build.sh -------------------------------------------------------------------------------- /pacman/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/pacman/check.py -------------------------------------------------------------------------------- /pacman/installExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/pacman/installExample.sh -------------------------------------------------------------------------------- /src/AsymptoticExclusion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/AsymptoticExclusion.cxx -------------------------------------------------------------------------------- /src/AsymptoticExclusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/AsymptoticExclusion.h -------------------------------------------------------------------------------- /src/ToyFitterExclusion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/ToyFitterExclusion.cxx -------------------------------------------------------------------------------- /src/ToyFitterExclusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/ToyFitterExclusion.h -------------------------------------------------------------------------------- /src/ToyGenerator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/ToyGenerator.cxx -------------------------------------------------------------------------------- /src/ToyGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/ToyGenerator.h -------------------------------------------------------------------------------- /src/XeLikelihoods.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeLikelihoods.cxx -------------------------------------------------------------------------------- /src/XeLikelihoods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeLikelihoods.h -------------------------------------------------------------------------------- /src/XePdfObjects.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XePdfObjects.cxx -------------------------------------------------------------------------------- /src/XePdfObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XePdfObjects.h -------------------------------------------------------------------------------- /src/XeStat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeStat.cxx -------------------------------------------------------------------------------- /src/XeStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeStat.h -------------------------------------------------------------------------------- /src/XeUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeUtils.cxx -------------------------------------------------------------------------------- /src/XeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeUtils.h -------------------------------------------------------------------------------- /src/XeVersion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeVersion.cxx -------------------------------------------------------------------------------- /src/XeVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/XeVersion.h -------------------------------------------------------------------------------- /src/dataHandler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/dataHandler.cxx -------------------------------------------------------------------------------- /src/dataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/dataHandler.h -------------------------------------------------------------------------------- /src/likelihoodHelpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/likelihoodHelpers.cxx -------------------------------------------------------------------------------- /src/likelihoodHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/likelihoodHelpers.h -------------------------------------------------------------------------------- /src/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/nlohmann/json.hpp -------------------------------------------------------------------------------- /src/plotHelpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/plotHelpers.cxx -------------------------------------------------------------------------------- /src/plotHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/plotHelpers.h -------------------------------------------------------------------------------- /src/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XENON1T/Xephyr/HEAD/src/todo --------------------------------------------------------------------------------