Version 3 (modified by 5 years ago) ( diff ) | ,
---|
Simplified - Fast Simulation (SFS) of detector response
This page contains a brief introduction about the usage of SFS machinery, for details, please see [CITE]. SFS machinery allows the user to simulate detector response within MadAnalysis 5 framework using only FastJet libraries. Although we provide default ATLAS and CMS cards which are validated against corresponding !Delphes cards for four different physics process, this introduction will provide all information that is needed to use SFS machinery for any homebrew detector simulation.
- Prerequisites: only FastJet
$> ./bin/ma5 -R ma5> install fastjet
SFS contains three submodules, namely reco_efficiency
, smearer
and tagger
. These submodules set a probability distribution to reconstruct a given object, smear gave objects four-momentum using normalized Gaussian function and sets identification efficiencies respectively. The goal is to create a CPU efficient, user-friendly, easy-to-use and inclusive environment. Thus given transfer functions are translated into C++ functions to act on reconstructed final state objects such as jets, hadronic taus, electrons, muons and photons. It is also possible to manipulate jet constituents for substructure analyses which are described below.
Reconstruction Efficiencies
This submodule can be used on jets (j
, 21
), electrons (e
,11
), muons (mu
,13
), hadronic taus (ta
,15
) or photons (a
,22
). It simply takes three input;
ma5> define reco_efficiency <obj> <func> [<domain>]
where <obj>
represents the desired object to be reconstructed, <func>
is the transfer function which can depend on any observable like PT
, E
, ETA
,ABSETA
,PHI
etc. <func>
can also include any functional forms like trigonometric or hyperbolic functions. <dom>
represents the domain where this function lives. It creates a piecewise function to construct probability distribution for the given object. This piece of input will generate a probability distribution for the desired object to decide if its going to be used in the analysis or not.
Example:
ma5> define reco_efficiency e 0.0 [pt <= 10.0 or abseta > 2.5] ma5> define reco_efficiency e 0.7 [pt > 10.0 and abseta <= 1.5] ma5> define reco_efficiency e 0.55 [pt > 10.0 and abseta > 1.5 and abseta <= 2.5]
Here we exemplify an electron reconstruction efficiency where an electron object will not be reconstructed if it has less than 10 GeV transverse momentum or its pseudorapidity is above 2.5. Additionally, it will be reconstructed with 70% probability if it's within |\eta| < 1.5 and pT >= 10 GeV and with 55% probability if its between 1.5 < |\eta| <= 2.5. Domain inputs has to be separated with and
or or
keywords to be effective.
Object Smearing
Particle Identification
SFS in Expert Mode
LHC Recasting with SFS
Attachments (30)
-
initialize.txt
(15.7 KB
) - added by 5 years ago.
Hadron and invisible particle initiation for analysis
- sfs_atlas_susy_2016_07.cpp (36.4 KB ) - added by 5 years ago.
- sfs_atlas_susy_2016_07.h (642 bytes ) - added by 5 years ago.
- sfs_cms_sus_16_048.cpp (28.3 KB ) - added by 5 years ago.
- sfs_cms_sus_16_048.h (780 bytes ) - added by 5 years ago.
- sfs_cms_sus_16_048.info (2.7 KB ) - added by 5 years ago.
- sfs_atlas_susy_2016_07.info (3.5 KB ) - added by 5 years ago.
- bib_padsfs.dat (4.0 KB ) - added by 5 years ago.
- ATLAS_default.ma5 (5.3 KB ) - added by 5 years ago.
- CMS_default.ma5 (5.2 KB ) - added by 5 years ago.
- sfs_cms_sus_16_048.ma5 (8.9 KB ) - added by 5 years ago.
- sfs_atlas_susy_2016_07.ma5 (3.8 KB ) - added by 5 years ago.
- sfs_atlas_conf_2019_040.info (2.0 KB ) - added by 5 years ago.
- sfs_atlas_conf_2019_040.h (649 bytes ) - added by 5 years ago.
- sfs_atlas_conf_2019_040.cpp (32.3 KB ) - added by 5 years ago.
- atlas_susy_2018_31.info (3.1 KB ) - added by 4 years ago.
- atlas_susy_2018_31.cpp (35.4 KB ) - added by 4 years ago.
- atlas_susy_2018_31.h (623 bytes ) - added by 4 years ago.
- sfs_atlas_susy_2018_031.ma5 (5.7 KB ) - added by 4 years ago.
- atlas_susy_2018_31_SRC.json (1.4 MB ) - added by 4 years ago.
- atlas_susy_2018_31_SRB.json (582.1 KB ) - added by 4 years ago.
- atlas_susy_2018_31_SRA.json (861.9 KB ) - added by 4 years ago.
- padsfs.dat (719 bytes ) - added by 4 years ago.
-
json_padsfs.dat
(109 bytes
) - added by 4 years ago.
JSON files for pyhf
- sfs_cms_exo_19_010.ma5 (816 bytes ) - added by 3 years ago.
- cms_exo_19_010.cpp (45.4 KB ) - added by 3 years ago.
- cms_exo_19_010.h (4.4 KB ) - added by 3 years ago.
- cms_exo_19_010.info (5.2 KB ) - added by 3 years ago.
- json_padsfs3.dat (199 bytes ) - added by 3 years ago.
- padsfs3.dat (2.3 KB ) - added by 7 months ago.