-
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.
Update all trigger paths with the HLTBeginSequence and HLTEndSequence
- Loading branch information
Showing
17 changed files
with
60 additions
and
15 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
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
4 changes: 3 additions & 1 deletion
4
HLTrigger/Configuration/python/HLT_75e33/paths/L1T_PFPuppiMET220off_cfi.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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.l1tPFPuppiMET220off_cfi import * | ||
from ..sequences.HLTBeginSequence_cfi import * | ||
from ..sequences.HLTEndSequence_cfi import * | ||
|
||
L1T_PFPuppiMET220off = cms.Path(l1tPFPuppiMET220off) | ||
L1T_PFPuppiMET220off = cms.Path(HLTBeginSequence+l1tPFPuppiMET220off+HLTEndSequence) |
4 changes: 3 additions & 1 deletion
4
HLTrigger/Configuration/python/HLT_75e33/paths/L1T_SinglePFPuppiJet230off_cfi.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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.l1tSinglePFPuppiJet230off_cfi import * | ||
from ..sequences.HLTBeginSequence_cfi import * | ||
from ..sequences.HLTEndSequence_cfi import * | ||
|
||
L1T_SinglePFPuppiJet230off = cms.Path(l1tSinglePFPuppiJet230off) | ||
L1T_SinglePFPuppiJet230off = cms.Path(HLTBeginSequence+l1tSinglePFPuppiJet230off+HLTEndSequence) |
6 changes: 6 additions & 0 deletions
6
HLTrigger/Configuration/python/HLT_75e33/sequences/HLTBeamSpot_cfi.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,6 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltScalersRawToDigi_cfi import * | ||
from ..modules.offlineBeamSpot_cfi import * | ||
|
||
HLTBeamSpot = cms.Sequence(hltScalersRawToDigi+offlineBeamSpot) |
6 changes: 6 additions & 0 deletions
6
HLTrigger/Configuration/python/HLT_75e33/sequences/HLTBeginSequence_cfi.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,6 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltTriggerType_cfi import * | ||
from ..sequences.HLTBeamSpot_cfi import * | ||
|
||
HLTBeginSequence = cms.Sequence(hltTriggerType+HLTBeamSpot) |
5 changes: 5 additions & 0 deletions
5
HLTrigger/Configuration/python/HLT_75e33/sequences/HLTEndSequence_cfi.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,5 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltBoolEnd_cfi import * | ||
|
||
HLTEndSequence = cms.Sequence(hltBoolEnd) |