Version 103 (modified by 9 years ago) ( diff ) | ,
---|
MadAnalysis 5 Public Analysis Database (PAD) for recasting LHC results
This page contains a collection of LHC analyses that have been implemented in the MadAnalysis 5 framework (in the expert mode) described in arXiv:1405.3982 and arXiv:1407.3278. For each analysis, a commented C++ code is available for download, provided together with information on the analysis and references to relevant publications. A careful validation of each implementation is also provided.
IMPORTANT NOTE: the currently available recast codes and the descriptions provided below are for MadAnalysis 5 version 1.1.12, which can be downloaded here. If you want to use these recast codes with the latest MadAnalysis 5 version 1.2.x, you have to install our MA5tune version of Delphes as detailed below. For updating the analysis codes to use them with the standard Delphes linked to MadAnalysis 5 version 1.2, see these slides. In this case it is however advisable to re-do the validation of the analysis code(s). Note also that the standard Delphes and delphesMA5tune still cannot be used simultaneously in v1.2. The update of the PAD to MA5v1.2 is in progress.
In order to use the current version of the PAD, after installation of MadAnalysis 5, you also need our modified version of Delphes. To install it, type
install delphesMA5tune
within MadAnalysis 5. If you have an older version of MadAnalysis 5, first update it to the latest one. Also, beware that the standard Delphes and delphesMA5tune cannot be used simultaneously!!
In order to use the code, you first need to create a working directory (that will be called PAD). You can also optionally install a couple of python tools that allows for limit and efficiency map extractions. However, in order to have those tools available in the PAD directory, they need to be installed prior to the creation of the working directory. You need to start MadAnalysis 5 as
./bin/ma5 -R
If you want to use our scripts for limit setting and efficiency maps (see below), next type
install RecastingTools
For creating a working directory that contains all the analyses that are publicly available, then type
install PAD
New analyses (within the PAD or separately) can be added by running the script newAnalyzer.py (located in Build/SampleAnalyzer), passing as an argument the name of the analysis of interest. For instance,
python newAnalyzer.py cms_sus_14_001
will create and modify the necessary files for adding the analysis named cms_sus_14_001. In particular, a pair of header and source C++ files cms_sus_14_001.cpp and cms_sus_14_001.h are now available in the subdirectory Build/SampleAnalyzer/User/Analyzer. You can now either implement the analysis yourself or replace the newly created files with those shared by somebody else (or downloaded from the list below in case you do not use the automatic PAD installation from above).
After execution of an analysis, exclusion under the CLs prescription can be computed with the Python code exclusion_CLs.py Note that it requires SciPy to be installed. The path to the working directory of interest has to be provided in the variable analysis_path in the beginning of the code. If you have done install RecastingTools, then a local copy of exclusion_CLs.py is available in every new working directory. The code is called as
./exclusion_CLs.py analysis_name mypoint.txt [run_number] [cross section in pb]
The exclusion results will be printed on the screen and in an output file located in the directory mypoint.txt/ of the output of the analysis. Details are given in arXiv:1407.3278.
In order to get the efficiency map associated with a given benchmark point, the getmaps.py script can be run
./getmaps.py mypoint.txt [cross section value]
where [cross section value] is the value of the cross section associated to the generated event sample under consideration.This creates one file for each analysis that has been executed, this file containing the efficiency associated with each of the signal regions of the relevant analysis. The efficiency maps come with the computed relative (statistical errors). In the case the script is run with a cross section value, the best expected region is indicated in the output file. (We stress that in order to have these scripts available, they must be installed before creating the working directory.) In the case the cross section value is negative, the best expected region derivation is omitted and only the efficiency map is computed.
We strongly encourage users to publish their re-implemented LHC analyses via Inspire. This way they not only become part of the public database, rendering them as useful as possible to the community, but they also become individually searchable and citable. Recommendations regarding the proper validation are given in arXiv:1407.3278. Note that for every analysis that is part of the PAD, a validation note is required.
For any information on the implementation of an analysis, on the database or on the expert mode of the program, please visit the 'Answers' section of our launchpad page.
NEW: here is a step-by-step introduction to installing and using the MA5 PAD
Available Analyses
!! please properly cite all the re-implementation codes you are using (see Inspire citation entry) !!
ATLAS analyses, 8 TeV
Analysis | Short Description | Implemented by | Code | Validation note | Status |
ATLAS-SUSY-2013-05 (published) | stop/sbottom search: 0 leptons + 2 b-jets | G. Chalons | Inspire | PDF (figures) | done |
ATLAS-SUSY-2013-11 (published) | EWK-inos, 2 leptons + MET | B. Dumont | Inspire | PDF (source) | done |
ATLAS-HIGG-2013-03 (published) | ZH->ll+invisible | B. Dumont | Inspire | PDF (source) | done |
ATLAS-EXOT-2014-06 (published) | mono-photons + MET | D. Barducci | Inspire | PDF MadGraph cards | done |
ATLAS-SUSY-2014-10 (published) | 2 leptons + jets + MET | B. Dumont | Inspire | PDF (source) | done |
ATLAS-SUSY-2013-21 (published) | 0 leptons + mono-jet/c-jets + MET | G. Chalons, D. Sengupta | Inspire | PDF (source) | done |
ATLAS-SUSY-2013-02 (published) | 0 leptons + 2-6 jets + MET | G. Chalons, D. Sengupta | Inspire | done |
Delphes card for ATLAS-SUSY-2013-05, ATLAS-SUSY-2013-21 and ATLAS-EXOT-2014-06
Delphes card for ATLAS-SUSY-2013-11, ATLAS-SUSY-2013-02 and ATLAS-HIGG-2013-03
Delphes card for ATLAS-SUSY-2014-10
CMS analyses, 8 TeV
Analysis | Short Description | Implemented by | Code | Validation note | Status |
CMS-SUS-13-011 (published) | stop search in the single lepton mode | B. Dumont, B. Fuks, C. Wymant | Inspire [1] | PDF (source) | done |
CMS-SUS-13-012 (published) | gluino/squark search in jet multiplicity and missing energy | S. Bein, D. Sengupta | Inspire | PDF (source) | done |
CMS-SUS-13-016 (PAS) | search for gluinos using OS dileptons and b-jets | D. Sengupta, S. Kulkarni | Inspire | PDF (source) | done |
CMS-SUS-14-001 | Searches for third-generation squarks in fully hadronic final states (monojet analysis) | S. Sharma, S. Pandey | Inspire | PDF | done |
Delphes card for these analyses
[1] This analysis requires MINUIT libraries. Therefore, the line
LIBFLAGS += -lMinuit
should be added to the Makefile of the Build/ directory before compilation.
Attachments (99)
- ma5_validation_ATLAS-SUS-13-05.pdf (251.8 KB ) - added by 10 years ago.
- ma5_validation_ATLAS-SUS-13-05.2.pdf (251.9 KB ) - added by 10 years ago.
-
delphesMA5tune_card_CMS_SUSY.tcl
(19.0 KB
) - added by 10 years ago.
Delphes-MA5tune detector card for the CMS SUSY analyses
-
ma5_validation_CMS-SUS-13-016.pdf
(123.9 KB
) - added by 10 years ago.
pdf
-
delphesMA5tune_card_ATLAS_dileptonSUSY.tcl
(18.6 KB
) - added by 10 years ago.
Delphes-MA5tune detector card for the ATLAS SUSY di-lepton analysis, ATLAS-SUSY-2013-11
-
ma5_validation_CMS-SUS-13-011.pdf
(266.0 KB
) - added by 10 years ago.
Validation note for MA5 implementation of CMS-SUS-13-011
-
ma5_validation_ATLAS-SUSY-13-11.tar.gz
(770.3 KB
) - added by 10 years ago.
Source of the validation note for the MA5 implementation of ATLAS-SUSY-2013-11
-
ma5_validation_CMS-SUS-13-011.tar.gz
(1.7 MB
) - added by 10 years ago.
Source of the validation note for the MA5 implementation of CMS-SUS-13-011
-
ma5_validation_ATLAS-SUSY-2013-11.pdf
(272.5 KB
) - added by 10 years ago.
Validation note for the MA5 implementation of ATLAS-SUSY-2013-11
-
ma5_validation_ATLAS-SUSY-2013-11.tar.gz
(770.3 KB
) - added by 10 years ago.
Source of the validation note for the MA5 implementation of ATLAS-SUSY-2013-11
-
cms_sus_13_016_note.tar.gz
(541.5 KB
) - added by 10 years ago.
"Source of the Validation Note for CMS_SUS_13_016"
- ma5_validation_ATLAS-SUSY-13-05.pdf (194.9 KB ) - added by 10 years ago.
-
delphesMA5tune_card_ATLAS_05.tcl
(20.7 KB
) - added by 10 years ago.
Delphes-MA5tune detector card for the ATLAS SUSY 13 05 analyses
-
ma5_validation_CMS-SUS-13-012.pdf
(696.0 KB
) - added by 10 years ago.
Validation note for MA5 implementation of CMS-SUS-13-012
-
cms_sus_13_012_note.zip
(990.0 KB
) - added by 10 years ago.
Source for the validation note of cms_sus_13_012
-
plots.tgz
(22.8 KB
) - added by 10 years ago.
PDF version of the plots in ma5_validation_ATLAS-SUSY-13-05
-
ma5_validation_ATLAS-SUSY-2013-11_v2.pdf
(295.3 KB
) - added by 10 years ago.
"Validation note for version 2 of the MA5 implementation of ATLAS-SUSY-2013-11"
-
ma5_validation_ATLAS-SUSY-2013-11_v2.tar.gz
(1.2 MB
) - added by 10 years ago.
Source of the validation note for version 2 of the MA5 implementation of ATLAS-SUSY-2013-11
-
cms_sus_13_012.info
(5.6 KB
) - added by 10 years ago.
cms-sus-13-012 info file
-
ma5_validation_ATLAS-HIGG-2013-03.pdf
(157.4 KB
) - added by 10 years ago.
Validation note for MA5 implementation of ATLAS-HIGG-2013-03
-
ma5_validation_ATLAS-HIGG-2013-03.tar.gz
(946.6 KB
) - added by 10 years ago.
Source of the validation note for the MA5 implementation of ATLAS-HIGG-2013-03
- delphesMA5tune_card_ATLAS.tcl (18.2 KB ) - added by 10 years ago.
- ma5_validation_ATLAS-EXOT-2014-06.pdf (321.5 KB ) - added by 10 years ago.
-
getmaps.py
(1.8 KB
) - added by 10 years ago.
Efficiency maps
-
cards.tgz
(10.7 KB
) - added by 10 years ago.
cards for the ATLAS monophoton analysis
-
MadAnalysis5_v1.2beta.tgz
(622.1 KB
) - added by 10 years ago.
MadAnalysis5 v1.2 beta
-
ma5_v1.1.12beta.tgz
(632.0 KB
) - added by 9 years ago.
MadAnalysis5 v1.1.12 beta
-
exclusion_CLs.py
(16.5 KB
) - added by 9 years ago.
Statistics module for testing exclusion
-
delphesMA5tune_card_ATLAS_2014_10.tcl
(18.6 KB
) - added by 9 years ago.
Delphes-MA5tune detector card for the ATLAS SUSY dilepton+jets+MET analysis, ATLAS-SUSY-2014-10
-
ma5_validation_ATLAS-SUSY-2014-10.tar.gz
(1.2 MB
) - added by 9 years ago.
Source of the validation note for the MA5 implementation of ATLAS-SUSY-2014-10
-
ma5_validation_ATLAS-SUSY-2014-10.pdf
(301.0 KB
) - added by 9 years ago.
Validation note for the MA5 implementation of ATLAS-SUSY-2014-10
-
atlas_1405_7875.pdf
(70.7 KB
) - added by 9 years ago.
Validation note for the recast of the ATLAS multijet analysis arXiv:1405.7875
-
ma5_validation_ATLAS-SUSY-2013-21.pdf
(231.5 KB
) - added by 9 years ago.
Validation note for MA5 implementation of ATLAS-SUSY-2013-21
-
ma5_validation_ATLAS-SUSY-2013-21.tar.gz
(49.5 KB
) - added by 9 years ago.
Source of the validation note for the MA5 implementation of ATLAS-SUSY-2013-21
-
ma5_atlas_1405_7875.pdf
(70.7 KB
) - added by 9 years ago.
The validation note for the ATLAS multijet analysis arXiv:1405.7875
- MA5-1.2.pdf (506.1 KB ) - added by 9 years ago.
-
ma5_validation_CMS-SUS-14-001-monojet.pdf
(439.9 KB
) - added by 9 years ago.
CMS-SUS-14-001 validation
-
CMS_B2G_12_012_cards.tar.gz
(9.1 KB
) - added by 9 years ago.
Cards for B2G-12-012 analysis
-
CMS_B2G_12_012_note.tar.gz
(358.2 KB
) - added by 9 years ago.
Source files of validation note for CMS-B2G-12-012
-
CMS_SS2L_v1.pdf
(330.5 KB
) - added by 9 years ago.
Validation note for MA5 implementation of CMS-B2G-12-012
-
cms_b2g_12_012.tcl
(17.8 KB
) - added by 9 years ago.
CMS detector card for CMS_B2G_12_012
-
ATLAS_EXOT_2014_06.zip
(4.8 KB
) - added by 9 years ago.
Code for ATLAS_EXOT_2014_06 v1.2/no MA5tune
- ma5_validation_CMS-SUS-14-001-toptag.pdf (421.1 KB ) - added by 9 years ago.
- delphesMA5tune_card_CMS_sus14004.tcl (20.0 KB ) - added by 9 years ago.
- GFV.pdf (248.9 KB ) - added by 9 years ago.
- monojet.pdf (91.9 KB ) - added by 9 years ago.
- monophoton.pdf (90.1 KB ) - added by 9 years ago.
- script.pythia (437 bytes ) - added by 9 years ago.
- mjcards.tgz (69.4 KB ) - added by 9 years ago.
- delphes_card_cms_b2g_14_004.tcl (17.7 KB ) - added by 9 years ago.
- ttmet.tgz (92.4 KB ) - added by 9 years ago.
- ttmet.pdf (261.5 KB ) - added by 9 years ago.
-
MA5PADreferences.bib
(7.9 KB
) - added by 8 years ago.
bibtex file with PAD references
-
MA5PADreferences.tex
(4.9 KB
) - added by 8 years ago.
LaTeX file with MA5 PAD references
- ma5_validation_ATLAS_1604_07773.pdf (186.2 KB ) - added by 8 years ago.
- delphes_card_ATLAS.tcl (17.4 KB ) - added by 8 years ago.
- delphes_card_ATLAS_1604_07773.tcl (17.4 KB ) - added by 8 years ago.
- multijet.pdf (206.4 KB ) - added by 7 years ago.
- delphes_card_ATLAS_CONF_2016_086.tcl (21.8 KB ) - added by 7 years ago.
- delphes_card_cms_exo_16_010.tcl (24.6 KB ) - added by 7 years ago.
- ma5_validation_CMS-SUS-16-052.pdf (325.5 KB ) - added by 7 years ago.
- delphes_card_cms_sus_16_052.tcl (25.1 KB ) - added by 7 years ago.
- validation_atlas_conf_2016_086.pdf (350.5 KB ) - added by 7 years ago.
- validation_atlas_exot_2016_25.pdf (582.4 KB ) - added by 7 years ago.
- validation_atlas_exot_2016_32.pdf (266.9 KB ) - added by 7 years ago.
- validation_cms_exo_16_012.pdf (823.9 KB ) - added by 7 years ago.
- validation_cms_exo_16_022.pdf (407.1 KB ) - added by 7 years ago.
- validation_cms_sus_17_001.pdf (685.5 KB ) - added by 7 years ago.
- validation_cms_exo_16_010.pdf (749.6 KB ) - added by 7 years ago.
- ma5_validation_cms_sus_16_039.pdf (325.6 KB ) - added by 7 years ago.
- validation_atlas_exot_2016_27.pdf (394.0 KB ) - added by 7 years ago.
- ma5_validation_cms_sus_16_033.pdf (962.2 KB ) - added by 6 years ago.
- validation_atlas_susy_16_07.pdf (271.7 KB ) - added by 6 years ago.
- pythia_sus_16_07.tgz (2.5 KB ) - added by 6 years ago.
- delphes_card_cms_top_17_009.tcl (28.7 KB ) - added by 5 years ago.
- atlas_conf_2014_040_validation.pdf (399.4 KB ) - added by 5 years ago.
- delphes_card_cms_exo_16_022.tcl (21.2 KB ) - added by 5 years ago.
- ma5_validation_atlas_susy_2018_06.pdf (673.6 KB ) - added by 4 years ago.
- validation_atlas_susy_2018_06.pdf (673.6 KB ) - added by 4 years ago.
- validation_cms_top_18_003.pdf (419.0 KB ) - added by 4 years ago.
- validation_atlas_susy_2019_08.pdf (605.5 KB ) - added by 4 years ago.
- validation_cms_exo_17_015.pdf (452.1 KB ) - added by 4 years ago.
- validation_atlas_susy_2018_32.pdf (457.9 KB ) - added by 4 years ago.
- validation_cms_hig_18_011.pdf (517.3 KB ) - added by 4 years ago.
- cms_sus_19_006_validation.pdf (1018.8 KB ) - added by 4 years ago.
- validation_atlas_exot_2018_030.pdf (415.4 KB ) - added by 4 years ago.
- validation_atlas_susy_2018_04.pdf (458.5 KB ) - added by 4 years ago.
- validation_atlas_susy_2018_31.pdf (554.7 KB ) - added by 4 years ago.
- validation_cms_exo_17_030.pdf (311.8 KB ) - added by 4 years ago.
-
wanted.jpeg
(1.3 MB
) - added by 4 years ago.
wanted
- ATLAS_CONF_2020_002_validation_note.pdf (786.6 KB ) - added by 3 years ago.
- validation_atlas_susy_2018_17.pdf (508.0 KB ) - added by 3 years ago.
- validation_cms_exo_19_002.pdf (2.1 MB ) - added by 3 years ago.
-
test_ttbar10.hepmc.gz
(1003.2 KB
) - added by 3 years ago.
10 ttbar HEPMC sample for test interface.
- validation_cms_exo_17_009.pdf (964.5 KB ) - added by 2 years ago.
- validation_atlas_exot_2018_06.pdf (923.6 KB ) - added by 19 months ago.
- validation_atlas_exot_2019_03.pdf (1021.8 KB ) - added by 15 months ago.
- bib_pad3.dat (39.3 KB ) - added by 9 months ago.
- validation_atlas_exot_2022_37.pdf (342.9 KB ) - added by 9 months ago.