CMS 3D CMS Logo

MCSingleParticleYPtBmeson_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #filter major b-meson "in the acceptance of the detector", only one match is enough, anti-particles are checked by default
4 bmesonFilter = cms.EDFilter("MCSingleParticleYPt",
5  ParticleID = cms.untracked.vint32(511,521,531,541),
6  MinPt = cms.untracked.vdouble(1.5,1.5,1.5,1.5),
7  MinY = cms.untracked.vdouble(-3.,-3.,-3.,-3.),
8  MaxY = cms.untracked.vdouble(3.,3.,3.,3.)
9 )