Changes in / [1c1c9c2:2bb6079] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/delphes_card_IDEA.tcl
r1c1c9c2 r2bb6079 68 68 TauTagging 69 69 70 UniqueObjectFinder71 72 ScalarHT73 70 TreeWriter 74 71 } … … 80 77 module TruthVertexFinder TruthVertexFinder { 81 78 82 ## below this distance two vertices are assumed to be the same79 ## below this distance two vertices are assumed to be merged 83 80 set Resolution 1E-06 84 81 … … 120 117 set EfficiencyFormula { 121 118 (abs(eta) > 3.0) * (0.000) + 122 ( energy>= 0.5) * (abs(eta) <= 3.0) * (0.997) +123 ( energy < 0.5 && energy>= 0.3) * (abs(eta) <= 3.0) * (0.65) +124 ( energy< 0.3) * (abs(eta) <= 3.0) * (0.06)119 (pt >= 0.5) * (abs(eta) <= 3.0) * (0.997) + 120 (pt < 0.5 && pt >= 0.3) * (abs(eta) <= 3.0) * (0.65) + 121 (pt < 0.3) * (abs(eta) <= 3.0) * (0.06) 125 122 } 126 123 } … … 140 137 set EfficiencyFormula { 141 138 (abs(eta) > 3.0) * (0.000) + 142 ( energy>= 0.5) * (abs(eta) <= 3.0) * (0.997) +143 ( energy < 0.5 && energy>= 0.3) * (abs(eta) <= 3.0) * (0.65) +144 ( energy< 0.3) * (abs(eta) <= 3.0) * (0.06)139 (pt >= 0.5) * (abs(eta) <= 3.0) * (0.997) + 140 (pt < 0.5 && pt >= 0.3) * (abs(eta) <= 3.0) * (0.65) + 141 (pt < 0.3) * (abs(eta) <= 3.0) * (0.06) 145 142 } 146 143 } … … 158 155 set EfficiencyFormula { 159 156 (abs(eta) > 3.0) * (0.000) + 160 ( energy>= 0.5) * (abs(eta) <= 3.0) * (0.997) +161 ( energy < 0.5 && energy>= 0.3) * (abs(eta) <= 3.0) * (0.65) +162 ( energy< 0.3) * (abs(eta) <= 3.0) * (0.06)157 (pt >= 0.5) * (abs(eta) <= 3.0) * (0.997) + 158 (pt < 0.5 && pt >= 0.3) * (abs(eta) <= 3.0) * (0.65) + 159 (pt < 0.3) * (abs(eta) <= 3.0) * (0.06) 163 160 } 164 161 } … … 417 414 418 415 # 0: assume vertex time tV from MC Truth (ideal case) 419 # 1: assume vertex time tV =0416 # 1: assume vertex time tV = 0 420 417 # 2: calculate vertex time as vertex TOF, assuming tPV=0 418 421 419 set VertexTimeMode 2 422 423 } 424 420 } 425 421 426 422 ############## … … 829 825 830 826 831 #####################################################832 # Find uniquely identified photons/electrons/tau/jets833 #####################################################834 835 module UniqueObjectFinder UniqueObjectFinder {836 837 set UseUniqueID true838 # earlier arrays take precedence over later ones839 # add InputArray InputArray OutputArray840 add InputArray PhotonIsolation/photons photons841 add InputArray ElectronIsolation/electrons electrons842 add InputArray MuonIsolation/muons muons843 add InputArray JetEnergyScale/jets jets844 }845 846 827 847 828 ################## … … 857 838 858 839 add Branch Delphes/allParticles Particle GenParticle 840 add Branch TruthVertexFinder/vertices GenVertex Vertex 859 841 860 842 add Branch TrackMerger/tracks Track Track … … 874 856 add Branch GenMissingET/momentum GenMissingET MissingET 875 857 876 add Branch UniqueObjectFinder/jets Jet Jet877 add Branch UniqueObjectFinder/electrons Electron Electron878 add Branch UniqueObjectFinder/photons Photon Photon879 add Branch UniqueObjectFinder/muons Muon Muon858 add Branch JetEnergyScale/jets Jet Jet 859 add Branch ElectronIsolation/electrons Electron Electron 860 add Branch PhotonIsolation/photons Photon Photon 861 add Branch MuonIsolation/muons Muon Muon 880 862 881 863 add Branch MissingET/momentum MissingET MissingET 882 add Branch ScalarHT/energy ScalarHT ScalarHT883 864 884 865 # add Info InfoName InfoValue
Note:
See TracChangeset
for help on using the changeset viewer.