Fork me on GitHub

Changes between Version 44 and Version 45 of WorkBook/Modules


Ignore:
Timestamp:
Dec 18, 2014, 1:38:12 AM (10 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/Modules

    v44 v45  
    345345  - Bz
    346346
     347## PdgCodeFilter
     348
     349Removes particles with specific pdg code from given collection.
     350
     351 - input:
     352  - !InputArray
     353 - output:
     354  - !OutputArray
     355 - parameters:
     356  - PTMin (min pt of particle to be removed)
     357  - !PdgCode (list of pdg codes to be vetoed)
     358
     359 - Example (to remove neutrinos from stable gen particles):
     360
     361{{{
     362module PdgCodeFilter NeutrinoFilter {
     363  set InputArray Delphes/stableParticles
     364  set OutputArray filteredParticles
     365  set PTMin 0.0
     366  add PdgCode {12}
     367  add PdgCode {14}
     368  add PdgCode {16}
     369  add PdgCode {-12}
     370  add PdgCode {-14}
     371  add PdgCode {-16}
     372}
     373}}}
     374
    347375== !TauTagging ==
    348376