SFS: sfs_atlas_susy_2016_07.ma5

File sfs_atlas_susy_2016_07.ma5, 3.8 KB (added by jackaraz, 4 years ago)
Line 
1#<><><><><><><><><><><><><><><><><><><><><><><><><>
2# <>
3# ATLAS-SUSY-2016-007 <>
4# Author: Jack Y. Araz, Benjamin Fuks <>
5# <>
6# Please cite arXiv:2006.09387,1712.02332 <>
7# <>
8# Based on MadAnalysis 5 v1.8 <>
9# <>
10#<><><><><><><><><><><><><><><><><><><><><><><><><>
11
12set main.fastsim.package = fastjet
13set main.fastsim.algorithm = antikt
14set main.fastsim.radius = 0.4
15set main.fastsim.bjet_id.matching_dr = 0.3
16set main.fastsim.bjet_id.exclusive = true
17set main.fastsim.exclusive_id = false
18set main.fastsim.ptmin = 20.0
19set main.fastsim.jetrecomode = jets
20
21# Jets
22
23define smearer j with PT sqrt(0.06^2 + pt^2*1.3e-3^2) [abseta <= 0.5 and pt > 0.1]
24define smearer j with PT sqrt(0.10^2 + pt^2*1.7e-3^2) [abseta > 0.5 and abseta <= 1.5 and pt > 0.1]
25define smearer j with PT sqrt(0.25^2 + pt^2*3.1e-3^2) [abseta > 1.5 and abseta <= 2.5 and pt > 0.1]
26
27define smearer j with E sqrt(E^2*0.0302^2 + E*0.5205^2 + 1.59^2) [abseta <= 1.7]
28define smearer j with E sqrt(E^2*0.05^2 + E*0.706^2) [abseta > 1.7 and abseta <= 3.2]
29define smearer j with E sqrt(E^2*0.0942^2 + E) [abseta > 3.2 and abseta <= 4.9]
30
31# Electron
32
33define smearer e with PT sqrt(0.06^2 + pt^2*1.3e-3^2) [abseta <= 0.5 and pt > 0.1]
34define smearer e with PT sqrt(0.1^2 + pt^2*1.7e-3^2) [abseta > 0.5 and abseta <= 1.5 and pt > 0.1]
35define smearer e with PT sqrt(0.25^2 + pt^2*3.1e-3^2) [abseta > 1.5 and abseta <= 2.5 and pt > 0.1]
36
37define smearer e with E sqrt(E^2*0.0017^2 + E*0.101^2) [abseta <= 3.2]
38define smearer e with E sqrt(E^2*0.035^2 + E*0.285^2) [abseta>3.2 and abseta<=4.9]
39
40define reco_efficiency e 0.0 [pt <= 10.0 or abseta > 2.5]
41define reco_efficiency e 0.95 [abseta <= 1.5 and pt > 10.0]
42define reco_efficiency e 0.85 [abseta > 1.5 and abseta <= 2.5 and pt > 10.0]
43
44# Muon
45
46define smearer mu with PT sqrt(0.02^2 + (pt^2)*2.0e-4^2) [abseta <= 0.5 and pt > 0.1]
47define smearer mu with PT sqrt(0.03^2 + (pt^2)*3.0e-4^2) [abseta > 0.5 and abseta <= 1.5 and pt > 0.1]
48define smearer mu with PT sqrt(0.06^2 + (pt^2)*6.0e-4^2) [abseta > 1.5 and abseta <= 2.5 and pt > 0.1]
49
50define reco_efficiency mu 0.0 [pt <= 10.0 or abseta > 2.7]
51define reco_efficiency mu 0.95 [abseta <= 1.5 and pt > 10.0]
52define reco_efficiency mu 0.85 [abseta > 1.5 and abseta <= 2.7 and pt > 10.0]
53
54# Photon
55
56define smearer a with E sqrt(E^2*0.0017^2 + E*0.101^2) [abseta <= 3.2]
57define smearer a with E sqrt(E^2*0.0350^2 + E*0.285^2) [abseta>3.2 and abseta<=4.9]
58
59define reco_efficiency a 0.0 [pt <= 10.0 or abseta > 2.5]
60define reco_efficiency a 0.95 [abseta <= 1.5 and pt > 10.0]
61define reco_efficiency a 0.85 [abseta > 1.5 and abseta <= 2.5 and pt > 10.0]
62
63# B-tagging
64
65define tagger j as b 0.002+7.3e-06*pt
66define tagger c as b 0.20*tanh(0.02*pt)*(1/(1+0.0034*pt))
67define tagger b as b 0.80*tanh(0.003*pt)*(30/(1+0.086*pt)) [abseta < 2.5]
68define tagger b as b 0.0 [abseta >= 2.5]
69
70
71# Tau
72
73define smearer ta with PT sqrt(0.06^2 + pt^2*1.3e-3^2) [abseta <= 0.5 and pt > 0.1]
74define smearer ta with PT sqrt(0.10^2 + pt^2*1.7e-3^2) [abseta > 0.5 and abseta <= 1.5 and pt > 0.1]
75define smearer ta with PT sqrt(0.25^2 + pt^2*3.1e-3^2) [abseta > 1.5 and abseta <= 2.5 and pt > 0.1]
76
77define smearer ta with E sqrt(E^2*0.0302^2 + E*0.5205^2 + 1.59^2) [abseta <= 1.7]
78define smearer ta with E sqrt(E^2*0.05^2 + E*0.706^2) [abseta > 1.7 and abseta <= 3.2]
79define smearer ta with E sqrt(E^2*0.0942^2 + E) [abseta > 3.2 and abseta <= 4.9]
80
81define tagger j as ta 0.01
82define tagger ta as ta 0.6 [abseta < 2.5]
83define tagger ta as ta 0.0 [abseta >= 2.5]
84
85define reco_efficiency ta 0.0 [pt <= 1.]
86define reco_efficiency ta 1.0 [pt > 1.]
87