[d7d2da3] | 1 | #######################################
|
---|
| 2 | # Order of execution of various modules
|
---|
| 3 | #######################################
|
---|
| 4 |
|
---|
| 5 | set ExecutionPath {
|
---|
| 6 | ParticlePropagator
|
---|
| 7 |
|
---|
| 8 | ChargedHadronTrackingEfficiency
|
---|
| 9 | ElectronTrackingEfficiency
|
---|
| 10 | MuonTrackingEfficiency
|
---|
| 11 |
|
---|
| 12 | ChargedHadronMomentumSmearing
|
---|
[934d037] | 13 | ElectronMomentumSmearing
|
---|
[d7d2da3] | 14 | MuonMomentumSmearing
|
---|
| 15 |
|
---|
| 16 | TrackMerger
|
---|
[0593ac3] | 17 |
|
---|
| 18 | ECal
|
---|
| 19 | HCal
|
---|
| 20 |
|
---|
[a39b82e] | 21 | Calorimeter
|
---|
[d7d2da3] | 22 | EFlowMerger
|
---|
[93b4a8c] | 23 | EFlowFilter
|
---|
| 24 |
|
---|
[d7d2da3] | 25 | PhotonEfficiency
|
---|
| 26 | PhotonIsolation
|
---|
| 27 |
|
---|
[934d037] | 28 | ElectronFilter
|
---|
[d7d2da3] | 29 | ElectronEfficiency
|
---|
| 30 | ElectronIsolation
|
---|
| 31 |
|
---|
| 32 | MuonEfficiency
|
---|
| 33 | MuonIsolation
|
---|
| 34 |
|
---|
| 35 | MissingET
|
---|
| 36 |
|
---|
[be2222c] | 37 | NeutrinoFilter
|
---|
[d7d2da3] | 38 | GenJetFinder
|
---|
[59d6164] | 39 | GenMissingET
|
---|
| 40 |
|
---|
[d7d2da3] | 41 | FastJetFinder
|
---|
| 42 |
|
---|
[8839353] | 43 | JetEnergyScale
|
---|
[d7d2da3] | 44 |
|
---|
[6153fb0] | 45 | JetFlavorAssociation
|
---|
| 46 |
|
---|
[d7d2da3] | 47 | BTagging
|
---|
| 48 | TauTagging
|
---|
| 49 |
|
---|
| 50 | UniqueObjectFinder
|
---|
| 51 |
|
---|
| 52 | ScalarHT
|
---|
| 53 |
|
---|
| 54 | TreeWriter
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | #################################
|
---|
| 58 | # Propagate particles in cylinder
|
---|
| 59 | #################################
|
---|
| 60 |
|
---|
| 61 | module ParticlePropagator ParticlePropagator {
|
---|
| 62 | set InputArray Delphes/stableParticles
|
---|
| 63 |
|
---|
| 64 | set OutputArray stableParticles
|
---|
| 65 | set ChargedHadronOutputArray chargedHadrons
|
---|
| 66 | set ElectronOutputArray electrons
|
---|
| 67 | set MuonOutputArray muons
|
---|
| 68 |
|
---|
| 69 | # radius of the magnetic field coverage, in m
|
---|
| 70 | set Radius 1.29
|
---|
| 71 | # half-length of the magnetic field coverage, in m
|
---|
| 72 | set HalfLength 3.00
|
---|
| 73 |
|
---|
| 74 | # magnetic field
|
---|
| 75 | set Bz 3.8
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | ####################################
|
---|
| 79 | # Charged hadron tracking efficiency
|
---|
| 80 | ####################################
|
---|
| 81 |
|
---|
| 82 | module Efficiency ChargedHadronTrackingEfficiency {
|
---|
| 83 | set InputArray ParticlePropagator/chargedHadrons
|
---|
| 84 | set OutputArray chargedHadrons
|
---|
| 85 |
|
---|
| 86 | # add EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 87 |
|
---|
| 88 | # tracking efficiency formula for charged hadrons
|
---|
[a2983ec] | 89 | set EfficiencyFormula { (pt <= 0.1) * (0.00) +
|
---|
| 90 | (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.70) +
|
---|
| 91 | (abs(eta) <= 1.5) * (pt > 1.0) * (0.95) +
|
---|
| 92 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.60) +
|
---|
| 93 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0) * (0.85) +
|
---|
[d7d2da3] | 94 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | ##############################
|
---|
| 98 | # Electron tracking efficiency
|
---|
| 99 | ##############################
|
---|
| 100 |
|
---|
| 101 | module Efficiency ElectronTrackingEfficiency {
|
---|
| 102 | set InputArray ParticlePropagator/electrons
|
---|
| 103 | set OutputArray electrons
|
---|
| 104 |
|
---|
| 105 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 106 |
|
---|
| 107 | # tracking efficiency formula for electrons
|
---|
[a2983ec] | 108 | set EfficiencyFormula { (pt <= 0.1) * (0.00) +
|
---|
| 109 | (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.73) +
|
---|
| 110 | (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e2) * (0.95) +
|
---|
| 111 | (abs(eta) <= 1.5) * (pt > 1.0e2) * (0.99) +
|
---|
| 112 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.50) +
|
---|
| 113 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e2) * (0.83) +
|
---|
| 114 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e2) * (0.90) +
|
---|
[d7d2da3] | 115 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | ##########################
|
---|
| 119 | # Muon tracking efficiency
|
---|
| 120 | ##########################
|
---|
| 121 |
|
---|
| 122 | module Efficiency MuonTrackingEfficiency {
|
---|
| 123 | set InputArray ParticlePropagator/muons
|
---|
| 124 | set OutputArray muons
|
---|
| 125 |
|
---|
| 126 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 127 |
|
---|
| 128 | # tracking efficiency formula for muons
|
---|
[a2983ec] | 129 | set EfficiencyFormula { (pt <= 0.1) * (0.00) +
|
---|
| 130 | (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.75) +
|
---|
[bd6ced5] | 131 | (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e3) * (0.99) +
|
---|
| 132 | (abs(eta) <= 1.5) * (pt > 1.0e3 ) * (0.99 * exp(0.5 - pt*5.0e-4)) +
|
---|
| 133 |
|
---|
[a2983ec] | 134 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.70) +
|
---|
[bd6ced5] | 135 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e3) * (0.98) +
|
---|
| 136 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e3) * (0.98 * exp(0.5 - pt*5.0e-4)) +
|
---|
[d7d2da3] | 137 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | ########################################
|
---|
| 141 | # Momentum resolution for charged tracks
|
---|
| 142 | ########################################
|
---|
| 143 |
|
---|
| 144 | module MomentumSmearing ChargedHadronMomentumSmearing {
|
---|
| 145 | set InputArray ChargedHadronTrackingEfficiency/chargedHadrons
|
---|
| 146 | set OutputArray chargedHadrons
|
---|
| 147 |
|
---|
| 148 | # set ResolutionFormula {resolution formula as a function of eta and pt}
|
---|
| 149 |
|
---|
| 150 | # resolution formula for charged hadrons
|
---|
[934d037] | 151 | # based on arXiv:1405.6569
|
---|
[da12534] | 152 | set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.06^2 + pt^2*1.3e-3^2) +
|
---|
| 153 | (abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.10^2 + pt^2*1.7e-3^2) +
|
---|
| 154 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.25^2 + pt^2*3.1e-3^2)}
|
---|
[d7d2da3] | 155 | }
|
---|
| 156 |
|
---|
[934d037] | 157 | ###################################
|
---|
| 158 | # Momentum resolution for electrons
|
---|
| 159 | ###################################
|
---|
[d7d2da3] | 160 |
|
---|
[934d037] | 161 | module MomentumSmearing ElectronMomentumSmearing {
|
---|
[d7d2da3] | 162 | set InputArray ElectronTrackingEfficiency/electrons
|
---|
| 163 | set OutputArray electrons
|
---|
| 164 |
|
---|
| 165 | # set ResolutionFormula {resolution formula as a function of eta and energy}
|
---|
| 166 |
|
---|
[8839353] | 167 | # resolution formula for electrons
|
---|
[934d037] | 168 | # based on arXiv:1405.6569
|
---|
[df5084b] | 169 | set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.03^2 + pt^2*1.3e-3^2) +
|
---|
| 170 | (abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.05^2 + pt^2*1.7e-3^2) +
|
---|
| 171 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.15^2 + pt^2*3.1e-3^2)}
|
---|
[d7d2da3] | 172 | }
|
---|
| 173 |
|
---|
| 174 | ###############################
|
---|
| 175 | # Momentum resolution for muons
|
---|
| 176 | ###############################
|
---|
| 177 |
|
---|
| 178 | module MomentumSmearing MuonMomentumSmearing {
|
---|
| 179 | set InputArray MuonTrackingEfficiency/muons
|
---|
| 180 | set OutputArray muons
|
---|
| 181 |
|
---|
| 182 | # set ResolutionFormula {resolution formula as a function of eta and pt}
|
---|
| 183 |
|
---|
| 184 | # resolution formula for muons
|
---|
[df5084b] | 185 | set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.01^2 + pt^2*1.0e-4^2) +
|
---|
| 186 | (abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.015^2 + pt^2*1.5e-4^2) +
|
---|
| 187 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.025^2 + pt^2*3.5e-4^2)}
|
---|
[d7d2da3] | 188 | }
|
---|
| 189 |
|
---|
| 190 | ##############
|
---|
| 191 | # Track merger
|
---|
| 192 | ##############
|
---|
| 193 |
|
---|
| 194 | module Merger TrackMerger {
|
---|
| 195 | # add InputArray InputArray
|
---|
| 196 | add InputArray ChargedHadronMomentumSmearing/chargedHadrons
|
---|
[934d037] | 197 | add InputArray ElectronMomentumSmearing/electrons
|
---|
[a0ff736] | 198 | add InputArray MuonMomentumSmearing/muons
|
---|
[d7d2da3] | 199 | set OutputArray tracks
|
---|
| 200 | }
|
---|
| 201 |
|
---|
[0593ac3] | 202 |
|
---|
| 203 |
|
---|
[d7d2da3] | 204 | #############
|
---|
[0593ac3] | 205 | # ECAL
|
---|
[d7d2da3] | 206 | #############
|
---|
| 207 |
|
---|
[0593ac3] | 208 | module SimpleCalorimeter ECal {
|
---|
[d7d2da3] | 209 | set ParticleInputArray ParticlePropagator/stableParticles
|
---|
| 210 | set TrackInputArray TrackMerger/tracks
|
---|
| 211 |
|
---|
[0593ac3] | 212 | set TowerOutputArray ecalTowers
|
---|
| 213 | set EFlowTrackOutputArray eflowTracks
|
---|
| 214 | set EFlowTowerOutputArray eflowPhotons
|
---|
| 215 |
|
---|
| 216 | set IsEcal true
|
---|
| 217 |
|
---|
| 218 | set EnergyMin 0.5
|
---|
| 219 | set EnergySignificanceMin 2.0
|
---|
| 220 |
|
---|
| 221 | set SmearTowerCenter true
|
---|
| 222 |
|
---|
| 223 | set pi [expr {acos(-1)}]
|
---|
| 224 |
|
---|
| 225 | # lists of the edges of each tower in eta and phi
|
---|
| 226 | # each list starts with the lower edge of the first tower
|
---|
| 227 | # the list ends with the higher edged of the last tower
|
---|
| 228 |
|
---|
| 229 | # assume 0.02 x 0.02 resolution in eta,phi in the barrel |eta| < 1.5
|
---|
| 230 |
|
---|
| 231 | set PhiBins {}
|
---|
| 232 | for {set i -180} {$i <= 180} {incr i} {
|
---|
| 233 | add PhiBins [expr {$i * $pi/180.0}]
|
---|
| 234 | }
|
---|
| 235 |
|
---|
| 236 | # 0.02 unit in eta up to eta = 1.5 (barrel)
|
---|
| 237 | for {set i -85} {$i <= 86} {incr i} {
|
---|
| 238 | set eta [expr {$i * 0.0174}]
|
---|
| 239 | add EtaPhiBins $eta $PhiBins
|
---|
| 240 | }
|
---|
| 241 |
|
---|
| 242 | # assume 0.02 x 0.02 resolution in eta,phi in the endcaps 1.5 < |eta| < 3.0 (HGCAL- ECAL)
|
---|
| 243 |
|
---|
| 244 | set PhiBins {}
|
---|
| 245 | for {set i -180} {$i <= 180} {incr i} {
|
---|
| 246 | add PhiBins [expr {$i * $pi/180.0}]
|
---|
| 247 | }
|
---|
| 248 |
|
---|
| 249 | # 0.02 unit in eta up to eta = 3
|
---|
| 250 | for {set i 1} {$i <= 84} {incr i} {
|
---|
| 251 | set eta [expr { -2.958 + $i * 0.0174}]
|
---|
| 252 | add EtaPhiBins $eta $PhiBins
|
---|
| 253 | }
|
---|
| 254 |
|
---|
| 255 | for {set i 1} {$i <= 84} {incr i} {
|
---|
| 256 | set eta [expr { 1.4964 + $i * 0.0174}]
|
---|
| 257 | add EtaPhiBins $eta $PhiBins
|
---|
| 258 | }
|
---|
| 259 |
|
---|
| 260 | # take present CMS granularity for HF
|
---|
| 261 |
|
---|
| 262 | # 0.175 x (0.175 - 0.35) resolution in eta,phi in the HF 3.0 < |eta| < 5.0
|
---|
| 263 | set PhiBins {}
|
---|
| 264 | for {set i -18} {$i <= 18} {incr i} {
|
---|
| 265 | add PhiBins [expr {$i * $pi/18.0}]
|
---|
| 266 | }
|
---|
| 267 |
|
---|
| 268 | foreach eta {-5 -4.7 -4.525 -4.35 -4.175 -4 -3.825 -3.65 -3.475 -3.3 -3.125 -2.958 3.125 3.3 3.475 3.65 3.825 4 4.175 4.35 4.525 4.7 5} {
|
---|
| 269 | add EtaPhiBins $eta $PhiBins
|
---|
| 270 | }
|
---|
| 271 |
|
---|
| 272 |
|
---|
| 273 | add EnergyFraction {0} {0.0}
|
---|
| 274 | # energy fractions for e, gamma and pi0
|
---|
| 275 | add EnergyFraction {11} {1.0}
|
---|
| 276 | add EnergyFraction {22} {1.0}
|
---|
| 277 | add EnergyFraction {111} {1.0}
|
---|
| 278 | # energy fractions for muon, neutrinos and neutralinos
|
---|
| 279 | add EnergyFraction {12} {0.0}
|
---|
| 280 | add EnergyFraction {13} {0.0}
|
---|
| 281 | add EnergyFraction {14} {0.0}
|
---|
| 282 | add EnergyFraction {16} {0.0}
|
---|
| 283 | add EnergyFraction {1000022} {0.0}
|
---|
| 284 | add EnergyFraction {1000023} {0.0}
|
---|
| 285 | add EnergyFraction {1000025} {0.0}
|
---|
| 286 | add EnergyFraction {1000035} {0.0}
|
---|
| 287 | add EnergyFraction {1000045} {0.0}
|
---|
| 288 | # energy fractions for K0short and Lambda
|
---|
| 289 | add EnergyFraction {310} {0.3}
|
---|
| 290 | add EnergyFraction {3122} {0.3}
|
---|
| 291 |
|
---|
| 292 | # set ResolutionFormula {resolution formula as a function of eta and energy}
|
---|
| 293 |
|
---|
| 294 | # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016 and 1502.02701
|
---|
| 295 |
|
---|
| 296 | # set ECalResolutionFormula {resolution formula as a function of eta and energy}
|
---|
| 297 | # Eta shape from arXiv:1306.2016, Energy shape from arXiv:1502.02701
|
---|
| 298 | set ResolutionFormula { (abs(eta) <= 1.5) * (1+0.64*eta^2) * sqrt(energy^2*0.008^2 + energy*0.11^2 + 0.40^2) +
|
---|
| 299 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (2.16 + 5.6*(abs(eta)-2)^2) * sqrt(energy^2*0.008^2 + energy*0.11^2 + 0.40^2) +
|
---|
| 300 | (abs(eta) > 2.5 && abs(eta) <= 5.0) * sqrt(energy^2*0.107^2 + energy*2.08^2)}
|
---|
| 301 |
|
---|
| 302 | }
|
---|
| 303 |
|
---|
| 304 |
|
---|
| 305 | #############
|
---|
| 306 | # HCAL
|
---|
| 307 | #############
|
---|
[d7d2da3] | 308 |
|
---|
[0593ac3] | 309 | module SimpleCalorimeter HCal {
|
---|
| 310 | set ParticleInputArray ParticlePropagator/stableParticles
|
---|
| 311 | set TrackInputArray ECal/eflowTracks
|
---|
| 312 |
|
---|
| 313 | set TowerOutputArray hcalTowers
|
---|
[a2983ec] | 314 | set EFlowTrackOutputArray eflowTracks
|
---|
[0593ac3] | 315 | set EFlowTowerOutputArray eflowNeutralHadrons
|
---|
[a2983ec] | 316 |
|
---|
[0593ac3] | 317 | set IsEcal false
|
---|
[1c8d9db] | 318 |
|
---|
[0593ac3] | 319 | set EnergyMin 1.0
|
---|
[d901674] | 320 | set EnergySignificanceMin 1.0
|
---|
[a2983ec] | 321 |
|
---|
| 322 | set SmearTowerCenter true
|
---|
[d7d2da3] | 323 |
|
---|
| 324 | set pi [expr {acos(-1)}]
|
---|
| 325 |
|
---|
| 326 | # lists of the edges of each tower in eta and phi
|
---|
| 327 | # each list starts with the lower edge of the first tower
|
---|
| 328 | # the list ends with the higher edged of the last tower
|
---|
| 329 |
|
---|
| 330 | # 5 degrees towers
|
---|
| 331 | set PhiBins {}
|
---|
| 332 | for {set i -36} {$i <= 36} {incr i} {
|
---|
| 333 | add PhiBins [expr {$i * $pi/36.0}]
|
---|
| 334 | }
|
---|
| 335 | foreach eta {-1.566 -1.479 -1.392 -1.305 -1.218 -1.131 -1.044 -0.957 -0.87 -0.783 -0.696 -0.609 -0.522 -0.435 -0.348 -0.261 -0.174 -0.087 0 0.087 0.174 0.261 0.348 0.435 0.522 0.609 0.696 0.783 0.87 0.957 1.044 1.131 1.218 1.305 1.392 1.479 1.566 1.653} {
|
---|
| 336 | add EtaPhiBins $eta $PhiBins
|
---|
| 337 | }
|
---|
| 338 |
|
---|
| 339 | # 10 degrees towers
|
---|
| 340 | set PhiBins {}
|
---|
| 341 | for {set i -18} {$i <= 18} {incr i} {
|
---|
| 342 | add PhiBins [expr {$i * $pi/18.0}]
|
---|
| 343 | }
|
---|
| 344 | foreach eta {-4.35 -4.175 -4 -3.825 -3.65 -3.475 -3.3 -3.125 -2.95 -2.868 -2.65 -2.5 -2.322 -2.172 -2.043 -1.93 -1.83 -1.74 -1.653 1.74 1.83 1.93 2.043 2.172 2.322 2.5 2.65 2.868 2.95 3.125 3.3 3.475 3.65 3.825 4 4.175 4.35 4.525} {
|
---|
| 345 | add EtaPhiBins $eta $PhiBins
|
---|
| 346 | }
|
---|
| 347 |
|
---|
| 348 | # 20 degrees towers
|
---|
| 349 | set PhiBins {}
|
---|
| 350 | for {set i -9} {$i <= 9} {incr i} {
|
---|
| 351 | add PhiBins [expr {$i * $pi/9.0}]
|
---|
| 352 | }
|
---|
| 353 | foreach eta {-5 -4.7 -4.525 4.7 5} {
|
---|
| 354 | add EtaPhiBins $eta $PhiBins
|
---|
| 355 | }
|
---|
| 356 |
|
---|
| 357 | # default energy fractions {abs(PDG code)} {Fecal Fhcal}
|
---|
[0593ac3] | 358 | add EnergyFraction {0} {1.0}
|
---|
[d7d2da3] | 359 | # energy fractions for e, gamma and pi0
|
---|
[0593ac3] | 360 | add EnergyFraction {11} {0.0}
|
---|
| 361 | add EnergyFraction {22} {0.0}
|
---|
| 362 | add EnergyFraction {111} {0.0}
|
---|
[d7d2da3] | 363 | # energy fractions for muon, neutrinos and neutralinos
|
---|
[0593ac3] | 364 | add EnergyFraction {12} {0.0}
|
---|
| 365 | add EnergyFraction {13} {0.0}
|
---|
| 366 | add EnergyFraction {14} {0.0}
|
---|
| 367 | add EnergyFraction {16} {0.0}
|
---|
| 368 | add EnergyFraction {1000022} {0.0}
|
---|
| 369 | add EnergyFraction {1000023} {0.0}
|
---|
| 370 | add EnergyFraction {1000025} {0.0}
|
---|
| 371 | add EnergyFraction {1000035} {0.0}
|
---|
| 372 | add EnergyFraction {1000045} {0.0}
|
---|
[d7d2da3] | 373 | # energy fractions for K0short and Lambda
|
---|
[0593ac3] | 374 | add EnergyFraction {310} {0.7}
|
---|
| 375 | add EnergyFraction {3122} {0.7}
|
---|
[d7d2da3] | 376 |
|
---|
| 377 | # set HCalResolutionFormula {resolution formula as a function of eta and energy}
|
---|
[0593ac3] | 378 | set ResolutionFormula { (abs(eta) <= 3.0) * sqrt(energy^2*0.050^2 + energy*1.50^2) +
|
---|
[a1ac20e] | 379 | (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.130^2 + energy*2.70^2)}
|
---|
[0593ac3] | 380 |
|
---|
| 381 | }
|
---|
| 382 |
|
---|
| 383 |
|
---|
| 384 | #################
|
---|
| 385 | # Electron filter
|
---|
| 386 | #################
|
---|
| 387 |
|
---|
| 388 | module PdgCodeFilter ElectronFilter {
|
---|
| 389 | set InputArray HCal/eflowTracks
|
---|
| 390 | set OutputArray electrons
|
---|
| 391 | set Invert true
|
---|
| 392 | add PdgCode {11}
|
---|
| 393 | add PdgCode {-11}
|
---|
| 394 | }
|
---|
| 395 |
|
---|
| 396 | ###################################################
|
---|
| 397 | # Tower Merger (in case not using e-flow algorithm)
|
---|
| 398 | ###################################################
|
---|
| 399 |
|
---|
[a39b82e] | 400 | module Merger Calorimeter {
|
---|
[0593ac3] | 401 | # add InputArray InputArray
|
---|
| 402 | add InputArray ECal/ecalTowers
|
---|
| 403 | add InputArray HCal/hcalTowers
|
---|
| 404 | set OutputArray towers
|
---|
[d7d2da3] | 405 | }
|
---|
| 406 |
|
---|
[0593ac3] | 407 |
|
---|
| 408 |
|
---|
[d7d2da3] | 409 | ####################
|
---|
| 410 | # Energy flow merger
|
---|
| 411 | ####################
|
---|
| 412 |
|
---|
| 413 | module Merger EFlowMerger {
|
---|
| 414 | # add InputArray InputArray
|
---|
[0593ac3] | 415 | add InputArray HCal/eflowTracks
|
---|
| 416 | add InputArray ECal/eflowPhotons
|
---|
| 417 | add InputArray HCal/eflowNeutralHadrons
|
---|
[d7d2da3] | 418 | set OutputArray eflow
|
---|
| 419 | }
|
---|
| 420 |
|
---|
[93b4a8c] | 421 | ######################
|
---|
| 422 | # EFlowFilter
|
---|
| 423 | ######################
|
---|
| 424 |
|
---|
| 425 | module PdgCodeFilter EFlowFilter {
|
---|
| 426 | set InputArray EFlowMerger/eflow
|
---|
| 427 | set OutputArray eflow
|
---|
| 428 |
|
---|
| 429 | add PdgCode {11}
|
---|
| 430 | add PdgCode {-11}
|
---|
| 431 | add PdgCode {13}
|
---|
| 432 | add PdgCode {-13}
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 |
|
---|
[d7d2da3] | 436 | ###################
|
---|
| 437 | # Photon efficiency
|
---|
| 438 | ###################
|
---|
| 439 |
|
---|
| 440 | module Efficiency PhotonEfficiency {
|
---|
[0593ac3] | 441 | set InputArray ECal/eflowPhotons
|
---|
[d7d2da3] | 442 | set OutputArray photons
|
---|
| 443 |
|
---|
| 444 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 445 |
|
---|
| 446 | # efficiency formula for photons
|
---|
[a2983ec] | 447 | set EfficiencyFormula { (pt <= 10.0) * (0.00) +
|
---|
| 448 | (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) +
|
---|
| 449 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0) * (0.85) +
|
---|
[d7d2da3] | 450 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 451 | }
|
---|
| 452 |
|
---|
| 453 | ##################
|
---|
| 454 | # Photon isolation
|
---|
| 455 | ##################
|
---|
| 456 |
|
---|
| 457 | module Isolation PhotonIsolation {
|
---|
| 458 | set CandidateInputArray PhotonEfficiency/photons
|
---|
[93b4a8c] | 459 | set IsolationInputArray EFlowFilter/eflow
|
---|
[d7d2da3] | 460 |
|
---|
| 461 | set OutputArray photons
|
---|
| 462 |
|
---|
| 463 | set DeltaRMax 0.5
|
---|
| 464 |
|
---|
| 465 | set PTMin 0.5
|
---|
| 466 |
|
---|
[8e2759b] | 467 | set PTRatioMax 0.12
|
---|
[d7d2da3] | 468 | }
|
---|
| 469 |
|
---|
[934d037] | 470 |
|
---|
[d7d2da3] | 471 | #####################
|
---|
| 472 | # Electron efficiency
|
---|
| 473 | #####################
|
---|
| 474 |
|
---|
| 475 | module Efficiency ElectronEfficiency {
|
---|
[934d037] | 476 | set InputArray ElectronFilter/electrons
|
---|
[d7d2da3] | 477 | set OutputArray electrons
|
---|
| 478 |
|
---|
| 479 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 480 |
|
---|
| 481 | # efficiency formula for electrons
|
---|
[a2983ec] | 482 | set EfficiencyFormula { (pt <= 10.0) * (0.00) +
|
---|
| 483 | (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) +
|
---|
| 484 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0) * (0.85) +
|
---|
[d7d2da3] | 485 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 486 | }
|
---|
| 487 |
|
---|
| 488 | ####################
|
---|
| 489 | # Electron isolation
|
---|
| 490 | ####################
|
---|
| 491 |
|
---|
| 492 | module Isolation ElectronIsolation {
|
---|
| 493 | set CandidateInputArray ElectronEfficiency/electrons
|
---|
[93b4a8c] | 494 | set IsolationInputArray EFlowFilter/eflow
|
---|
[d7d2da3] | 495 |
|
---|
| 496 | set OutputArray electrons
|
---|
| 497 |
|
---|
| 498 | set DeltaRMax 0.5
|
---|
| 499 |
|
---|
| 500 | set PTMin 0.5
|
---|
| 501 |
|
---|
[8e2759b] | 502 | set PTRatioMax 0.12
|
---|
[d7d2da3] | 503 | }
|
---|
| 504 |
|
---|
| 505 | #################
|
---|
| 506 | # Muon efficiency
|
---|
| 507 | #################
|
---|
| 508 |
|
---|
| 509 | module Efficiency MuonEfficiency {
|
---|
| 510 | set InputArray MuonMomentumSmearing/muons
|
---|
| 511 | set OutputArray muons
|
---|
| 512 |
|
---|
| 513 | # set EfficiencyFormula {efficiency as a function of eta and pt}
|
---|
| 514 |
|
---|
| 515 | # efficiency formula for muons
|
---|
[998790a] | 516 | set EfficiencyFormula { (pt <= 10.0) * (0.00) +
|
---|
| 517 | (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) +
|
---|
| 518 | (abs(eta) > 1.5 && abs(eta) <= 2.4) * (pt > 10.0) * (0.95) +
|
---|
[1697699] | 519 | (abs(eta) > 2.4) * (0.00)}
|
---|
[d7d2da3] | 520 | }
|
---|
| 521 |
|
---|
| 522 | ################
|
---|
| 523 | # Muon isolation
|
---|
| 524 | ################
|
---|
| 525 |
|
---|
| 526 | module Isolation MuonIsolation {
|
---|
| 527 | set CandidateInputArray MuonEfficiency/muons
|
---|
[93b4a8c] | 528 | set IsolationInputArray EFlowFilter/eflow
|
---|
[d7d2da3] | 529 |
|
---|
| 530 | set OutputArray muons
|
---|
| 531 |
|
---|
| 532 | set DeltaRMax 0.5
|
---|
| 533 |
|
---|
| 534 | set PTMin 0.5
|
---|
| 535 |
|
---|
[8e2759b] | 536 | set PTRatioMax 0.25
|
---|
[d7d2da3] | 537 | }
|
---|
| 538 |
|
---|
| 539 | ###################
|
---|
| 540 | # Missing ET merger
|
---|
| 541 | ###################
|
---|
| 542 |
|
---|
| 543 | module Merger MissingET {
|
---|
| 544 | # add InputArray InputArray
|
---|
[27bf162] | 545 | add InputArray EFlowMerger/eflow
|
---|
[d7d2da3] | 546 | set MomentumOutputArray momentum
|
---|
| 547 | }
|
---|
| 548 |
|
---|
| 549 | ##################
|
---|
| 550 | # Scalar HT merger
|
---|
| 551 | ##################
|
---|
| 552 |
|
---|
| 553 | module Merger ScalarHT {
|
---|
| 554 | # add InputArray InputArray
|
---|
| 555 | add InputArray UniqueObjectFinder/jets
|
---|
| 556 | add InputArray UniqueObjectFinder/electrons
|
---|
| 557 | add InputArray UniqueObjectFinder/photons
|
---|
[8839353] | 558 | add InputArray UniqueObjectFinder/muons
|
---|
[d7d2da3] | 559 | set EnergyOutputArray energy
|
---|
| 560 | }
|
---|
| 561 |
|
---|
[be2222c] | 562 |
|
---|
| 563 | #####################
|
---|
| 564 | # Neutrino Filter
|
---|
| 565 | #####################
|
---|
| 566 |
|
---|
| 567 | module PdgCodeFilter NeutrinoFilter {
|
---|
[a2983ec] | 568 |
|
---|
[be2222c] | 569 | set InputArray Delphes/stableParticles
|
---|
| 570 | set OutputArray filteredParticles
|
---|
| 571 |
|
---|
| 572 | set PTMin 0.0
|
---|
[a2983ec] | 573 |
|
---|
[be2222c] | 574 | add PdgCode {12}
|
---|
| 575 | add PdgCode {14}
|
---|
| 576 | add PdgCode {16}
|
---|
| 577 | add PdgCode {-12}
|
---|
| 578 | add PdgCode {-14}
|
---|
| 579 | add PdgCode {-16}
|
---|
| 580 |
|
---|
| 581 | }
|
---|
| 582 |
|
---|
| 583 |
|
---|
[d7d2da3] | 584 | #####################
|
---|
| 585 | # MC truth jet finder
|
---|
| 586 | #####################
|
---|
| 587 |
|
---|
| 588 | module FastJetFinder GenJetFinder {
|
---|
[be2222c] | 589 | set InputArray NeutrinoFilter/filteredParticles
|
---|
[d7d2da3] | 590 |
|
---|
| 591 | set OutputArray jets
|
---|
| 592 |
|
---|
| 593 | # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
|
---|
| 594 | set JetAlgorithm 6
|
---|
[8839353] | 595 | set ParameterR 0.5
|
---|
[d7d2da3] | 596 |
|
---|
| 597 | set JetPTMin 20.0
|
---|
| 598 | }
|
---|
| 599 |
|
---|
[59d6164] | 600 | #########################
|
---|
| 601 | # Gen Missing ET merger
|
---|
| 602 | ########################
|
---|
| 603 |
|
---|
| 604 | module Merger GenMissingET {
|
---|
| 605 | # add InputArray InputArray
|
---|
| 606 | add InputArray NeutrinoFilter/filteredParticles
|
---|
| 607 | set MomentumOutputArray momentum
|
---|
| 608 | }
|
---|
| 609 |
|
---|
| 610 |
|
---|
[be2222c] | 611 |
|
---|
[d7d2da3] | 612 | ############
|
---|
| 613 | # Jet finder
|
---|
| 614 | ############
|
---|
| 615 |
|
---|
| 616 | module FastJetFinder FastJetFinder {
|
---|
| 617 | # set InputArray Calorimeter/towers
|
---|
| 618 | set InputArray EFlowMerger/eflow
|
---|
| 619 |
|
---|
| 620 | set OutputArray jets
|
---|
| 621 |
|
---|
| 622 | # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
|
---|
| 623 | set JetAlgorithm 6
|
---|
[8839353] | 624 | set ParameterR 0.5
|
---|
[d7d2da3] | 625 |
|
---|
| 626 | set JetPTMin 20.0
|
---|
| 627 | }
|
---|
| 628 |
|
---|
[8839353] | 629 | ##################
|
---|
| 630 | # Jet Energy Scale
|
---|
| 631 | ##################
|
---|
[d7d2da3] | 632 |
|
---|
[8839353] | 633 | module EnergyScale JetEnergyScale {
|
---|
| 634 | set InputArray FastJetFinder/jets
|
---|
| 635 | set OutputArray jets
|
---|
[d7d2da3] | 636 |
|
---|
[35b9204] | 637 | # scale formula for jets
|
---|
| 638 | set ScaleFormula {sqrt( (2.5 - 0.15*(abs(eta)))^2 / pt + 1.0 )}
|
---|
[d7d2da3] | 639 | }
|
---|
| 640 |
|
---|
[6153fb0] | 641 | ########################
|
---|
| 642 | # Jet Flavor Association
|
---|
| 643 | ########################
|
---|
| 644 |
|
---|
| 645 | module JetFlavorAssociation JetFlavorAssociation {
|
---|
[934d037] | 646 |
|
---|
[6153fb0] | 647 | set PartonInputArray Delphes/partons
|
---|
| 648 | set ParticleInputArray Delphes/allParticles
|
---|
| 649 | set ParticleLHEFInputArray Delphes/allParticlesLHEF
|
---|
| 650 | set JetInputArray JetEnergyScale/jets
|
---|
[934d037] | 651 |
|
---|
[6153fb0] | 652 | set DeltaR 0.5
|
---|
| 653 | set PartonPTMin 1.0
|
---|
| 654 | set PartonEtaMax 2.5
|
---|
| 655 |
|
---|
| 656 | }
|
---|
| 657 |
|
---|
[d7d2da3] | 658 | ###########
|
---|
| 659 | # b-tagging
|
---|
| 660 | ###########
|
---|
| 661 |
|
---|
| 662 | module BTagging BTagging {
|
---|
[8839353] | 663 | set JetInputArray JetEnergyScale/jets
|
---|
[d7d2da3] | 664 |
|
---|
[264bf40] | 665 | set BitNumber 0
|
---|
| 666 |
|
---|
[d7d2da3] | 667 | # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
|
---|
| 668 | # PDG code = the highest PDG code of a quark or gluon inside DeltaR cone around jet axis
|
---|
| 669 | # gluon's PDG code has the lowest priority
|
---|
| 670 |
|
---|
[8713dee] | 671 | # based on arXiv:1211.4462
|
---|
| 672 |
|
---|
[d7d2da3] | 673 | # default efficiency formula (misidentification rate)
|
---|
[a356d6d] | 674 | add EfficiencyFormula {0} {0.01+0.000038*pt}
|
---|
[d7d2da3] | 675 |
|
---|
| 676 | # efficiency formula for c-jets (misidentification rate)
|
---|
[0413f44] | 677 | add EfficiencyFormula {4} {0.25*tanh(0.018*pt)*(1/(1+ 0.0013*pt))}
|
---|
[d7d2da3] | 678 |
|
---|
| 679 | # efficiency formula for b-jets
|
---|
[dddad55] | 680 | add EfficiencyFormula {5} {0.85*tanh(0.0025*pt)*(25.0/(1+0.063*pt))}
|
---|
[d7d2da3] | 681 | }
|
---|
| 682 |
|
---|
[6153fb0] | 683 | #############
|
---|
| 684 | # tau-tagging
|
---|
| 685 | #############
|
---|
| 686 |
|
---|
[d7d2da3] | 687 | module TauTagging TauTagging {
|
---|
| 688 | set ParticleInputArray Delphes/allParticles
|
---|
| 689 | set PartonInputArray Delphes/partons
|
---|
[28f1285] | 690 | set JetInputArray JetEnergyScale/jets
|
---|
[d7d2da3] | 691 |
|
---|
| 692 | set DeltaR 0.5
|
---|
| 693 |
|
---|
| 694 | set TauPTMin 1.0
|
---|
| 695 |
|
---|
| 696 | set TauEtaMax 2.5
|
---|
| 697 |
|
---|
| 698 | # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
|
---|
| 699 |
|
---|
| 700 | # default efficiency formula (misidentification rate)
|
---|
[8713dee] | 701 | add EfficiencyFormula {0} {0.01}
|
---|
[d7d2da3] | 702 | # efficiency formula for tau-jets
|
---|
[8713dee] | 703 | add EfficiencyFormula {15} {0.6}
|
---|
[d7d2da3] | 704 | }
|
---|
| 705 |
|
---|
| 706 | #####################################################
|
---|
| 707 | # Find uniquely identified photons/electrons/tau/jets
|
---|
| 708 | #####################################################
|
---|
| 709 |
|
---|
| 710 | module UniqueObjectFinder UniqueObjectFinder {
|
---|
| 711 | # earlier arrays take precedence over later ones
|
---|
| 712 | # add InputArray InputArray OutputArray
|
---|
| 713 | add InputArray PhotonIsolation/photons photons
|
---|
| 714 | add InputArray ElectronIsolation/electrons electrons
|
---|
[8839353] | 715 | add InputArray MuonIsolation/muons muons
|
---|
| 716 | add InputArray JetEnergyScale/jets jets
|
---|
[d7d2da3] | 717 | }
|
---|
| 718 |
|
---|
| 719 | ##################
|
---|
| 720 | # ROOT tree writer
|
---|
| 721 | ##################
|
---|
| 722 |
|
---|
[27bf162] | 723 | # tracks, towers and eflow objects are not stored by default in the output.
|
---|
[282f591] | 724 | # if needed (for jet constituent or other studies), uncomment the relevant
|
---|
| 725 | # "add Branch ..." lines.
|
---|
[27bf162] | 726 |
|
---|
[d7d2da3] | 727 | module TreeWriter TreeWriter {
|
---|
| 728 | # add Branch InputArray BranchName BranchClass
|
---|
| 729 | add Branch Delphes/allParticles Particle GenParticle
|
---|
[27bf162] | 730 |
|
---|
[f2d7d0c] | 731 | add Branch TrackMerger/tracks Track Track
|
---|
[a39b82e] | 732 | add Branch Calorimeter/towers Tower Tower
|
---|
[282f591] | 733 |
|
---|
[0593ac3] | 734 | add Branch HCal/eflowTracks EFlowTrack Track
|
---|
| 735 | add Branch ECal/eflowPhotons EFlowPhoton Tower
|
---|
| 736 | add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower
|
---|
[282f591] | 737 |
|
---|
[d7d2da3] | 738 | add Branch GenJetFinder/jets GenJet Jet
|
---|
[59d6164] | 739 | add Branch GenMissingET/momentum GenMissingET MissingET
|
---|
[0593ac3] | 740 |
|
---|
[d7d2da3] | 741 | add Branch UniqueObjectFinder/jets Jet Jet
|
---|
| 742 | add Branch UniqueObjectFinder/electrons Electron Electron
|
---|
| 743 | add Branch UniqueObjectFinder/photons Photon Photon
|
---|
[8839353] | 744 | add Branch UniqueObjectFinder/muons Muon Muon
|
---|
[d7d2da3] | 745 | add Branch MissingET/momentum MissingET MissingET
|
---|
| 746 | add Branch ScalarHT/energy ScalarHT ScalarHT
|
---|
| 747 | }
|
---|