-
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
[GSF tracking] Add TSOS only if it is meaningful #39256
Conversation
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-39256/31901
|
A new Pull Request was created by @swagata87 (Swagata Mukherjee) for master. It involves the following packages:
@jpata, @cmsbuild, @mandrenguyen, @clacaputo can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
Running over 10k events, this does reduce significantly the amount of warnings: - 16 %MSG-e PosteriorWeightsCalculator: GsfTrackProducer:hltEgammaGsfTracksForBParking
- 33 %MSG-e PosteriorWeightsCalculator: GsfTrackProducer:hltEgammaGsfTracks
- 2232 %MSG-w BasicTrajectoryState: GsfTrackProducer:hltEgammaGsfTracks
- 186 %MSG-w BasicTrajectoryState: GsfTrackProducer:hltEgammaGsfTracksForBParking with only a small increase in the number of errors: - 33 %MSG-e GsfMultiStateUpdator: GsfTrackProducer:hltEgammaGsfTracks
+ 40 %MSG-e GsfMultiStateUpdator: GsfTrackProducer:hltEgammaGsfTracks |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-fe95af/27209/summary.html Comparison SummarySummary:
|
+reconstruction |
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) |
@swagata87 could you make backports for 12.4.x and 12.5.x ? |
type egamma |
+1 |
thank you Swagata! |
PR description:
It's an attempt to address github issue #39234
There is a long-standing problem that Gsf track reconstruction in HLT (to a lesser extent also offline) generates a bit too many warning and error messages. The issue has been there since a while. Recently DAQ has also pointed it out: https://its.cern.ch/jira/browse/CMSHLT-2449 . This is a try to reduce the warnings/errors without compromising with performance. (FYI @missirol )
PR validation:
HLT
Ran HLT on 200 raw events and checked HLT decisions before and after the PR.
Running on
/store/data/Run2022C/EGamma/RAW/v1/000/355/872/00000/3b478527-d206-4b8e-8004-08e9aff7758b.root
(EGamma dataset, 2022C).Running on
/eos/cms/store/group/dpg_trigger/comm_trigger/TriggerStudiesGroup/STORM/RAW/Run2022B_HLTPhysics0_run355558/cd851cf4-0fca-4d76-b80e-1d33e1371929.root
(HLTPhysics, 2022B),HLT decision of paths running Gsf tracking remain same before and after this PR.
In the
HLTPhysics
file, warning/error messages from Gsf reconstruction before and after this PR are:Before:
cat hlt_before_hltphysics.log | grep 'GsfTrackProducer:' | wc -l
540After:
cat hlt_after_hltphysics.log | grep 'GsfTrackProducer:' | wc -l
8Offline
Ran Reco step on 200 events from
/store/relval/CMSSW_12_4_0/RelValTTbarToDilepton_14TeV/GEN-SIM-DIGI-RAW/124X_mcRun3_2022_realistic_v5-v1/2580000/0181721e-24a2-44dd-b514-8f53014ac9a0.root
; before and after this PR. Compared track related quantities of reconstructed electrons. No difference found.runTheMatrix.py -l 11834.0
worked fine.This PR is not a backport.