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

phase1Pixel era validation additions #12359

Merged
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
5 changes: 5 additions & 0 deletions HLTriggerOffline/Common/python/HLTValidation_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@
+hltbtagValidationSequence
)

# The higgs validation is not compatible with the Phase 1 pixel, so
# take it out if that is active.
from Configuration.StandardSequences.Eras import eras
if eras.phase1Pixel.isChosen():
hltvalidation.remove(HiggsValidationSequence)

# additional producer sequence prior to hltvalidation_fastsim
# to evacuate producers from the EndPath
Expand Down
4 changes: 4 additions & 0 deletions Validation/RecoTrack/python/SiTrackingRecHitsValid_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
from Validation.RecoTrack.SiStripTrackingRecHitsValid_cfi import *
trackingRecHitsValid = cms.Sequence(PixelTrackingRecHitsValid*StripTrackingRecHitsValid)

# If the Phase 1 pixel detector is active, don't run this validation sequence
from Configuration.StandardSequences.Eras import eras
if eras.phase1Pixel.isChosen():
trackingRecHitsValid.remove(PixelTrackingRecHitsValid)