File indexing completed on 2024-04-06 12:13:44
0001 import FWCore.ParameterSet.Config as cms
0002
0003 bJpsiMuMuTrigCommon = cms.PSet(filterType = cms.untracked.string("PartonHadronDecayGenEvtSelector"),
0004 partons = cms.vint32(5),
0005 partonStatus = cms.vint32(2),
0006 partonEtaMax = cms.vdouble(999.),
0007 partonPtMin = cms.vdouble(0.),
0008 hadrons = cms.vint32(443),
0009 hadronStatus = cms.vint32(2),
0010 hadronEtaMax = cms.vdouble(999.),
0011 hadronEtaMin = cms.vdouble(-999.),
0012 hadronPMin = cms.vdouble(0.),
0013 hadronPtMax = cms.vdouble(999.),
0014 hadronPtMin = cms.vdouble(0.),
0015 decays = cms.int32(13),
0016 decayStatus = cms.int32(1),
0017 decayEtaMax = cms.double(2.5),
0018 decayEtaMin = cms.double(-2.5),
0019 decayPMin = cms.double(2.5),
0020 decayPtMax = cms.double(999),
0021 decayPtMin = cms.double(0.),
0022 decayNtrig = cms.int32(2)
0023 )
0024
0025 bJpsiMuMuTrigPt03 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(3.),
0026 hadronPtMin = cms.vdouble(0.)
0027 )
0028
0029
0030 bJpsiMuMuTrigPt36 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(6.),
0031 hadronPtMin = cms.vdouble(3.)
0032 )
0033
0034 bJpsiMuMuTrigPt69 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(9.),
0035 hadronPtMin = cms.vdouble(6.)
0036 )
0037
0038 bJpsiMuMuTrigPt912 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(12.),
0039 hadronPtMin = cms.vdouble(9.)
0040 )
0041
0042 bJpsiMuMuTrigPt1215 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(15.),
0043 hadronPtMin = cms.vdouble(12.),
0044 )
0045 bJpsiMuMuTrigPt1530 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(30.),
0046 hadronPtMin = cms.vdouble(15.),
0047 )
0048
0049
0050 bJpsiMuMuTrigPt1518 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(18.),
0051 hadronPtMin = cms.vdouble(15.)
0052 )
0053
0054 bJpsiMuMuTrigPt1821 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(21.),
0055 hadronPtMin = cms.vdouble(18.)
0056 )
0057
0058 bJpsiMuMuTrigPt2124 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(24.),
0059 hadronPtMin = cms.vdouble(21.)
0060 )
0061
0062 bJpsiMuMuTrigPt2427 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(27.),
0063 hadronPtMin = cms.vdouble(24.)
0064 )
0065
0066 bJpsiMuMuTrigPt2730 = bJpsiMuMuTrigCommon.clone(hadronPtMax = cms.vdouble(30.),
0067 hadronPtMin = cms.vdouble(27.)
0068 )
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078
0079