CMS 3D CMS Logo

tauHadronDecayFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 tauHadronDecayFilter = cms.EDFilter("TauHadronDecayFilter",
4  # using FastSimulation/Event
5  particles = cms.InputTag("particleFlowBlock"),
6  ParticleFilter = cms.PSet(
7  # Particles with |eta| > etaMax (momentum direction at primary vertex)
8  # are not simulated
9  etaMax = cms.double(10.0),
10  # Charged particles with pT < pTMin (GeV/c) are not simulated
11  pTMin = cms.double(0.0),
12  # Particles with energy smaller than EMin (GeV) are not simulated
13  EMin = cms.double(0.0)
14  )
15 )
16 
17