-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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 HARVEST step to SKIM WF for Run3 #42277
Conversation
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-42277/36302
|
A new Pull Request was created by @youyingli (You-Ying Li) for master. It involves the following packages:
@cmsbuild, @bbilin, @srimanob, @sunilUIET, @AdrianoDee can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
test parameters:
|
@cmsbuild please test |
-1 Failed Tests: RelVals RelVals
|
The error happens when running
However, this never happens when running "standard" and "skim" separately as original skim wf
Strange! Any suggestion? |
My understanding is the following.
[*] diff --git a/DPGAnalysis/Skims/python/WElectronSkim_cff.py b/DPGAnalysis/Skims/python/WElectronSkim_cff.py
index 1d31286b028..139c6fb9e48 100644
--- a/DPGAnalysis/Skims/python/WElectronSkim_cff.py
+++ b/DPGAnalysis/Skims/python/WElectronSkim_cff.py
@@ -104,10 +104,21 @@ PassingHLT = cms.EDProducer("trgMatchGsfElectronProducer",
hltTags = cms.untracked.string( HLTPath ),
triggerEventTag = cms.untracked.InputTag("hltTriggerSummaryAOD","",HLTProcessName),
triggerResultsTag = cms.untracked.InputTag("TriggerResults","",HLTProcessName),
- stageL1Trigger = cms.uint32(1)
+ stageL1Trigger = cms.uint32(1),
+ # Stage-1 L1T inputs
+ l1GtRecordInputTag = cms.InputTag('gtDigis'),
+ l1GtReadoutRecordInputTag = cms.InputTag('gtDigis'),
)
from Configuration.Eras.Modifier_stage2L1Trigger_cff import stage2L1Trigger
-stage2L1Trigger.toModify(PassingHLT, stageL1Trigger = 2)
+stage2L1Trigger.toModify(PassingHLT,
+ stageL1Trigger = 2,
+ # Stage-2 L1T inputs
+ l1tAlgBlkInputTag = cms.InputTag('gtStage2Digis'),
+ l1tExtBlkInputTag = cms.InputTag('gtStage2Digis'),
+ # remove Stage-1 L1T inputs
+ l1GtRecordInputTag = None,
+ l1GtReadoutRecordInputTag = None,
+)
## _____ ____ __ _ _ _ _
## |_ _|_ _ __ _ | _ \ ___ / _(_)_ __ (_) |_(_) ___ _ __ |
@youyingli |
If I'm understanding the problem as stated correctly (the presence of |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-42277/36305
|
@cmsbuild please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-8af22f/33720/summary.html Comparison SummarySummary:
|
@srimanob @sunilUIET please consider signing this PR |
+pdmv |
+Upgrade |
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @perrotta, @dpiparo, @rappoccio (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
Move SKIM process to step3 from step4 in Run3 skim WF and add HARVEST step to step4 i.e. modify
from
to
The PR tries to fix the HARVEST missing mentioned in #42229 (comment).
Backport of the PR will be prepared after tests approved.