Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PbPb skims for 2023 #42735

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Configuration/Skimming/python/PbPb_EMuSkim_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)
)

Expand Down
6 changes: 3 additions & 3 deletions Configuration/Skimming/python/PbPb_ZEESkim_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Configuration/Skimming/python/PbPb_ZMMSkim_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)
)

Expand All @@ -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@-")
)

Expand Down