Changeset 94f8f5f in git for cards/CMS_PhaseII
- Timestamp:
- Aug 16, 2019, 11:13:50 AM (5 years ago)
- Branches:
- ImprovedOutputFile, Timing, master
- Children:
- 7692efc
- Parents:
- 0453894
- Location:
- cards/CMS_PhaseII
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/CMS_PhaseII/CMS_PhaseII_noPU_HFnose_v0.tcl
r0453894 r94f8f5f 69 69 70 70 UniqueObjectFinder 71 GenParticleFilter 71 72 72 73 ScalarHT … … 928 929 929 930 # scale formula for jets 930 set ScaleFormula { sqrt( (2.5 - 0.15*(abs(eta)))^2 / pt + 1.0 )}931 set ScaleFormula {1.0} 931 932 } 932 933 … … 1160 1161 } 1161 1162 1163 ############################################################################################################### 1164 # StatusPidFilter: this module removes all generated particles except electrons, muons, taus, and status == 3 # 1165 ############################################################################################################### 1166 1167 module StatusPidFilter GenParticleFilter { 1168 1169 set InputArray Delphes/allParticles 1170 set OutputArray filteredParticles 1171 set PTMin 0.0 1172 1173 } 1174 1175 1162 1176 ################## 1163 1177 # ROOT tree writer … … 1170 1184 module TreeWriter TreeWriter { 1171 1185 # add Branch InputArray BranchName BranchClass 1172 add Branch Delphes/allParticles Particle GenParticle 1173 1174 add Branch TrackMerger/tracks Track Track 1175 add Branch Calorimeter/towers Tower Tower 1176 1177 add Branch HCal/eflowTracks EFlowTrack Track 1178 add Branch PhotonEnergySmearing/eflowPhotons EFlowPhoton Tower 1179 add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower 1186 # add Branch Delphes/allParticles Particle GenParticle 1187 add Branch GenParticleFilter/filteredParticles Particle GenParticle 1188 1189 1190 # add Branch TrackMerger/tracks Track Track 1191 # add Branch Calorimeter/towers Tower Tower 1192 1193 # add Branch HCal/eflowTracks EFlowTrack Track 1194 # add Branch PhotonEnergySmearing/eflowPhotons EFlowPhoton Tower 1195 # add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower 1180 1196 1181 1197 add Branch GenJetFinder/jets GenJet Jet -
cards/CMS_PhaseII/CMS_PhaseII_noPU_v0.tcl
r0453894 r94f8f5f 69 69 70 70 UniqueObjectFinder 71 GenParticleFilter 71 72 72 73 ScalarHT … … 691 692 (abs(eta) > 2.5 && abs(eta) <= 3.0) * (pt > 35.0 && pt <= 50.0) * (0.830) + 692 693 (abs(eta) > 2.5 && abs(eta) <= 3.0) * (pt > 50.0 && pt <= 14000.0) * (0.919) + 693 (abs(eta) > 3.0) * (0.00) 694 } 694 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 4.0 && pt <= 6.0) * (0.049) + 695 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 6.0 && pt <= 8.0) * (0.152) + 696 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 8.0 && pt <= 10.0) * (0.436) + 697 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 10.0 && pt <= 20.0) * (0.679) + 698 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 20.0 && pt <= 35.0) * (0.778) + 699 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 35.0 && pt <= 50.0) * (0.830) + 700 (abs(eta) > 3.0 && abs(eta) <= 4.0) * (pt > 50.0 && pt <= 14000.0) * (0.919) 701 } 702 695 703 } 696 704 … … 921 929 922 930 # scale formula for jets 923 set ScaleFormula { sqrt( (2.5 - 0.15*(abs(eta)))^2 / pt + 1.0 )}931 set ScaleFormula {1.0} 924 932 } 925 933 … … 1154 1162 } 1155 1163 1164 ############################################################################################################### 1165 # StatusPidFilter: this module removes all generated particles except electrons, muons, taus, and status == 3 # 1166 ############################################################################################################### 1167 1168 module StatusPidFilter GenParticleFilter { 1169 1170 set InputArray Delphes/allParticles 1171 set OutputArray filteredParticles 1172 set PTMin 0.0 1173 1174 } 1175 1176 1156 1177 ################## 1157 1178 # ROOT tree writer … … 1164 1185 module TreeWriter TreeWriter { 1165 1186 # add Branch InputArray BranchName BranchClass 1166 add Branch Delphes/allParticles Particle GenParticle 1167 1168 add Branch TrackMerger/tracks Track Track 1169 add Branch Calorimeter/towers Tower Tower 1170 1171 add Branch HCal/eflowTracks EFlowTrack Track 1172 add Branch PhotonEnergySmearing/eflowPhotons EFlowPhoton Tower 1173 add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower 1187 # add Branch Delphes/allParticles Particle GenParticle 1188 add Branch GenParticleFilter/filteredParticles Particle GenParticle 1189 1190 # add Branch TrackMerger/tracks Track Track 1191 # add Branch Calorimeter/towers Tower Tower 1192 1193 # add Branch HCal/eflowTracks EFlowTrack Track 1194 # add Branch PhotonEnergySmearing/eflowPhotons EFlowPhoton Tower 1195 # add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower 1174 1196 1175 1197 add Branch GenJetFinder/jets GenJet Jet
Note:
See TracChangeset
for help on using the changeset viewer.