-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'CMSSW_14_1_X' into PbPbSkims2024_141X
- Loading branch information
Showing
77 changed files
with
32,356 additions
and
9,106 deletions.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# HLT UPC pixel thrust trigger | ||
import HLTrigger.HLTfilters.hltHighLevel_cfi | ||
hltUPCMonopole = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone() | ||
hltUPCMonopole.HLTPaths = ["HLT_HIUPC_MinPixelThrust0p8_MaxPixelCluster10000_v*"] | ||
hltUPCMonopole.throw = False | ||
hltUPCMonopole.andOr = True | ||
|
||
from Configuration.Skimming.PDWG_EXOMONOPOLE_cff import EXOMonopoleSkimContent | ||
upcMonopoleSkimContent = EXOMonopoleSkimContent.clone() | ||
upcMonopoleSkimContent.outputCommands.append('keep FEDRawDataCollection_rawDataRepacker_*_*') | ||
|
||
# UPC monopole skim sequence | ||
upcMonopoleSkimSequence = cms.Sequence(hltUPCMonopole) |
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
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
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
Oops, something went wrong.