-
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
Fix in PF reconstruction for the spike at MET=0.0 #11280
Conversation
A new Pull Request was created by @bachtis (Michalis Bachtis) for CMSSW_7_4_X. Fix in PF reconstruction for the spike at MET=0.0 It involves the following packages: RecoParticleFlow/PFClusterProducer @cmsbuild, @cvuosalo, @slava77 can you please review it and eventually sign? Thanks. |
@cmsbuild please test |
The tests are being triggered in jenkins. |
Fix in PF reconstruction for the spike at MET=0.0 - 75X version of #11280
+1
|
This pull request is fully signed and it will be integrated in one of the next CMSSW_7_4_X IBs (tests are also fine) and once validation in the development release cycle CMSSW_7_6_X is complete. This pull request requires discussion in the ORP meeting before it's merged. @davidlange6, @Degano, @smuzaffar |
@bachtis Most significant other changes in the JetMET reprocessing request can be configured on/off (I'm talking about HCAL hit cleaning and flagging). |
@davidlange6 |
This PR contains two bug-fixes:
A) There is a post cleaning algorithm that is deactivated since 62X. This algorithm has two sub-algortihms . One to remove HF candidates from PF if noisy/spikey and one to add HF cleaned hits if they were previously cleaned by DPG but they balance better the MET.
The second one method: checkCleaning() in PFAlgo was not deactivated. In 25 ns data taking the second one can start adding to PF cleaned out of time hits picking the ones that balance the MET better biasing the MET. This bias would make the MET O(200) MeV
B)There was an additional small bug in the new clustering that adds hits below threshold to the collection of the cleaned HF hits while in this collection we need only the DPG cleaned hits. The checkCleaning() sequence runs on those very low energy hits and finds a combination that can bring the MET down from 200 MeV down to 10 MeV or less!
The fix A dominates the spike that is seen only in the data . If we apply only fix B then the met will still peak at 0.0 but at 100 MeV instead of 20 MeV
The fix B has also a small effect of the MC since low energy HF hits can be added back but the energy of those hits is so small that they can only change the Jet/MET by 100 MeV max
Tests were performed with any combination of cleaning and bug fixes. The conclusion is:
+checkCleaning needs to be deactivated since postCleaning is deactivated
+Fix needed to not add the below threshold hits to the Cleaned collection
Notes
1.The nature and understanding of the problem implies that the problem will not appear on metNoHF which is the default one for now in CMS
2.The problem is also at HLT but cannot change efficiency or rate since the change of MET is max 5-10 GeV - much lower than the HLT thresholds