-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Correction of MTD ETL Validation: hits accumulation on a pixel-basis #43928
Conversation
cms-bot internal usage |
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-43928/38782
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
@ctarricone probably this PR will have to take into account #43913 as far as |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-43928/38784
|
A new Pull Request was created by @ctarricone (Cristiano Tarricone) for master. It involves the following packages:
@cmsbuild, @nothingface0, @syuvivida, @tjavaid, @rvenditti, @antoniovagnerini can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
-1 Failed Tests: RelVals RelVals |
@ctarricone at this point we may close this PR, as a replacement for it was merged already |
@ctarricone this PR is reported as possible source of conflict in any PR on MTD validation. As it is superseded, could you please just close it? Thanks |
Milestone for this pull request has been moved to CMSSW_14_2_X. Please open a backport if it should also go in to CMSSW_14_1_X. |
ping (to make bot change milestone) |
-mtd |
this PR is definitely obsolete and superseded but other developments. I would be better to simply close it. |
-1 |
Milestone for this pull request has been moved to CMSSW_15_0_X. Please open a backport if it should also go in to CMSSW_14_2_X. |
PR description:
The proposed correction of the validation involves adjusting the accumulation process to be pixel-level during SimHits processing, aligning it with the digitization.
As it stands, LGAD pixels collect signals and it is imperative that SimHits be accumulated on a per-pixel basis. This pixel-level accumulation is consistent with the digitization [1].
Contrary to this, in the validation, the accumulation is currently performed solely based on modules (DetId), as in the BTL.
While this may not significantly impact processes without pile-up due to the relatively low occupancy, it becomes a critical concern under high pile-up conditions.
In order to consistently test changes in the ETL digitization [2] it is crucial to rectify this discrepancy.
[1] https://github.com/cms-sw/cmssw/blob/master/SimFastTiming/FastTimingCommon/src/ETLDeviceSim.cc#L78
[2] #43762