-
Notifications
You must be signed in to change notification settings - Fork 11
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
Remove deprecated functions #91
Conversation
@@ -191,13 +168,6 @@ std::unique_ptr<lcio::LCCollectionVec> | |||
convertSimTrackerHits(const edm4hep::SimTrackerHitCollection* const edmCollection, const CellIDStrType& cellIDstr, | |||
SimTrHitMapT& simTrHitMap); | |||
|
|||
template <typename SimTrHitMapT, typename MCParticleMapT> | |||
[[deprecated("Use convertSimTrackerHits instead")]] lcio::LCCollectionVec* | |||
convSimTrackerHits(const edm4hep::SimTrackerHitCollection* const simtrackerhits_coll, const CellIDStrType& cellIDstr, |
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 is also used in the README: https://github.com/key4hep/k4EDM4hep2LcioConv/blob/main/README.md?plain=1#L29
@@ -310,13 +229,6 @@ std::unique_ptr<lcio::LCCollectionVec> | |||
convertReconstructedParticles(const edm4hep::ReconstructedParticleCollection* const edmCollection, | |||
RecoParticleMapT& recoParticleMap); | |||
|
|||
template <typename RecoPartMapT, typename TrackMapT, typename VertexMapT, typename ClusterMapT> | |||
[[deprecated("Use convertReconstructedParticle instead")]] lcio::LCCollectionVec* | |||
convReconstructedParticles(const edm4hep::ReconstructedParticleCollection* const recos_coll, |
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.
Used in the README: https://github.com/key4hep/k4EDM4hep2LcioConv/blob/main/README.md?plain=1#L17
@@ -145,13 +145,6 @@ template <typename ObjectMappingT> | |||
std::vector<CollNamePair> createLinks(const ObjectMappingT& typeMapping, | |||
const std::vector<std::pair<std::string, EVENT::LCCollection*>>& LCRelation); | |||
|
|||
template <typename ObjectMappingT> | |||
[[deprecated("use createLinks instead")]] std::vector<CollNamePair> | |||
createAssociations(const ObjectMappingT& typeMapping, |
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.
Somehow related to the change from Association to Link, Association is still used in several places in tests:
And then in some other places related to documentation:
|
0bd1c0f
to
9901515
Compare
There were also quite a few |
BEGINRELEASENOTES
ENDRELEASENOTES
These were introduced in #86 and #54 to decouple the changes from necessary fixes in k4MarlinWrapper.