Skip to content

Commit

Permalink
Fix type direction
Browse files Browse the repository at this point in the history
copy paste? :)
  • Loading branch information
Zehvogel authored Jul 24, 2024
1 parent 73793ab commit 7486c72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ createAssociations(const ObjectMappingT& typeMapping,
auto mc_a = createAssociationCollection<edm4hep::MCRecoTrackerAssociationCollection, true>(
relations, typeMapping.trackerHits, typeMapping.simTrackerHits);
assoCollVec.emplace_back(name, std::move(mc_a));
} else if (fromType == "SimTrackerHit" && (toType == "TrackerHit" || fromType == "TrackerHitPlane")) {
} else if (fromType == "SimTrackerHit" && (toType == "TrackerHit" || toType == "TrackerHitPlane")) {
auto mc_a = createAssociationCollection<edm4hep::MCRecoTrackerAssociationCollection, false>(
relations, typeMapping.simTrackerHits, typeMapping.trackerHits);
assoCollVec.emplace_back(name, std::move(mc_a));
Expand Down

0 comments on commit 7486c72

Please sign in to comment.