-
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.
- Loading branch information
1 parent
91afeb5
commit c2a70b1
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