-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Fix PR #38437 to disable mkFit in pixelLessStep #38565
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
Conversation
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-38565/30814
|
|
A new Pull Request was created by @mmasciov (Mario Masciovecchio) for master. It involves the following packages:
@cmsbuild, @perrotta, @qliphy, @fabiocos, @davidlange6 can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
|
duplicate of #38563 |
|
@mmasciov please add a wf to runTheMatrix so that it can tested. |
|
urgent |
|
type bugfix |
In case it helps: diff --git a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py
index 9ab9381e003..9bf5859d218 100644
--- a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py
+++ b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py
@@ -379,6 +379,27 @@ upgradeWFs['trackingMkFit'].step3 = {
'--procModifiers': 'trackingMkFit'
}
+# NoMkFitPixelLess workflows
+class UpgradeWorkflow_NoMkFitPixelLess(UpgradeWorkflow):
+ def setup_(self, step, stepName, stepDict, k, properties):
+ stepDict[stepName][k] = merge([{'--era': 'Run3_ckfPixelLessStep'}, stepDict[step][k]])
+ def condition(self, fragment, stepList, key, hasHarvest):
+ return fragment=="TTbar_14TeV" and '2021' in key
+upgradeWFs['NoMkFitPixelLess'] = UpgradeWorkflow_NoMkFitPixelLess(
+ steps = [
+ 'Reco',
+ 'RecoNano',
+ 'RecoGlobal',
+ ],
+ PU = [
+ 'Reco',
+ 'RecoNano',
+ 'RecoGlobal',
+ ],
+ suffix = '_NoMkFitPixelLess',
+ offset = 0.71,
+)
+
#DeepCore seeding for JetCore iteration workflow
class UpgradeWorkflow_seedingDeepCore(UpgradeWorkflow):
def setup_(self, step, stepName, stepDict, k, properties):this seems to work.. |
|
@mmusich, just added a commit with this. Sorry for the delay. |
|
test parameters:
|
|
please test |
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-38565/30817
|
|
Pull request #38565 was updated. @perrotta, @jordan-martins, @bbilin, @AdrianoDee, @srimanob, @kskovpen, @qliphy, @fabiocos, @davidlange6 can you please check and sign again. |
|
+1 |
|
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-aecc63/25916/summary.html Comparison Summary@slava77 comparisons for the following workflows were not done due to missing matrix map:
Summary:
|
|
Can we bypass upgrade here? It has nothing to do with it. |
That was indeed my intention. But I wanted to look at the logs of the newly defined wfs first, at least. No specific issues reported, let merge this in master then By the way @mmusich : while looking at the logs I noticed the following warning (unrelated to this fix) that you may be interested in: |
|
+1 |
|
merge |
|
+1 |
|
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 be automatically merged. |
PR description:
This PR offers a fix to PR #38437, that disables mkFit for pixelLessStep, so that the new era is fully recognized.
PR validation:
Standard MTV for SoftQCD (PU=0) sample:
http://uaf-10.t2.ucsd.edu/~mmasciov/MIC/SoftQCD/MTV_SoftQCD_PRFix/
Denominator (blue): default Run3 era
cmsDriver.py step3 --conditions auto:phase1_2022_realistic -s RAW2DIGI,RECO:reconstruction_trackingOnly,VALIDATION:@trackingOnlyValidation,DQM:@trackingOnlyDQM --datatier DQMIO -n 5000 --geometry DB:Extended --era Run3 --eventcontent DQM --no_exec --filein file:/data2/mmasciov/SoftQCD/CMSSW_12_4_0_pre4/src/step2.root --fileout step3_SoftQCD_default.root --python_filename step3_SoftQCD_default.py --nThreads 8Numerator (red): Run3_ckfPixelLessSttep era
cmsDrivery.py step3 --conditions auto:phase1_2022_realistic -s RAW2DIGI,RECO:reconstruction_trackingOnly,VALIDATION:@trackingOnlyValidation,DQM:@trackingOnlyDQM --datatier DQMIO -n 5000 --geometry DB:Extended --era Run3_ckfPixelLessStep --eventcontent DQM --no_exec --filein file:/data2/mmasciov/SoftQCD/CMSSW_12_4_0_pre4/src/step2.root --fileout step3_SoftQCD_ckfPixelLess.root --python_filename step3_SoftQCD_ckfPixelLess.py --nThreads 8