-
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
Update hcal strip 80 x #13117
Update hcal strip 80 x #13117
Conversation
A new Pull Request was created by @aminnj (Nick Amin) for CMSSW_8_0_X. It involves the following packages: DataFormats/METReco @cvuosalo, @monttj, @cmsbuild, @slava77, @vadler, @davidlange6 can you please review it and eventually sign? Thanks. cms-bot commands are list here #13028 |
@aminnj |
std::vector<const CaloTower*> sortedCaloTowers; | ||
for(CaloTowerCollection::const_iterator tower = TheCaloTowers->begin(); tower != TheCaloTowers->end(); tower++) { | ||
if(abs(tower->ieta()) <= maxAbsIEta && tower->numProblematicHcalCells() > 0) | ||
sortedCaloTowers.push_back(&(*tower)); | ||
if(abs(tower->ieta()) > maxAbsIEta) continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
std::abs (to more convincingly see it's the C++ STL abs, not the C abs)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, it's ieta
nevermind
@cmsbuild please test |
The tests are being triggered in jenkins. |
+1 The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic: |
@cmsbuild please test |
(plots were updated in #13117 (comment)) |
@@ -7,6 +7,7 @@ | |||
[date]: October 15, 2009 | |||
*/ | |||
#include <vector> | |||
#include <map> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this include should be in the cc file (though see next comment)
@aminnj
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch
@cmsbuild please test |
The tests are being triggered in jenkins. |
-1 Tested at: a468287 ---> test testRecoMETMETProducers had ERRORS you can see the results of the tests here: |
+1
|
The Hcal Strip beam halo filter from #10934 has been supplemented with two extra cuts to slightly increase halo rejection efficiency while dramatically lowering fake rate (O(10^-4)) in MC signal samples with large amounts of hadronic activity.