-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Phase2 HLT tracking DQM monitoring #42783
Merged
cmsbuild
merged 5 commits into
cms-sw:master
from
mmusich:phase2_hlt_tracking_monitoring
Sep 18, 2023
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b4b2bdd
add hltPhase2PixelTracks and hltPhase2PixelVertices to FEVTDEBUGHLTEv…
mmusich 4faa3f2
minimal set of modifications in order to run the HLT tracking monitor…
mmusich 9ead33b
allow HLTMon sequence to run in phase-2
mmusich fa291dd
substitute the Phase-1 pixel HLT offline monitoring with the Phase-2 …
mmusich d9adfea
add protection against missing input collections in Phase2IT{OT}Monit…
mmusich File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
phase2_common
is not more appropriate here, to represent what it will do (i.e. for future when other modules will be added back) ?However, it should give the same result as
phase2_tracker
is always in phase-2 workflow.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well at the moment, it's fully tracker specific, so I'd rather not change it. In case it gets updated you can make sure the appropriate modifier is used
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, thx.