CMS 3D CMS Logo

genParticleCustomSelector_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 genParticleCustomSelector = cms.EDFilter("GenParticleCustomSelector",
4  src = cms.InputTag("genParticles"),
5  chargedOnly = cms.bool(True),
6  status = cms.int32(1),
7  pdgId = cms.vint32(),
8  tip = cms.double(3.5),
9  minRapidity = cms.double(-2.4),
10  lip = cms.double(30.0),
11  ptMin = cms.double(0.9),
12  maxRapidity = cms.double(2.4),
13 )
14 
15 
16