-
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
L1T: fix duplicate dictionary problems in #33978 #34094
L1T: fix duplicate dictionary problems in #33978 #34094
Conversation
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-34094/23274
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-34094/23276
|
A new Pull Request was created by @cecilecaillol for master. It involves the following packages: DataFormats/DetId @cmsbuild, @rekovic, @civanch, @cecilecaillol, @mdhildreth can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
L1Trigger/VertexFinder/src/classes.h
Outdated
edm::Wrapper<std::vector<l1tVertexFinder::Stub>> wvs; | ||
edm::Wrapper<std::vector<l1tVertexFinder::TP>> wvtp; | ||
edm::Wrapper<std::vector<l1tVertexFinder::Vertex>> wvvtx; | ||
edm::Wrapper<l1tVertexFinder::InputData> wid; |
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.
I mean that the contents of the struct (and the namespace) can be removed.
<class name="l1tVertexFinder::InputData" transient="true"/> |
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.
These should actually be
<class name="l1tVertexFinder::InputData" transient="true"/> | |
<class name="l1tVertexFinder::InputData" persistent="false"/> |
@@ -23,6 +23,8 @@ | |||
|
|||
<class name="TrackingParticleRefVector" /> | |||
<class name="edm::Wrapper<TrackingParticleRefVector>"/> | |||
|
|||
<class name="std::map<edm::Ptr<TrackingParticle>,edm::RefToBase<TrackingParticle> >"/> |
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.
I'm still curious why RefToBase<TrackingParticle>
is needed. I don't see anything inheriting from TrackingParticle
, so a polymorphic reference is not really needed (i.e. edm::Ref
would suffice), and for any new use for polymorphic Refs the edm::Ptr
is strongly preferred.
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-34094/23329
|
Pull request #34094 was updated. @smuzaffar, @civanch, @Dr15Jones, @makortel, @mdhildreth, @cmsbuild, @rekovic, @cecilecaillol can you please check and sign again. |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-cb8298/15966/summary.html Comparison SummarySummary:
|
+core |
+l1 |
+1 |
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. @silviodonato, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
This is a fix addressing the comments from @makortel on #33978
PR validation:
if this PR is a backport please specify the original PR and why you need to backport that PR: