-
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 #43538 from jordan-martins/my-backport
[Backport to 130X] Adding Two Secondary Datasets for JME POG
- Loading branch information
Showing
4 changed files
with
65 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
#Trigger bit requirement | ||
import HLTrigger.HLTfilters.hltHighLevel_cfi as hlt | ||
EGMJME = hlt.hltHighLevel.clone() | ||
EGMJME.TriggerResultsTag = cms.InputTag( "TriggerResults", "", "HLT" ) | ||
EGMJME.HLTPaths = cms.vstring( | ||
'HLT_Photon110EB_TightID_TightIso*', | ||
'HLT_Photon30EB_TightID_TightIso*', | ||
'HLT_Photon90_R9Id90_HE10_IsoM*', | ||
'HLT_Photon75_R9Id90_HE10_IsoM*', | ||
'HLT_Photon50_R9Id90_HE10_IsoM*', | ||
'HLT_Photon200*') | ||
EGMJME.andOr = cms.bool( True ) | ||
# we want to intentionally throw and exception | ||
# in case it does not match one of the HLT Paths | ||
EGMJME.throw = cms.bool( False ) |
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,13 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
#Trigger bit requirement | ||
import HLTrigger.HLTfilters.hltHighLevel_cfi as hlt | ||
MUOJME = hlt.hltHighLevel.clone() | ||
MUOJME.TriggerResultsTag = cms.InputTag( "TriggerResults", "", "HLT" ) | ||
MUOJME.HLTPaths = cms.vstring( | ||
'HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8*', | ||
) | ||
MUOJME.andOr = cms.bool( True ) | ||
# we want to intentionally throw and exception | ||
# in case it does not match one of the HLT Paths | ||
MUOJME.throw = cms.bool( False ) |
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