-
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
Event::getByToken bug in CutBasedElectronID #46866
Comments
cms-bot internal usage |
A new Issue was created by @Dr15Jones. @Dr15Jones, @antoniovilela, @makortel, @mandrenguyen, @rappoccio, @sextonkennedy, @smuzaffar can you please review it and eventually sign/assign? Thanks. cms-bot commands are listed here |
assign RecoEgamma/ElectronIdentification |
assign core |
New categories assigned: reconstruction,core @Dr15Jones,@jfernan2,@makortel,@mandrenguyen,@smuzaffar you have been requested to review this Pull request/Issue and eventually sign? Thanks |
A bit of git archeology shows this has been broken for 10 years. |
@SanghyunKo @cochando as L3 Reco EGamma conveners, can you please have a look and provide a solution? Thanks |
I actually have a fix for this one coming as part of a general memory improvement I'm doing to ElectronIDExternalProducer and its helpers. |
Maybe we should finally remove the non-templated |
The lines
cmssw/RecoEgamma/ElectronIdentification/plugins/CutBasedElectronID.cc
Lines 467 to 469 in f912613
will always result in a failure because the type of
verticesCollection_
does not matchBeamSpot
cmssw/RecoEgamma/ElectronIdentification/plugins/CutBasedElectronID.h
Line 30 in 41a8d65
Such a mismatch was intended to be caught at compile time but didn't happen because the compiler found the overload
cmssw/FWCore/Framework/interface/Event.h
Lines 180 to 181 in 41a8d65
and used that.
The text was updated successfully, but these errors were encountered: