Fork me on GitHub

Ignore:
Timestamp:
Mar 9, 2014, 12:10:05 PM (11 years ago)
Author:
Michele Selvaggi
Message:

separated Photon and Neutral Hadron components in particle algorithm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/delphes_card_CMS.tcl

    r1320 r1357  
    212212
    213213  set EFlowTrackOutputArray eflowTracks
    214   set EFlowTowerOutputArray eflowTowers
     214  set EFlowPhotonOutputArray eflowPhotons
     215  set EFlowNeutralHadronOutputArray eflowNeutralHadrons
    215216
    216217  set pi [expr {acos(-1)}]
     
    283284# add InputArray InputArray
    284285  add InputArray Calorimeter/eflowTracks
    285   add InputArray Calorimeter/eflowTowers
     286  add InputArray Calorimeter/eflowPhotons
     287  add InputArray Calorimeter/eflowNeutralHadrons
    286288  set OutputArray eflow
    287289}
     
    292294
    293295module Efficiency PhotonEfficiency {
    294   set InputArray Calorimeter/photons
     296  set InputArray Calorimeter/eflowPhotons
    295297  set OutputArray photons
    296298
     
    397399module Merger MissingET {
    398400# add InputArray InputArray
    399   add InputArray Calorimeter/eflowTracks
    400   add InputArray Calorimeter/eflowTowers
     401  add InputArray EFlowMerger/eflow
    401402  set MomentumOutputArray momentum
    402403}
     
    457458
    458459 # scale formula for jets
    459   set ScaleFormula {1.08}
     460  set ScaleFormula {1.00}
    460461}
    461462
     
    533534##################
    534535
     536# tracks, towers and eflow objects are not stored by default in the output.
     537# if needed (for jet constituent or other studies), uncomment the relevant
     538# "add Branch ..." lines.
     539
    535540module TreeWriter TreeWriter {
    536541# add Branch InputArray BranchName BranchClass
     542 
    537543  add Branch Delphes/allParticles Particle GenParticle
    538   add Branch TrackMerger/tracks Track Track
    539   add Branch Calorimeter/towers Tower Tower
     544
     545#  add Branch TrackMerger/tracks Track Track
     546#  add Branch Calorimeter/towers Tower Tower
    540547  add Branch Calorimeter/eflowTracks EFlowTrack Track
    541   add Branch Calorimeter/eflowTowers EFlowTower Tower
     548  add Branch Calorimeter/eflowPhotons EFlowPhoton Tower
     549  add Branch Calorimeter/eflowNeutralHadrons EFlowNeutralHadron Tower
     550 
    542551  add Branch GenJetFinder/jets GenJet Jet
    543552  add Branch UniqueObjectFinder/jets Jet Jet
Note: See TracChangeset for help on using the changeset viewer.