File indexing completed on 2024-04-06 12:01:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 genParticleCustomSelector = cms.EDFilter("GenParticleCustomSelector",
0004 src = cms.InputTag("genParticles"),
0005 chargedOnly = cms.bool(True),
0006 status = cms.int32(1),
0007 pdgId = cms.vint32(),
0008 tip = cms.double(3.5),
0009 minRapidity = cms.double(-2.4),
0010 lip = cms.double(30.0),
0011 ptMin = cms.double(0.9),
0012 maxRapidity = cms.double(2.4),
0013 minPhi = cms.double(-3.2),
0014 maxPhi = cms.double( 3.2),
0015 invertRapidityCut = cms.bool(False)
0016 )
0017
0018
0019