Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:01

0001 import FWCore.ParameterSet.Config as cms
0002 import SimTracker.TrackAssociation.tpSelectorByGenDefault_cfi as _mod
0003 
0004 prunedTrackingParticles = _mod.tpSelectorByGenDefault.clone(
0005     select = [
0006         "drop  *", # this is the default
0007         "keep++ (400 < abs(pdgId) < 600) || (4000 < abs(pdgId) < 6000)",   # keep decays for BPH studies
0008         "drop status != 1",                                                # keep only status == 1
0009         "drop charge == 0"
0010     ]
0011 )