-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PbPbHighPtJet skim, for 2024 datataking, backport to 14_1_X
- Loading branch information
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# HLT PU-subtracted AK4 Calo. Jet trigger, highest threshold w/ full eta coverage | ||
import HLTrigger.HLTfilters.hltHighLevel_cfi | ||
hltPbPbHighPtJet = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone() | ||
hltPbPbHighPtJet.HLTPaths = ["HLT_HIPuAK4CaloJet120Eta5p1_v*"] | ||
hltPbPbHighPtJet.throw = False | ||
hltPbPbHighPtJet.andOr = True | ||
|
||
# At reco, add filters kicking pT up to 300 GeV | ||
jetPtCut = 300 | ||
jetEtaCut = 2.4 | ||
pfJetSelector = cms.EDFilter( | ||
"EtaPtMinCandViewSelector", | ||
src = cms.InputTag("akCs4PFJets"), | ||
ptMin = cms.double(jetPtCut), | ||
etaMin = cms.double(-jetEtaCut), | ||
etaMax = cms.double(jetEtaCut) | ||
) | ||
pfJetFilter = cms.EDFilter( | ||
"CandViewCountFilter", | ||
src = cms.InputTag("pfJetSelector"), | ||
minNumber = cms.uint32(1) | ||
) | ||
|
||
# PbPb High-pT Jets skim sequence | ||
pbpbHighPtJetSkimSequence = cms.Sequence(hltPbPbHighPtJet * pfJetSelector * pfJetFilter) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters