-
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 pull request #43940 from LangFelix1/EXOSoftDisplacedVertices_SKIM
[14_0_x Backport] EXOSoftDisplacedVertices skim
- Loading branch information
Showing
3 changed files
with
48 additions
and
5 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
Configuration/Skimming/python/PDWG_EXOSoftDisplacedVertices_cff.py
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,32 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from Configuration.EventContent.EventContent_cff import AODSIMEventContent | ||
EXOSoftDisplacedVerticesSkimContent = AODSIMEventContent.clone() | ||
|
||
import HLTrigger.HLTfilters.hltHighLevel_cfi as _hltHighLevel | ||
|
||
hltSoftDV = _hltHighLevel.hltHighLevel.clone( | ||
throw = False, | ||
andOr = True, | ||
HLTPaths = [ | ||
"HLT_PFHT*_PFMET*_PFMHT*_IDTight_v*", | ||
"HLT_PFMET*_PFMHT*_IDTight_v*", | ||
"HLT_PFMET*_PFMHT*_IDTight_PFHT*_v*", | ||
"HLT_PFMETTypeOne*_PFMHT*_IDTight_v*", | ||
"HLT_PFMETTypeOne*_PFMHT*_IDTight_PFHT*_v*", | ||
"HLT_PFMETNoMu*_PFMHTNoMu*_IDTight_v*", | ||
"HLT_PFMETNoMu*_PFMHTNoMu*_IDTight_PFHT*_v*", | ||
"HLT_MonoCentralPFJet*_PFMETNoMu*_PFMHTNoMu*_IDTight_v*", | ||
"HLT_PFMET*_*Cleaned_v*" | ||
] | ||
) | ||
|
||
softDVSelection=cms.EDFilter("CandViewSelector", | ||
src = cms.InputTag("pfMet"), | ||
cut = cms.string( "pt()>140" ), | ||
filter = cms.bool(True) | ||
) | ||
|
||
EXOSoftDisplacedVerticesSkimSequence = cms.Sequence( | ||
hltSoftDV * softDVSelection | ||
) |
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