https://github.com/temken/dirac_vs_majorana
Statistical discrimination of sub-GeV Majorana and Dirac dark matter at direct detection experiments.
https://github.com/temken/dirac_vs_majorana
Last synced: 3 months ago
JSON representation
Statistical discrimination of sub-GeV Majorana and Dirac dark matter at direct detection experiments.
- Host: GitHub
- URL: https://github.com/temken/dirac_vs_majorana
- Owner: temken
- License: mit
- Created: 2020-03-06T14:50:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-05T09:26:55.000Z (over 4 years ago)
- Last Synced: 2025-03-11T07:33:44.819Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 43.9 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.com/temken/Dirac_vs_Majorana)
[](https://opensource.org/licenses/MIT)
# Dirac vs Majorana dark matter
[](https://doi.org/10.5281/zenodo.3701262)
[](https://arxiv.org/abs/2003.04039)
Statistical discrimination of sub-GeV Majorana and Dirac dark matter at direct detection experiments.

## GENERAL NOTES
Direct detection experiments which look for sub-GeV dark matter (DM) particles often search for DM-induced electronic transitions inside a target. Assuming one of these experiments would succeed, the next question would be to study the properties of DM.
One question we could ask is if DM particles are their own anti-particles, a so-called Majorana fermion. This code determines the statistical significance with which a successful electron scattering experiment could reject the Majorana hypothesis (using the likelihood ratio test) in favour of the hypothesis of Dirac DM. We assume that the DM interacts with the photon via higher-order electromagnetic moments.
> :warning: **Warning**: In order for this code to produce results, the */data/* folder needs to contain the tabulated atomic response functions, which can be computed with the [DarkARC tool](https://github.com/temken/DarkARC). Without these tables, it is not possible to compute ionization spectra and predictions for signal event rates.
## CONTENT
- */bin/*: Contains the executable.
- */build/*: Will contain the object files after compilation.
- */data/*: The folder for the tabulated atomic response functions.
- */include/*: All the header files can be found here.
- */results/*: Resulting tables and files are saved to this folder.
- */src/*: Contains the source code.
## Installation:
The code can be compiled using the makefile. It might be necessary to adjust the compiler lines and the path to the libraries:
```
#Compiler and compiler flags
CXX := g++
CXXFLAGS := -Wall -std=c++11
LIB :=
INC := -I include
(...)
```
The code is compiled by running
```
make
```
from the root directory in the terminal to compile DiracVsMajorana.
Running
```
make clean
```
deletes all object files and executables.
## CITING THIS CODE
If you decide to use this code, please cite the latest archived version,
> [[DOI:10.5281/zenodo.3701262]](https://doi.org/10.5281/zenodo.3701262)
as well as the original publications,
>Catena, R., Emken, T. , Ravanis J., **Rejecting the Majorana nature of dark matter with electron scattering experiments**, [[arXiv:2003.04039]](https://arxiv.org/abs/2003.04039).
## VERSIONS
- **v1.0** (06/03/2020): Version released with v1 of the preprint [[arXiv:2003.04039v1]](https://arxiv.org/abs/2003.04039v1).
## AUTHORS & CONTACT
The author of this code is Timon Emken.
For questions, bug reports or other suggestions please contact [emken@chalmers.se](mailto:emken@chalmers.se).
## LICENCE
This project is licensed under the MIT License - see the LICENSE file.