Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:44

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 jpsiMuMuTrigCommon = cms.PSet(filterType = cms.untracked.string("HadronDecayGenEvtSelector"),
0004                               hadrons      = cms.vint32(443),
0005                               hadronStatus = cms.vint32(2),
0006                               decays      = cms.int32(13),
0007                               decayStatus = cms.int32(1),
0008                               hadronEtaMax = cms.vdouble(999.),
0009                               hadronEtaMin = cms.vdouble(-999.,),
0010                               hadronPMin   = cms.vdouble(0.),
0011                               hadronPtMax  = cms.vdouble(999.),
0012                               hadronPtMin  = cms.vdouble(0.),
0013                               decayEtaMax = cms.double(2.5),
0014                               decayEtaMin = cms.double(-2.5),
0015                               decayPMin   = cms.double(2.5),
0016                               decayPtMax  = cms.double(999),
0017                               decayPtMin  = cms.double(0.),
0018                               decayNtrig  = cms.int32(2)
0019                               )
0020 
0021 jpsiMuMuTrigPt03   = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(3.),
0022                                               hadronPtMin  = cms.vdouble(0.)
0023                                               )
0024 
0025 
0026 jpsiMuMuTrigPt36   = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(6.),
0027                                               hadronPtMin  = cms.vdouble(3.)
0028                                               )
0029 
0030 jpsiMuMuTrigPt69   = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(9.),
0031                                               hadronPtMin  = cms.vdouble(6.)
0032                                               )
0033 
0034 jpsiMuMuTrigPt912  = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(12.),
0035                                               hadronPtMin  = cms.vdouble(9.)
0036                                               )
0037 
0038 jpsiMuMuTrigPt1215 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(15.),
0039                                               hadronPtMin  = cms.vdouble(12.),
0040                                               )
0041 jpsiMuMuTrigPt1530 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(30.),
0042                                               hadronPtMin  = cms.vdouble(15.),
0043                                               )
0044 
0045 
0046 jpsiMuMuTrigPt1518 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(18.),
0047                                               hadronPtMin  = cms.vdouble(15.)
0048                                               )
0049 
0050 jpsiMuMuTrigPt1821 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(21.),
0051                                               hadronPtMin  = cms.vdouble(18.)
0052                                               )
0053 
0054 jpsiMuMuTrigPt2124 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(24.),
0055                                               hadronPtMin  = cms.vdouble(21.)
0056                                               )
0057 
0058 jpsiMuMuTrigPt2427 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(27.),
0059                                               hadronPtMin  = cms.vdouble(24.)
0060                                               )
0061 
0062 jpsiMuMuTrigPt2730 = jpsiMuMuTrigCommon.clone(hadronPtMax  = cms.vdouble(30.),
0063                                               hadronPtMin  = cms.vdouble(27.)
0064                                               )
0065 
0066 
0067 
0068 
0069 
0070 
0071 
0072