Changeset 49234af in git for examples/delphes_card_FCC_basic.tcl
- Timestamp:
- Dec 9, 2014, 1:27:13 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 37deb3b, 9e991f8
- Parents:
- f6b6ee7 (diff), e7e90df (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/delphes_card_FCC_basic.tcl
rf6b6ee7 r49234af 24 24 25 25 MissingET 26 26 27 NeutrinoFilter 27 28 GenJetFinder 28 29 FastJetFinder … … 394 395 395 396 ##################### 397 # Neutrino Filter 398 ##################### 399 400 module PdgCodeFilter NeutrinoFilter { 401 402 set InputArray Delphes/stableParticles 403 set OutputArray filteredParticles 404 405 set PTMin 0.0 406 407 add PdgCode {12} 408 add PdgCode {14} 409 add PdgCode {16} 410 add PdgCode {-12} 411 add PdgCode {-14} 412 add PdgCode {-16} 413 414 } 415 416 417 ##################### 396 418 # MC truth jet finder 397 419 ##################### 398 420 399 421 module FastJetFinder GenJetFinder { 400 set InputArray Delphes/stableParticles422 set InputArray NeutrinoFilter/filteredParticles 401 423 402 424 set OutputArray jets
Note:
See TracChangeset
for help on using the changeset viewer.