[1009] | 1 | #######################################
|
---|
| 2 | # Order of execution of various modules
|
---|
| 3 | #######################################
|
---|
| 4 |
|
---|
| 5 | set ExecutionPath {
|
---|
[1031] | 6 |
|
---|
[1124] | 7 | Weighter
|
---|
| 8 |
|
---|
[1009] | 9 | PileUpMerger
|
---|
| 10 | ParticlePropagator
|
---|
| 11 |
|
---|
| 12 | ChargedHadronTrackingEfficiency
|
---|
| 13 | ElectronTrackingEfficiency
|
---|
| 14 | MuonTrackingEfficiency
|
---|
| 15 |
|
---|
| 16 | ChargedHadronMomentumSmearing
|
---|
| 17 | ElectronEnergySmearing
|
---|
| 18 | MuonMomentumSmearing
|
---|
| 19 |
|
---|
| 20 | TrackMerger
|
---|
| 21 | Calorimeter
|
---|
[1072] | 22 | TrackPileUpSubtractor
|
---|
[1009] | 23 | EFlowMerger
|
---|
| 24 |
|
---|
[1074] | 25 | GenJetFinder
|
---|
| 26 |
|
---|
[1031] | 27 | Rho
|
---|
[1009] | 28 | FastJetFinder
|
---|
| 29 | JetPileUpSubtractor
|
---|
[1031] | 30 |
|
---|
[1074] | 31 | ConstituentFilter
|
---|
| 32 |
|
---|
[1009] | 33 | PhotonEfficiency
|
---|
| 34 | PhotonIsolation
|
---|
[1031] | 35 |
|
---|
[1009] | 36 | ElectronEfficiency
|
---|
| 37 | ElectronIsolation
|
---|
[1031] | 38 |
|
---|
[1009] | 39 | MuonEfficiency
|
---|
| 40 | MuonIsolation
|
---|
[1031] | 41 |
|
---|
[1009] | 42 | MissingET
|
---|
[1031] | 43 |
|
---|
[1009] | 44 | BTagging
|
---|
| 45 | TauTagging
|
---|
[1031] | 46 |
|
---|
[1009] | 47 | UniqueObjectFinder
|
---|
[1031] | 48 |
|
---|
[1009] | 49 | ScalarHT
|
---|
[1031] | 50 |
|
---|
[1009] | 51 | TreeWriter
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[1124] | 54 | ##########
|
---|
| 55 | # Weighter
|
---|
| 56 | ##########
|
---|
| 57 |
|
---|
| 58 | module Weighter Weighter {
|
---|
| 59 | set InputArray Delphes/allParticles
|
---|
| 60 |
|
---|
| 61 | set OutputArray weight
|
---|
| 62 |
|
---|
| 63 | # add Weight {PID1 PID2} {weight}
|
---|
| 64 | # default weight
|
---|
| 65 | add Weight {0} {1.0}
|
---|
| 66 |
|
---|
| 67 | add Weight {23} {0.5}
|
---|
| 68 | add Weight {24} {0.5}
|
---|
| 69 | add Weight {-24} {0.5}
|
---|
| 70 | add Weight {23 24} {0.25}
|
---|
| 71 | add Weight {23 -24} {0.25}
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[1016] | 74 | ###############
|
---|
[1009] | 75 | # PileUp Merger
|
---|
[1016] | 76 | ###############
|
---|
[1009] | 77 |
|
---|
| 78 | module PileUpMerger PileUpMerger {
|
---|
| 79 | set InputArray Delphes/stableParticles
|
---|
[1016] | 80 |
|
---|
[1009] | 81 | set OutputArray stableParticles
|
---|
[1031] | 82 |
|
---|
[1016] | 83 | # pre-generated minbias input file
|
---|
[1072] | 84 | set PileUpFile MinBias.pileup
|
---|
[1009] | 85 |
|
---|
[1031] | 86 | # average expected pile up
|
---|
[1023] | 87 | set MeanPileUp 50
|
---|
[1009] | 88 | # spread in the beam direction in m (assumes gaussian)
|
---|
[1031] | 89 | set ZVertexSpread 0.07
|
---|
[1009] | 90 | }
|
---|
[1026] | 91 |
|
---|
[1009] | 92 | #################################
|
---|
| 93 | # Propagate particles in cylinder
|
---|
| 94 | #################################
|
---|
| 95 |
|
---|
| 96 | module ParticlePropagator ParticlePropagator {
|
---|
| 97 | set InputArray PileUpMerger/stableParticles
|
---|
| 98 |
|
---|
| 99 | set OutputArray stableParticles
|
---|
| 100 | set ChargedHadronOutputArray chargedHadrons
|
---|
| 101 | set ElectronOutputArray electrons
|
---|
| 102 | set MuonOutputArray muons
|
---|
| 103 |
|
---|
| 104 | # radius of the magnetic field coverage, in m
|
---|
| 105 | set Radius 1.29
|
---|
| 106 | # half-length of the magnetic field coverage, in m
|
---|
| 107 | set HalfLength 3.00
|
---|
| 108 |
|
---|
| 109 | # magnetic field
|
---|
| 110 | set Bz 3.8
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | ####################################
|
---|
| 114 | # Charged hadron tracking efficiency
|
---|
| 115 | ####################################
|
---|
| 116 |
|
---|
| 117 | module Efficiency ChargedHadronTrackingEfficiency {
|
---|
[1072] | 118 | set InputArray ParticlePropagator/chargedHadrons
|
---|
[1009] | 119 | set OutputArray chargedHadrons
|
---|
| 120 |
|
---|
| 121 | # add EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 122 |
|
---|
| 123 | # tracking efficiency formula for charged hadrons
|
---|
| 124 | set EfficiencyFormula { (pt <= 0.1) * (0.00) + \
|
---|
| 125 | (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.70) + \
|
---|
| 126 | (abs(eta) <= 1.5) * (pt > 1.0) * (0.95) + \
|
---|
| 127 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.60) + \
|
---|
| 128 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0) * (0.85) + \
|
---|
| 129 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | ##############################
|
---|
| 133 | # Electron tracking efficiency
|
---|
| 134 | ##############################
|
---|
| 135 |
|
---|
| 136 | module Efficiency ElectronTrackingEfficiency {
|
---|
[1072] | 137 | set InputArray ParticlePropagator/electrons
|
---|
[1009] | 138 | set OutputArray electrons
|
---|
| 139 |
|
---|
| 140 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
[1031] | 141 |
|
---|
[1009] | 142 | # tracking efficiency formula for electrons
|
---|
| 143 | set EfficiencyFormula { (pt <= 0.1) * (0.00) + \
|
---|
| 144 | (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.73) + \
|
---|
| 145 | (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e2) * (0.95) + \
|
---|
| 146 | (abs(eta) <= 1.5) * (pt > 1.0e2) * (0.99) + \
|
---|
| 147 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.50) + \
|
---|
| 148 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e2) * (0.83) + \
|
---|
| 149 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e2) * (0.90) + \
|
---|
| 150 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 151 | }
|
---|
| 152 |
|
---|
[1031] | 153 | ##########################
|
---|
[1009] | 154 | # Muon tracking efficiency
|
---|
[1031] | 155 | ##########################
|
---|
[1009] | 156 |
|
---|
| 157 | module Efficiency MuonTrackingEfficiency {
|
---|
[1072] | 158 | set InputArray ParticlePropagator/muons
|
---|
[1009] | 159 | set OutputArray muons
|
---|
| 160 |
|
---|
| 161 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
[1031] | 162 |
|
---|
[1009] | 163 | # tracking efficiency formula for muons
|
---|
| 164 | set EfficiencyFormula { (pt <= 0.1) * (0.00) + \
|
---|
| 165 | (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.75) + \
|
---|
| 166 | (abs(eta) <= 1.5) * (pt > 1.0) * (0.99) + \
|
---|
| 167 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.70) + \
|
---|
| 168 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0) * (0.98) + \
|
---|
| 169 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 170 | }
|
---|
| 171 |
|
---|
| 172 | ########################################
|
---|
| 173 | # Momentum resolution for charged tracks
|
---|
| 174 | ########################################
|
---|
| 175 |
|
---|
| 176 | module MomentumSmearing ChargedHadronMomentumSmearing {
|
---|
| 177 | set InputArray ChargedHadronTrackingEfficiency/chargedHadrons
|
---|
| 178 | set OutputArray chargedHadrons
|
---|
| 179 |
|
---|
| 180 | # set ResolutionFormula {resolution formula as a function of eta and pt}
|
---|
| 181 |
|
---|
| 182 | # resolution formula for charged hadrons
|
---|
| 183 | set ResolutionFormula { (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.02) + \
|
---|
| 184 | (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e1) * (0.01) + \
|
---|
| 185 | (abs(eta) <= 1.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.03) + \
|
---|
| 186 | (abs(eta) <= 1.5) * (pt > 2.0e2) * (0.05) + \
|
---|
| 187 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.03) + \
|
---|
| 188 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e1) * (0.02) + \
|
---|
| 189 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.04) + \
|
---|
| 190 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 2.0e2) * (0.05)}
|
---|
| 191 | }
|
---|
| 192 |
|
---|
| 193 | #################################
|
---|
| 194 | # Energy resolution for electrons
|
---|
| 195 | #################################
|
---|
| 196 |
|
---|
| 197 | module EnergySmearing ElectronEnergySmearing {
|
---|
| 198 | set InputArray ElectronTrackingEfficiency/electrons
|
---|
| 199 | set OutputArray electrons
|
---|
| 200 |
|
---|
| 201 | # set ResolutionFormula {resolution formula as a function of eta and energy}
|
---|
| 202 |
|
---|
| 203 | set ResolutionFormula { (abs(eta) <= 2.5) * (energy > 0.1 && energy <= 2.5e1) * (energy*0.015) + \
|
---|
| 204 | (abs(eta) <= 2.5) * (energy > 2.5e1) * sqrt(energy^2*0.005^2 + energy*0.05^2 + 0.25^2) + \
|
---|
| 205 | (abs(eta) > 2.5 && abs(eta) <= 3.0) * sqrt(energy^2*0.005^2 + energy*0.05^2 + 0.25^2) + \
|
---|
| 206 | (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.107^2 + energy*2.08^2)}
|
---|
| 207 |
|
---|
| 208 | }
|
---|
| 209 |
|
---|
| 210 | ###############################
|
---|
| 211 | # Momentum resolution for muons
|
---|
| 212 | ###############################
|
---|
| 213 |
|
---|
| 214 | module MomentumSmearing MuonMomentumSmearing {
|
---|
| 215 | set InputArray MuonTrackingEfficiency/muons
|
---|
| 216 | set OutputArray muons
|
---|
| 217 |
|
---|
| 218 | # set ResolutionFormula {resolution formula as a function of eta and pt}
|
---|
| 219 |
|
---|
| 220 | # resolution formula for muons
|
---|
| 221 | set ResolutionFormula { (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.03) + \
|
---|
| 222 | (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e1) * (0.02) + \
|
---|
| 223 | (abs(eta) <= 1.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.03) + \
|
---|
| 224 | (abs(eta) <= 1.5) * (pt > 2.0e2) * (0.05) + \
|
---|
| 225 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.04) + \
|
---|
| 226 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e1) * (0.03) + \
|
---|
| 227 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.04) + \
|
---|
| 228 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 2.0e2) * (0.05)}
|
---|
| 229 | }
|
---|
| 230 |
|
---|
| 231 | ##############
|
---|
| 232 | # Track merger
|
---|
| 233 | ##############
|
---|
| 234 |
|
---|
| 235 | module Merger TrackMerger {
|
---|
| 236 | # add InputArray InputArray
|
---|
| 237 | add InputArray ChargedHadronMomentumSmearing/chargedHadrons
|
---|
| 238 | add InputArray ElectronEnergySmearing/electrons
|
---|
| 239 | set OutputArray tracks
|
---|
| 240 | }
|
---|
| 241 |
|
---|
| 242 | #############
|
---|
| 243 | # Calorimeter
|
---|
| 244 | #############
|
---|
| 245 |
|
---|
| 246 | module Calorimeter Calorimeter {
|
---|
| 247 | set ParticleInputArray ParticlePropagator/stableParticles
|
---|
| 248 | set TrackInputArray TrackMerger/tracks
|
---|
| 249 |
|
---|
| 250 | set TowerOutputArray towers
|
---|
| 251 | set PhotonOutputArray photons
|
---|
| 252 |
|
---|
| 253 | set EFlowTrackOutputArray eflowTracks
|
---|
| 254 | set EFlowTowerOutputArray eflowTowers
|
---|
| 255 |
|
---|
| 256 | set pi [expr {acos(-1)}]
|
---|
[1031] | 257 |
|
---|
[1009] | 258 | # lists of the edges of each tower in eta and phi
|
---|
| 259 | # each list starts with the lower edge of the first tower
|
---|
| 260 | # the list ends with the higher edged of the last tower
|
---|
| 261 |
|
---|
| 262 | # 5 degrees towers
|
---|
| 263 | set PhiBins {}
|
---|
[1031] | 264 | for {set i -36} {$i <= 36} {incr i} {
|
---|
[1009] | 265 | add PhiBins [expr {$i * $pi/36.0}]
|
---|
| 266 | }
|
---|
[1031] | 267 | 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} {
|
---|
[1009] | 268 | add EtaPhiBins $eta $PhiBins
|
---|
| 269 | }
|
---|
| 270 |
|
---|
| 271 | # 10 degrees towers
|
---|
| 272 | set PhiBins {}
|
---|
[1031] | 273 | for {set i -18} {$i <= 18} {incr i} {
|
---|
[1009] | 274 | add PhiBins [expr {$i * $pi/18.0}]
|
---|
| 275 | }
|
---|
[1031] | 276 | 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} {
|
---|
[1009] | 277 | add EtaPhiBins $eta $PhiBins
|
---|
| 278 | }
|
---|
[1031] | 279 |
|
---|
[1009] | 280 | # 20 degrees towers
|
---|
| 281 | set PhiBins {}
|
---|
[1031] | 282 | for {set i -9} {$i <= 9} {incr i} {
|
---|
[1009] | 283 | add PhiBins [expr {$i * $pi/9.0}]
|
---|
[1031] | 284 | }
|
---|
| 285 | foreach eta {-5 -4.7 -4.525 4.7 5} {
|
---|
[1009] | 286 | add EtaPhiBins $eta $PhiBins
|
---|
| 287 | }
|
---|
| 288 |
|
---|
| 289 | # default energy fractions {abs(PDG code)} {Fecal Fhcal}
|
---|
| 290 | add EnergyFraction {0} {0.0 1.0}
|
---|
| 291 | # energy fractions for e, gamma and pi0
|
---|
| 292 | add EnergyFraction {11} {1.0 0.0}
|
---|
| 293 | add EnergyFraction {22} {1.0 0.0}
|
---|
| 294 | add EnergyFraction {111} {1.0 0.0}
|
---|
[1076] | 295 | # energy fractions for muon, neutrinos and neutralinos
|
---|
[1009] | 296 | add EnergyFraction {12} {0.0 0.0}
|
---|
| 297 | add EnergyFraction {13} {0.0 0.0}
|
---|
| 298 | add EnergyFraction {14} {0.0 0.0}
|
---|
| 299 | add EnergyFraction {16} {0.0 0.0}
|
---|
[1076] | 300 | add EnergyFraction {1000022} {0.0 0.0}
|
---|
| 301 | add EnergyFraction {1000023} {0.0 0.0}
|
---|
| 302 | add EnergyFraction {1000025} {0.0 0.0}
|
---|
| 303 | add EnergyFraction {1000035} {0.0 0.0}
|
---|
| 304 | add EnergyFraction {1000045} {0.0 0.0}
|
---|
[1009] | 305 | # energy fractions for K0short and Lambda
|
---|
| 306 | add EnergyFraction {310} {0.3 0.7}
|
---|
| 307 | add EnergyFraction {3122} {0.3 0.7}
|
---|
[1031] | 308 |
|
---|
[1009] | 309 | # set ECalResolutionFormula {resolution formula as a function of eta and energy}
|
---|
| 310 | set ECalResolutionFormula { (abs(eta) <= 3.0) * sqrt(energy^2*0.005^2 + energy*0.05^2 + 0.25^2) + \
|
---|
| 311 | (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.107^2 + energy*2.08^2)}
|
---|
| 312 |
|
---|
| 313 | # set HCalResolutionFormula {resolution formula as a function of eta and energy}
|
---|
| 314 | set HCalResolutionFormula { (abs(eta) <= 3.0) * sqrt(energy^2*0.050^2 + energy*1.50^2) + \
|
---|
| 315 | (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.130^2 + energy*2.70^2)}
|
---|
| 316 | }
|
---|
| 317 |
|
---|
[1072] | 318 | ##########################
|
---|
| 319 | # Track pile-up subtractor
|
---|
| 320 | ##########################
|
---|
| 321 |
|
---|
| 322 | module TrackPileUpSubtractor TrackPileUpSubtractor {
|
---|
| 323 | # add InputArray InputArray OutputArray
|
---|
| 324 | add InputArray Calorimeter/eflowTracks eflowTracks
|
---|
| 325 | add InputArray ElectronEnergySmearing/electrons electrons
|
---|
| 326 | add InputArray MuonMomentumSmearing/muons muons
|
---|
| 327 |
|
---|
| 328 | # assume perfect pile-up subtraction for tracks with |z| > fZVertexResolution
|
---|
| 329 | # Z vertex resolution in m
|
---|
| 330 | set ZVertexResolution 0.0001
|
---|
| 331 | }
|
---|
| 332 |
|
---|
[1009] | 333 | ####################
|
---|
| 334 | # Energy flow merger
|
---|
| 335 | ####################
|
---|
| 336 |
|
---|
| 337 | module Merger EFlowMerger {
|
---|
| 338 | # add InputArray InputArray
|
---|
[1072] | 339 | add InputArray TrackPileUpSubtractor/eflowTracks
|
---|
[1009] | 340 | add InputArray Calorimeter/eflowTowers
|
---|
| 341 | add InputArray MuonMomentumSmearing/muons
|
---|
| 342 | set OutputArray eflow
|
---|
| 343 | }
|
---|
| 344 |
|
---|
[1031] | 345 | #############
|
---|
[1009] | 346 | # Rho pile-up
|
---|
[1031] | 347 | #############
|
---|
[1009] | 348 |
|
---|
| 349 | module FastJetFinder Rho {
|
---|
| 350 | # set InputArray Calorimeter/towers
|
---|
| 351 | set InputArray EFlowMerger/eflow
|
---|
[1031] | 352 |
|
---|
[1009] | 353 | set ComputeRho true
|
---|
[1031] | 354 | set RhoOutputArray rho
|
---|
[1009] | 355 |
|
---|
[1023] | 356 | # area algorithm: 0 Do not compute area, 1 Active area explicit ghosts, 2 One ghost passive area, 3 Passive area, 4 Voronoi, 5 Active area
|
---|
[1009] | 357 | set AreaAlgorithm 5
|
---|
[1023] | 358 |
|
---|
[1009] | 359 | # jet algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
|
---|
| 360 | set JetAlgorithm 4
|
---|
| 361 | set ParameterR 0.6
|
---|
| 362 | set GhostEtaMax 5.0
|
---|
| 363 | set RhoEtaMax 5.0
|
---|
| 364 |
|
---|
| 365 | set JetPTMin 0.0
|
---|
| 366 | }
|
---|
| 367 |
|
---|
[1074] | 368 | #####################
|
---|
| 369 | # MC truth jet finder
|
---|
| 370 | #####################
|
---|
| 371 |
|
---|
| 372 | module FastJetFinder GenJetFinder {
|
---|
| 373 | set InputArray Delphes/stableParticles
|
---|
| 374 |
|
---|
| 375 | set OutputArray jets
|
---|
| 376 |
|
---|
| 377 | # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
|
---|
| 378 | set JetAlgorithm 6
|
---|
| 379 | set ParameterR 0.5
|
---|
| 380 |
|
---|
| 381 | set JetPTMin 20.0
|
---|
| 382 | }
|
---|
| 383 |
|
---|
[1009] | 384 | ############
|
---|
| 385 | # Jet finder
|
---|
| 386 | ############
|
---|
| 387 |
|
---|
| 388 | module FastJetFinder FastJetFinder {
|
---|
| 389 | # set InputArray Calorimeter/towers
|
---|
| 390 | set InputArray EFlowMerger/eflow
|
---|
| 391 |
|
---|
| 392 | set OutputArray jets
|
---|
[1071] | 393 |
|
---|
[1036] | 394 | # area algorithm: 0 Do not compute area, 1 Active area explicit ghosts, 2 One ghost passive area, 3 Passive area, 4 Voronoi, 5 Active area
|
---|
| 395 | set AreaAlgorithm 5
|
---|
[1071] | 396 |
|
---|
[1009] | 397 | # jet algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
|
---|
| 398 | set JetAlgorithm 6
|
---|
| 399 | set ParameterR 0.5
|
---|
| 400 |
|
---|
| 401 | set JetPTMin 20.0
|
---|
| 402 | }
|
---|
| 403 |
|
---|
[1074] | 404 | ####################
|
---|
| 405 | # Constituent filter
|
---|
| 406 | ####################
|
---|
| 407 |
|
---|
| 408 | module ConstituentFilter ConstituentFilter {
|
---|
| 409 |
|
---|
| 410 | # add JetInputArray InputArray
|
---|
| 411 | add JetInputArray GenJetFinder/jets
|
---|
| 412 | add JetInputArray FastJetFinder/jets
|
---|
| 413 |
|
---|
| 414 | # add ConstituentInputArray InputArray OutputArray
|
---|
| 415 | add ConstituentInputArray Delphes/stableParticles stableParticles
|
---|
| 416 | add ConstituentInputArray TrackPileUpSubtractor/eflowTracks eflowTracks
|
---|
| 417 | add ConstituentInputArray Calorimeter/eflowTowers eflowTowers
|
---|
| 418 | add ConstituentInputArray MuonMomentumSmearing/muons muons
|
---|
| 419 | }
|
---|
| 420 |
|
---|
[1009] | 421 | ###########################
|
---|
| 422 | # Jet Pile-Up Subtraction
|
---|
| 423 | ###########################
|
---|
| 424 |
|
---|
| 425 | module JetPileUpSubtractor JetPileUpSubtractor {
|
---|
| 426 | set JetInputArray FastJetFinder/jets
|
---|
| 427 | set RhoInputArray Rho/rho
|
---|
[1031] | 428 |
|
---|
[1009] | 429 | set OutputArray jets
|
---|
[1031] | 430 |
|
---|
[1009] | 431 | set JetPTMin 20.0
|
---|
| 432 | }
|
---|
| 433 |
|
---|
| 434 | ###################
|
---|
| 435 | # Photon efficiency
|
---|
| 436 | ###################
|
---|
| 437 |
|
---|
| 438 | module Efficiency PhotonEfficiency {
|
---|
| 439 | set InputArray Calorimeter/photons
|
---|
| 440 | set OutputArray photons
|
---|
| 441 |
|
---|
| 442 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 443 |
|
---|
| 444 | # efficiency formula for photons
|
---|
| 445 | set EfficiencyFormula { (pt <= 10.0) * (0.00) + \
|
---|
| 446 | (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) + \
|
---|
| 447 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0) * (0.85) + \
|
---|
| 448 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 449 | }
|
---|
| 450 |
|
---|
| 451 | ##################
|
---|
| 452 | # Photon isolation
|
---|
| 453 | ##################
|
---|
| 454 |
|
---|
| 455 | module Isolation PhotonIsolation {
|
---|
| 456 | set CandidateInputArray PhotonEfficiency/photons
|
---|
| 457 | set IsolationInputArray EFlowMerger/eflow
|
---|
[1023] | 458 | set RhoInputArray Rho/rho
|
---|
[1031] | 459 |
|
---|
[1009] | 460 | set OutputArray photons
|
---|
| 461 |
|
---|
| 462 | set DeltaRMax 0.5
|
---|
| 463 |
|
---|
| 464 | set PTMin 0.5
|
---|
| 465 |
|
---|
| 466 | set PTRatioMax 0.1
|
---|
| 467 | }
|
---|
| 468 |
|
---|
| 469 | #####################
|
---|
| 470 | # Electron efficiency
|
---|
| 471 | #####################
|
---|
| 472 |
|
---|
| 473 | module Efficiency ElectronEfficiency {
|
---|
[1072] | 474 | set InputArray TrackPileUpSubtractor/electrons
|
---|
[1009] | 475 | set OutputArray electrons
|
---|
| 476 |
|
---|
| 477 | # set EfficiencyFormula {efficiency formula as a function of eta and pt}
|
---|
| 478 |
|
---|
| 479 | # efficiency formula for electrons
|
---|
| 480 | set EfficiencyFormula { (pt <= 10.0) * (0.00) + \
|
---|
| 481 | (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) + \
|
---|
| 482 | (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0) * (0.85) + \
|
---|
| 483 | (abs(eta) > 2.5) * (0.00)}
|
---|
| 484 | }
|
---|
| 485 |
|
---|
| 486 | ####################
|
---|
| 487 | # Electron isolation
|
---|
| 488 | ####################
|
---|
| 489 |
|
---|
| 490 | module Isolation ElectronIsolation {
|
---|
| 491 | set CandidateInputArray ElectronEfficiency/electrons
|
---|
| 492 | set IsolationInputArray EFlowMerger/eflow
|
---|
| 493 | set RhoInputArray Rho/rho
|
---|
[1031] | 494 |
|
---|
[1009] | 495 | set OutputArray electrons
|
---|
| 496 |
|
---|
| 497 | set DeltaRMax 0.5
|
---|
| 498 |
|
---|
| 499 | set PTMin 0.5
|
---|
| 500 |
|
---|
| 501 | set PTRatioMax 0.1
|
---|
| 502 | }
|
---|
| 503 |
|
---|
| 504 | #################
|
---|
| 505 | # Muon efficiency
|
---|
| 506 | #################
|
---|
| 507 |
|
---|
| 508 | module Efficiency MuonEfficiency {
|
---|
[1072] | 509 | set InputArray TrackPileUpSubtractor/muons
|
---|
[1009] | 510 | set OutputArray muons
|
---|
| 511 |
|
---|
| 512 | # set EfficiencyFormula {efficiency as a function of eta and pt}
|
---|
| 513 |
|
---|
| 514 | # efficiency formula for muons
|
---|
| 515 | set EfficiencyFormula { (pt <= 10.0) * (0.00) + \
|
---|
| 516 | (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) + \
|
---|
| 517 | (abs(eta) > 1.5 && abs(eta) <= 2.4) * (pt > 10.0) * (0.85) + \
|
---|
| 518 | (abs(eta) > 2.4) * (0.00)}
|
---|
| 519 | }
|
---|
| 520 |
|
---|
| 521 | ################
|
---|
| 522 | # Muon isolation
|
---|
| 523 | ################
|
---|
| 524 |
|
---|
| 525 | module Isolation MuonIsolation {
|
---|
| 526 | set CandidateInputArray MuonEfficiency/muons
|
---|
| 527 | set IsolationInputArray EFlowMerger/eflow
|
---|
| 528 | set RhoInputArray Rho/rho
|
---|
[1031] | 529 |
|
---|
[1009] | 530 | set OutputArray muons
|
---|
| 531 |
|
---|
| 532 | set DeltaRMax 0.5
|
---|
| 533 |
|
---|
| 534 | set PTMin 0.5
|
---|
| 535 |
|
---|
| 536 | set PTRatioMax 0.1
|
---|
| 537 | }
|
---|
| 538 |
|
---|
| 539 | ###################
|
---|
| 540 | # Missing ET merger
|
---|
| 541 | ###################
|
---|
| 542 |
|
---|
| 543 | module Merger MissingET {
|
---|
| 544 | # add InputArray InputArray
|
---|
| 545 | add InputArray EFlowMerger/eflow
|
---|
| 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
|
---|
| 558 | add InputArray MuonIsolation/muons
|
---|
| 559 | set EnergyOutputArray energy
|
---|
| 560 | }
|
---|
| 561 |
|
---|
| 562 |
|
---|
| 563 | ###########
|
---|
| 564 | # b-tagging
|
---|
| 565 | ###########
|
---|
| 566 |
|
---|
| 567 | module BTagging BTagging {
|
---|
| 568 | set PartonInputArray Delphes/partons
|
---|
[1137] | 569 | set JetInputArray JetPileUpSubtractor/jets
|
---|
[1009] | 570 |
|
---|
[1099] | 571 | set BitNumber 0
|
---|
| 572 |
|
---|
[1009] | 573 | set DeltaR 0.5
|
---|
| 574 |
|
---|
| 575 | set PartonPTMin 1.0
|
---|
| 576 |
|
---|
| 577 | set PartonEtaMax 2.5
|
---|
| 578 |
|
---|
| 579 | # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
|
---|
| 580 | # PDG code = the highest PDG code of a quark or gluon inside DeltaR cone around jet axis
|
---|
| 581 | # gluon's PDG code has the lowest priority
|
---|
| 582 |
|
---|
| 583 | # https://twiki.cern.ch/twiki/bin/view/CMSPublic/PhysicsResultsBTV
|
---|
| 584 | # default efficiency formula (misidentification rate)
|
---|
| 585 | add EfficiencyFormula {0} {0.001}
|
---|
| 586 |
|
---|
| 587 | # efficiency formula for c-jets (misidentification rate)
|
---|
| 588 | add EfficiencyFormula {4} { (pt <= 15.0) * (0.000) + \
|
---|
| 589 | (abs(eta) <= 1.2) * (pt > 15.0) * (0.2*tanh(pt*0.03 - 0.4)) + \
|
---|
| 590 | (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.1*tanh(pt*0.03 - 0.4)) + \
|
---|
[1031] | 591 | (abs(eta) > 2.5) * (0.000)}
|
---|
| 592 |
|
---|
[1009] | 593 | # efficiency formula for b-jets
|
---|
| 594 | add EfficiencyFormula {5} { (pt <= 15.0) * (0.000) + \
|
---|
| 595 | (abs(eta) <= 1.2) * (pt > 15.0) * (0.5*tanh(pt*0.03 - 0.4)) + \
|
---|
| 596 | (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.4*tanh(pt*0.03 - 0.4)) + \
|
---|
| 597 | (abs(eta) > 2.5) * (0.000)}
|
---|
| 598 | }
|
---|
| 599 |
|
---|
| 600 | module TauTagging TauTagging {
|
---|
| 601 | set ParticleInputArray Delphes/allParticles
|
---|
| 602 | set PartonInputArray Delphes/partons
|
---|
[1139] | 603 | set JetInputArray JetPileUpSubtractor/jets
|
---|
[1009] | 604 |
|
---|
| 605 | set DeltaR 0.5
|
---|
| 606 |
|
---|
| 607 | set TauPTMin 1.0
|
---|
| 608 |
|
---|
| 609 | set TauEtaMax 2.5
|
---|
| 610 |
|
---|
| 611 | # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
|
---|
| 612 |
|
---|
| 613 | # default efficiency formula (misidentification rate)
|
---|
| 614 | add EfficiencyFormula {0} {0.001}
|
---|
| 615 | # efficiency formula for tau-jets
|
---|
| 616 | add EfficiencyFormula {15} {0.4}
|
---|
| 617 | }
|
---|
| 618 |
|
---|
| 619 | #####################################################
|
---|
| 620 | # Find uniquely identified photons/electrons/tau/jets
|
---|
| 621 | #####################################################
|
---|
| 622 |
|
---|
| 623 | module UniqueObjectFinder UniqueObjectFinder {
|
---|
| 624 | # earlier arrays take precedence over later ones
|
---|
| 625 | # add InputArray InputArray OutputArray
|
---|
| 626 | add InputArray PhotonIsolation/photons photons
|
---|
| 627 | add InputArray ElectronIsolation/electrons electrons
|
---|
[1036] | 628 | add InputArray JetPileUpSubtractor/jets jets
|
---|
[1009] | 629 | }
|
---|
| 630 |
|
---|
| 631 | ##################
|
---|
| 632 | # ROOT tree writer
|
---|
| 633 | ##################
|
---|
| 634 |
|
---|
| 635 | module TreeWriter TreeWriter {
|
---|
| 636 | # add Branch InputArray BranchName BranchClass
|
---|
| 637 | add Branch Delphes/allParticles Particle GenParticle
|
---|
| 638 | add Branch TrackMerger/tracks Track Track
|
---|
| 639 | add Branch Calorimeter/towers Tower Tower
|
---|
[1074] | 640 | add Branch ConstituentFilter/eflowTracks EFlowTrack Track
|
---|
| 641 | add Branch ConstituentFilter/eflowTowers EFlowTower Tower
|
---|
| 642 | add Branch ConstituentFilter/muons EFlowMuon Muon
|
---|
| 643 | add Branch GenJetFinder/jets GenJet Jet
|
---|
[1009] | 644 | add Branch UniqueObjectFinder/jets Jet Jet
|
---|
| 645 | add Branch UniqueObjectFinder/electrons Electron Electron
|
---|
| 646 | add Branch UniqueObjectFinder/photons Photon Photon
|
---|
| 647 | add Branch MuonIsolation/muons Muon Muon
|
---|
| 648 | add Branch MissingET/momentum MissingET MissingET
|
---|
| 649 | add Branch ScalarHT/energy ScalarHT ScalarHT
|
---|
[1114] | 650 | add Branch Rho/rho Rho Rho
|
---|
[1124] | 651 | add Branch Weighter/weight Weight Weight
|
---|
[1009] | 652 | }
|
---|
| 653 |
|
---|