Changes between Version 212 and Version 213 of PublicAnalysisDatabase


Ignore:
Timestamp:
Jun 9, 2020, 10:59:51 PM (5 years ago)
Author:
Benjamin Fuks
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PublicAnalysisDatabase

    v212 v213  
    11= !MadAnalysis 5 Public Analysis Database (PAD) for recasting LHC results =
    22
    3 This page contains a collection of LHC analyses that have been implemented in the !MadAnalysis 5 framework (in the expert mode) described in [http://arxiv.org/abs/1405.3982 arXiv:1405.3982] and [http://arxiv.org/abs/1407.3278 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.
     3This page contains a collection of LHC analyses that have been implemented in the !MadAnalysis 5 framework (in the expert mode) described in [http://arxiv.org/abs/1405.3982 arXiv:1405.3982] and [http://arxiv.org/abs/1407.3278 arXiv:1407.3278]. Extensive step-by-step lecture notes can be found in [http://arxiv.org/abs/1808.00480  arXiv:1808.00480]. 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.
    44
    55----
    66
    7 The current version of !MadAnalysis 5 is [https://launchpad.net/madanalysis5/trunk/v1.6/+download/ma5_v1.6.tgz version 1.6]. Some of the more recent analyses will be embedded in [https://launchpad.net/madanalysis5/trunk/v1.6/+download/ma5_v1.7.tmp.tgz version 1.7] whose a beta tarball can be downloaded from launchpad. These versions (and actually all versions since v1.3) contain a lot of improvements to make the recasting procedure easier. In order to use all analyses implement in the PAD, one needs to install both the delphes and delphesMA5tune detector simulators and the library of analyses shown below. To this aim, once !MadAnalysis 5 has been installed and started, it is sufficient to type:
     7The current (soon to be released) version of !MadAnalysis 5 is [https://launchpad.net/madanalysis5/trunk/v1.7/+download/ma5_v1.8.44.tgz version 1.8]. In order to use all analyses implement in the PAD, one needs to install both the Delphes and DelphesMA5tune detector simulators and the library of analyses shown below. To this aim, once !MadAnalysis 5 has been installed and started, it is sufficient to type:
    88{{{
    99 install delphesMA5tune
     
    1212 install PAD
    1313}}}
    14 and restart !MadAnalysis 5. Detailed information on the older way of running (with MadAnalysis5 version 1.2) can be found [https://madanalysis.irmp.ucl.ac.be/wiki/Ma5PadStepByStep here]
     14and restart !MadAnalysis 5. Detailed information on the older way of running (with MadAnalysis5 version 1.2) can be found [https://madanalysis.irmp.ucl.ac.be/wiki/Ma5PadStepByStep here].
    1515
    1616----
     
    2323    submit
    2424}}}
    25 The interpreter then asks to edit the recasting card where one can tick/untick the analyses that need to be recasted. One can also use the command
     25The interpreter then asks to edit the recasting card where one can tick/untick the analyses that need to be recast. One can also use the command
    2626{{{
    2727    set main.recast.card_path = <path-to-a-recasting-card>
     
    3131----
    3232
    33 Although we have two options for taking care of the detector simulation (delphes and delphesMA5tune), we recommend, when developing a new recasting code, to use the latest MA5 version linked to the standard Delphes3 (see [https://madanalysis.irmp.ucl.ac.be/attachment/wiki/PublicAnalysisDatabase/MA5-1.2.pdf these slides] for more information). New analyses (within the PAD or separately) can be added by running the script newAnalyzer.py (located in PAD/Build/SampleAnalyzer), passing as an argument the name of the analysis of interest. For instance,
     33Although we have two options for taking care of the detector simulation (delphes and delphesMA5tune), we recommend, when developing a new recasting code, to use the latest MA5 version linked to the standard Delphes3. The implementation of a new analysis is detailed in [http://arxiv.org/abs/1808.00480 arXiv:1808.00480]. In a nutshell, new analyses (within the PAD or separately) can be added by running the script newAnalyzer.py (located in PAD/Build/SampleAnalyzer), passing as an argument the name of the analysis of interest. For instance,
    3434{{{
    3535 python newAnalyzer.py cms_sus_14_001
    3636}}}
    37 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 PAD/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). For more detailed information, see [https://madanalysis.irmp.ucl.ac.be/wiki/WritingAnalyses here].
     37will 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 is now available in the sub-directory PAD/Build/SampleAnalyzer/User/Analyzer. One can now either implement the analysis on our own, or replace the newly created files with those shared by somebody else (or downloaded from the list below in case automatic PAD installation introducesd above is not used).
    3838
    39 ''We strongly encourage users to publish their re-implemented LHC analyses via [https://inspirehep.net/help/data-submission?ln=en Inspire].'' This way they become individually citable. (Send us an email with the Inspire link to integrate your analysis in the PAD.) Recommendations regarding the proper validation are given in  [http://arxiv.org/abs/1407.3278 arXiv:1407.3278]. Note that for every analysis that is part of the PAD, a detailed validation note is required.
     39''We strongly encourage users to publish their re-implemented LHC analyses via [https://inspirehep.net/help/data-submission?ln=en Inspire].'' This way they become individually citable. (Send us an email with the Inspire link to integrate your analysis in the PAD.) Recommendations regarding the proper validation are given in  [http://arxiv.org/abs/1407.3278 arXiv:1407.3278] and [http://arxiv.org/abs/1808.00480 arXiv:1808.00480]. Note that for every analysis that is part of the PAD, a detailed validation note is required.
    4040
    4141For 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 [https://launchpad.net/madanalysis5 launchpad page].