MA5SandBox: sfs_test.ma5

File sfs_test.ma5, 3.1 KB (added by Benjamin Fuks, 5 years ago)
Line 
1######################
2# #
3# ATLAS-SUSY-2016-07 #
4# #
5######################
6
7set main.fastsim.package = fastjet
8set main.fastsim.algorithm = antikt
9set main.fastsim.radius = 0.4
10set main.fastsim.bjet_id.matching_dr = 0.3
11set main.fastsim.jetrecomode = constituents
12
13# Jets
14
15define reco_efficiency j 0.0 [pt <= 0.1]
16define reco_efficiency j 0.7 [abseta <= 1.5 and pt > 0.1 and pt <= 1.0]
17define reco_efficiency j 0.95 [abseta <= 1.5 and pt > 1.0]
18define reco_efficiency j 0.6 [abseta > 1.5 and abseta <= 2.5 and pt > 0.1 and pt <= 1.0]
19define reco_efficiency j 0.85 [abseta > 1.5 and abseta <= 2.5 and pt > 1.0]
20define reco_efficiency j 0.0 [abseta > 2.5]
21
22define smearer j with PT sqrt(0.06^2 + pt^2*1.3e-3^2) [abseta <= 0.5 and pt > 0.1]
23define 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]
24define 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]
25
26define smearer j with E sqrt(E^2*0.0302^2 + E*0.5205^2 + 1.59^2) [abseta <= 1.7]
27define smearer j with E sqrt(E^2*0.0500^2 + E*0.706^2) [abseta > 1.7 and abseta <= 3.2]
28define smearer j with E sqrt(E^2*0.09420^2 + E*1.00^2) [abseta > 3.2 and abseta <= 4.9]
29
30# Electrons
31
32define reco_efficiency e 0.0 [pt <= 10.0]
33define reco_efficiency e 0.95 [abseta <= 1.5 and pt > 10.0]
34define reco_efficiency e 0.85 [abseta > 1.5 and abseta <= 2.5 and pt > 10.0]
35define reco_efficiency e 0.0 [abseta > 2.5]
36
37define smearer e with PT sqrt(0.06^2 + pt^2*1.3e-3^2) [abseta <= 0.5 and pt > 0.1]
38define smearer e with PT sqrt(0.10^2 + pt^2*1.7e-3^2) [abseta > 0.5 and abseta <= 1.5 and pt > 0.1]
39define 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]
40
41define smearer e with E sqrt(E^2*0.0017^2 + E*0.101^2) [abseta <= 3.2]
42define smearer e with E sqrt(E^2*0.0350^2 + E*0.285^2) [abseta > 3.2 and abseta <= 4.9]
43
44# photons
45
46define reco_efficiency a 0.0 [pt <= 10.0]
47define reco_efficiency a 0.95 [abseta <= 1.5 and pt > 10.0]
48define reco_efficiency a 0.85 [abseta > 1.5 and abseta <= 2.5 and pt > 10.0]
49define reco_efficiency a 0.0 [abseta > 2.5]
50
51define smearer a with E sqrt(E^2*0.0017^2 + E*0.101^2) [abseta <= 3.2]
52define smearer a with E sqrt(E^2*0.0350^2 + E*0.285^2) [abseta > 3.2 and abseta <= 4.9]
53
54# muons
55
56define reco_efficiency mu 0.0 [pt <= 10.0]
57define reco_efficiency mu 0.95 [abseta <= 1.5 and pt > 10.0]
58define reco_efficiency mu 0.85 [abseta > 1.5 and abseta <= 2.7 and pt > 10.0]
59define reco_efficiency mu 0.0 [abseta > 2.7]
60
61define smearer mu with PT sqrt(0.02^2 + pt^2*2.0e-4^2) [abseta <= 0.5 and pt > 0.1]
62define 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]
63define 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]
64
65# B tagging
66
67define tagger j as b 0.002+7.3e-06*pt
68define tagger c as b 0.20*tanh(0.02*pt)*(1/(1+0.0034*pt))
69define tagger b as b 0.80*tanh(0.003*pt)*(30/(1+0.086*pt)) [abseta <= 2.5]
70define tagger b as b 0.0 [abseta > 2.5]
71
72# Tau tagging
73
74define tagger j as ta 0.01
75define tagger ta as ta 0.6 [abseta <= 2.5]
76define tagger ta as ta 0.0 [abseta > 2.5]
77