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