Skip to content
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 DQM / Validation monitoring for hltInitialStep and hltHighPtTriplet tracks in the Phase2 HLT menu #46823

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Configuration/EventContent/python/EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,8 @@ def SwapKeepAndDrop(l):
'keep *_hltPhase2PixelTracks_*_*',
'keep *_hltPhase2PixelVertices_*_*',
'keep *_hltGeneralTracks_*_*',
'keep *_hltInitialStepTrackSelectionHighPurity_*_*',
'keep *_hltHighPtTripletStepTrackSelectionHighPurity_*_*',
'keep *_hltOfflinePrimaryVertices_*_*',
'keep *_hltHGCalRecHit_*_*'
])
Expand Down
16 changes: 15 additions & 1 deletion DQMOffline/Trigger/python/TrackingMonitoring_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,20 @@
TrackProducer = 'hltGeneralTracks',
allTrackProducer = 'hltGeneralTracks')

iterInitialStepMonitoringHLT = iterHLTTracksMonitoringHLT.clone(
primaryVertex = 'hltPhase2PixelVertices',
FolderName = 'HLT/Tracking/hltInitialStepTrackSelectionHighPurity',
TrackProducer = 'hltInitialStepTrackSelectionHighPurity',
allTrackProducer = 'hltInitialStepTrackSelectionHighPurity',
)

iterHighPtTripletsMonitoringHLT = iterHLTTracksMonitoringHLT.clone(
primaryVertex = 'hltPhase2PixelVertices',
FolderName = 'HLT/Tracking/hltHighPtTripletStepTrackSelectionHighPurity',
TrackProducer = 'hltHighPtTripletStepTrackSelectionHighPurity',
allTrackProducer = 'hltHighPtTripletStepTrackSelectionHighPurity',
)

iter3TracksMonitoringHLT = trackingMonHLT.clone(
FolderName = 'HLT/Tracking/iter3Merged',
TrackProducer = 'hltIter3Merged',
Expand Down Expand Up @@ -249,7 +263,7 @@

from Configuration.Eras.Modifier_run3_common_cff import run3_common
run3_common.toReplaceWith(trackingMonitorHLT, cms.Sequence(pixelTracksMonitoringHLT + iterHLTTracksMonitoringHLT + doubletRecoveryHPTracksMonitoringHLT )) # + iter0HPTracksMonitoringHLT ))
phase2_tracker.toReplaceWith(trackingMonitorHLT, cms.Sequence(pixelTracksMonitoringHLT + iterHLTTracksMonitoringHLT))
phase2_tracker.toReplaceWith(trackingMonitorHLT, cms.Sequence(pixelTracksMonitoringHLT + iterHLTTracksMonitoringHLT + iterInitialStepMonitoringHLT + iterHighPtTripletsMonitoringHLT))

run3_common.toReplaceWith(trackingMonitorHLTall, cms.Sequence(pixelTracksMonitoringHLT + iter0TracksMonitoringHLT + iterHLTTracksMonitoringHLT))
run3_common.toReplaceWith(egmTrackingMonitorHLT, cms.Sequence(gsfTracksMonitoringHLT))
2 changes: 1 addition & 1 deletion Validation/RecoTrack/python/HLTmultiTrackValidator_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def _modifyForRun3(trackvalidator):
run3_common.toModify(hltTrackValidator, _modifyForRun3)

def _modifyForPhase2(trackvalidator):
trackvalidator.label = ["hltGeneralTracks","hltPhase2PixelTracks"]
trackvalidator.label = ["hltGeneralTracks", "hltPhase2PixelTracks", "hltInitialStepTrackSelectionHighPurity", "hltHighPtTripletStepTrackSelectionHighPurity"]

from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
phase2_tracker.toModify(hltTrackValidator, _modifyForPhase2)