diff --git a/Configuration/Skimming/python/PbPb_EMuSkim_cff.py b/Configuration/Skimming/python/PbPb_EMuSkim_cff.py index 9956f54795839..2b5d3f001054f 100644 --- a/Configuration/Skimming/python/PbPb_EMuSkim_cff.py +++ b/Configuration/Skimming/python/PbPb_EMuSkim_cff.py @@ -3,7 +3,7 @@ # HLT dimuon trigger import HLTrigger.HLTfilters.hltHighLevel_cfi hltEMuHI = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone() -hltEMuHI.HLTPaths = ["HLT_HIL1Mu5Eta2p5_Ele20Gsf_v*"] +hltEMuHI.HLTPaths = ["HLT_HIEle*Gsf_v*","HLT_HIL3SingleMu*_Open_v*"] hltEMuHI.throw = False hltEMuHI.andOr = True @@ -17,12 +17,12 @@ # single lepton selector electronSelectorForEMu = cms.EDFilter("GsfElectronRefSelector", src = cms.InputTag("gedGsfElectrons"), - cut = cms.string("pt > 20 && abs(eta)<1.44") + cut = cms.string("pt > 20") ) muonSelectorForEMu = cms.EDFilter("MuonSelector", src = cms.InputTag("muons"), - cut = cms.string("(isTrackerMuon && isGlobalMuon) && pt > 20."), + cut = cms.string("isPFMuon && isGlobalMuon && pt > 20."), filter = cms.bool(True) ) diff --git a/Configuration/Skimming/python/PbPb_ZEESkim_cff.py b/Configuration/Skimming/python/PbPb_ZEESkim_cff.py index e779f20cb6fc2..b7d53ed183f28 100644 --- a/Configuration/Skimming/python/PbPb_ZEESkim_cff.py +++ b/Configuration/Skimming/python/PbPb_ZEESkim_cff.py @@ -4,7 +4,7 @@ # HLT dimuon trigger import HLTrigger.HLTfilters.hltHighLevel_cfi hltZEEHI = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone() -hltZEEHI.HLTPaths = ["HLT_HIDoubleEle10Gsf_v*"] +hltZEEHI.HLTPaths = ["HLT_HIEle*Gsf_v*"] hltZEEHI.throw = False hltZEEHI.andOr = True @@ -18,14 +18,14 @@ # single lepton selector goodElectronsForZEE = cms.EDFilter("GsfElectronRefSelector", src = cms.InputTag("gedGsfElectrons"), - cut = cms.string("pt > 25 && abs(eta)<1.44") + cut = cms.string("pt > 25") ) ## dilepton selectors diElectronsForZEE = cms.EDProducer("CandViewShallowCloneCombiner", decay = cms.string("goodElectronsForZEE goodElectronsForZEE"), checkCharge = cms.bool(False), - cut = cms.string("mass > 80 && mass < 110") + cut = cms.string("mass > 60") ) # dilepton counter diff --git a/Configuration/Skimming/python/PbPb_ZMMSkim_cff.py b/Configuration/Skimming/python/PbPb_ZMMSkim_cff.py index ca4315148b9e5..d897f1808d84e 100644 --- a/Configuration/Skimming/python/PbPb_ZMMSkim_cff.py +++ b/Configuration/Skimming/python/PbPb_ZMMSkim_cff.py @@ -3,7 +3,7 @@ # HLT dimuon trigger import HLTrigger.HLTfilters.hltHighLevel_cfi hltZMMPbPb = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone() -hltZMMPbPb.HLTPaths = ["HLT_HIL1DoubleMu10_v*"] +hltZMMPbPb.HLTPaths = ["HLT_HIL3SingleMu*_Open_v*"] hltZMMPbPb.throw = False hltZMMPbPb.andOr = True @@ -17,7 +17,7 @@ # selection of dimuons with mass in Z range muonSelectorForZMM = cms.EDFilter("MuonSelector", src = cms.InputTag("muons"), - cut = cms.string("(isTrackerMuon && isGlobalMuon) && pt > 25."), + cut = cms.string("(isPFMuon && isGlobalMuon) && pt > 20."), filter = cms.bool(True) ) @@ -28,7 +28,7 @@ dimuonMassCutForZMM = cms.EDProducer("CandViewShallowCloneCombiner", checkCharge = cms.bool(True), - cut = cms.string(' 80 < mass < 110'), + cut = cms.string('mass > 60'), decay = cms.string("muonSelectorForZMM@+ muonSelectorForZMM@-") )