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

[Backport] Making miniAOD low pt tracks threshold tunable for 10_6_X (#33777) #33877

Merged
merged 4 commits into from Jun 2, 2021

Conversation

AdrianoDee
Copy link
Contributor

PR description:

This is a backport to 10_6_X of #33777

PR validation:

All the tests running

Further references

BPH Jamboree December 2020 here

xPOG Meeting February 2021 here

Further reference here

For a complete documentation, trk4bph meetings: 1, 2, 3 , 4, 5, 6

@cmsbuild cmsbuild added this to the CMSSW_10_6_X milestone May 28, 2021
@cmsbuild
Copy link
Contributor

cmsbuild commented May 28, 2021

A new Pull Request was created by @AdrianoDee for CMSSW_10_6_X.

It involves the following packages:

PhysicsTools/PatAlgos

@perrotta, @jpata, @cmsbuild, @slava77 can you please review it and eventually sign? Thanks.
@rappoccio, @gouskos, @jdolen, @JyothsnaKomaragiri, @ahinzmann, @schoef, @emilbols, @swozniewski, @jdamgov, @mbluj, @nhanvtran, @gkasieczka, @clelange, @hatakeyamak, @ferencek, @gpetruc, @andrzejnovak, @mariadalfonso, @seemasharmafnal, @mmarionncern this is something you requested to watch as well.
@silviodonato, @dpiparo, @qliphy you are the release manager for this.

cms-bot commands are listed here

@AdrianoDee
Copy link
Contributor Author

N.B. most of the changes to PhysicsTools/PatAlgos/plugins/PATPackedCandidateProducer.cc comes from code-format checks.

@perrotta
Copy link
Contributor

backport of #33777

@perrotta
Copy link
Contributor

please test

@cmsbuild
Copy link
Contributor

+1

Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-1b6a4a/15379/summary.html
COMMIT: c8cb07a
CMSSW: CMSSW_10_6_X_2021-05-27-2300/slc7_amd64_gcc700
User test area: For local testing, you can use /cvmfs/cms-ci.cern.ch/week0/cms-sw/cmssw/33877/15379/install.sh to create a dev area with all the needed externals and cmssw changes.

Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 1380 differences found in the comparisons
  • DQMHistoTests: Total files compared: 35
  • DQMHistoTests: Total histograms compared: 3215552
  • DQMHistoTests: Total failures: 1249
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 3213969
  • DQMHistoTests: Total skipped: 334
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 34 files compared)
  • Checked 143 log files, 29 edm output root files, 35 DQM output files
  • TriggerResults: no differences found

@slava77
Copy link
Contributor

slava77 commented May 28, 2021

Reco comparison results: 1380 differences found in the comparisons

106X is a production release and this PR is changing outputs of the standard workflows.
This is not allowed by change policy.

  • You can change the PR to have no change by default configuration e.g. only with run2_miniAOD_devel, or/and (bParking & run2_miniAOD_UL)

@AdrianoDee
Copy link
Contributor Author

@slava77 thanks. Would something like this work?

for lostTracks_cfi.py


from Configuration.Eras.Modifier_bParking_cff import bParking
bParking.toModify(lostTracks, fillLostInnerHits = True)
(bParking & run2_miniAOD_UL).toModify(lostTracks, minPtToStoreLowQualityProps = 0.0)

from Configuration.Eras.Modifier_run2_miniAOD_devel_cff.py import run2_miniAOD_devel
run2_miniAOD_devel.toModify(lostTracks, minPtToStoreLowQualityProps = 0.0)

and for packedPFCanidates_cfi.py


from Configuration.Eras.Modifier_run2_miniAOD_devel_cff.py import run2_miniAOD_devel
run2_miniAOD_devel.toModify(packedPFCandidates, minPtForLowQualityTrackProperties = 0.0)

from Configuration.Eras.Modifier_bParking_cff.py import bParking
(bParking & run2_miniAOD_UL).toModify(packedPFCandidates, minPtForLowQualityTrackProperties = 0.0)

@slava77
Copy link
Contributor

slava77 commented May 28, 2021

@slava77 thanks. Would something like this work?

I'd use something shorter:

(bParking | run2_miniAOD_devel).toModify(

@cmsbuild
Copy link
Contributor

Pull request #33877 was updated. @perrotta, @jpata, @cmsbuild, @slava77 can you please check and sign again.

@slava77
Copy link
Contributor

slava77 commented May 29, 2021

@cmsbuild please test

@cmsbuild
Copy link
Contributor

+1

Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-1b6a4a/15420/summary.html
COMMIT: dfbfb78
CMSSW: CMSSW_10_6_X_2021-05-29-1100/slc7_amd64_gcc700
User test area: For local testing, you can use /cvmfs/cms-ci.cern.ch/week0/cms-sw/cmssw/33877/15420/install.sh to create a dev area with all the needed externals and cmssw changes.

Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 4 differences found in the comparisons
  • DQMHistoTests: Total files compared: 35
  • DQMHistoTests: Total histograms compared: 3215543
  • DQMHistoTests: Total failures: 2
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 3215207
  • DQMHistoTests: Total skipped: 334
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 34 files compared)
  • Checked 143 log files, 29 edm output root files, 35 DQM output files
  • TriggerResults: no differences found

@slava77
Copy link
Contributor

slava77 commented Jun 1, 2021

+reconstruction

for #33877 dfbfb78

  • code changes are in line with the PR description and the follow up review:
    • the backport is correct; the extra code formatting in PATPackedCandidateProducer.cc and packedPFCandidates_cfi.py is acceptable
    • the changes are enabled only for bParking | run2_miniAOD_devel to satisfy the no-change policy
  • jenkins tests pass and comparisons with the baseline show no (relevant) differences

@cmsbuild
Copy link
Contributor

cmsbuild commented Jun 1, 2021

This pull request is fully signed and it will be integrated in one of the next CMSSW_10_6_X IBs (tests are also fine) and once validation in the development release cycle CMSSW_12_0_X is complete. This pull request will now be reviewed by the release team before it's merged. @silviodonato, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2)

@qliphy
Copy link
Contributor

qliphy commented Jun 2, 2021

+1

@cmsbuild cmsbuild merged commit f2bb878 into cms-sw:CMSSW_10_6_X Jun 2, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants