-
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.
Merge pull request #42783 from mmusich/phase2_hlt_tracking_monitoring
Add a Phase2 HLT tracking DQM monitoring
- Loading branch information
Showing
9 changed files
with
85 additions
and
2 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
16 changes: 16 additions & 0 deletions
16
DQMOffline/Trigger/python/SiTrackerPhase2_OfflineMonitoring_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,16 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from DQM.SiTrackerPhase2.Phase2ITMonitorCluster_cff import * | ||
from DQM.SiTrackerPhase2.Phase2OTMonitorCluster_cff import * | ||
|
||
HLTclusterMonitorIT = clusterMonitorIT.clone( | ||
TopFolderName = cms.string('HLT/TrackerPhase2ITCluster'), | ||
InnerPixelClusterSource = cms.InputTag('siPixelClusters','','HLT'), | ||
) | ||
HLTclusterMonitorOT = clusterMonitorOT.clone( | ||
TopFolderName = cms.string('HLT/TrackerPhase2OTCluster'), | ||
clusterSrc = cms.InputTag('siPhase2Clusters','','HLT'), | ||
) | ||
|
||
HLTtrackerphase2DQMSource = cms.Sequence(HLTclusterMonitorIT + | ||
HLTclusterMonitorOT) | ||
|
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