Skip to content

Commit

Permalink
Correcting metadata handle type (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt authored Jul 14, 2023
1 parent 4704fb6 commit 1aacc5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class CreateCaloCellPositionsFCCee : public GaudiAlgorithm {
MetaDataHandle<std::string> m_hitsCellIDEncoding{m_hits, "CellIDEncodingString", Gaudi::DataHandle::Reader};
/// Output collection
DataHandle<edm4hep::CalorimeterHitCollection> m_positionedHits{"hits/positionedHits", Gaudi::DataHandle::Writer, this};
MetaDataHandle<std::string> m_positionedHitsCellIDEncoding{m_positionedHits, "CellIDEncodingString", Gaudi::DataHandle::Reader};
MetaDataHandle<std::string> m_positionedHitsCellIDEncoding{m_positionedHits, "CellIDEncodingString", Gaudi::DataHandle::Writer};

int m_system_id = m_decoder->index("system");
std::unordered_map<dd4hep::DDSegmentation::CellID, edm4hep::Vector3f> m_positions_cache{};
Expand Down

0 comments on commit 1aacc5a

Please sign in to comment.