Skip to content

Commit

Permalink
Use the newly introduced namespace in the conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener authored and andresailer committed Sep 12, 2023
1 parent 37beece commit f110c55
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions k4MarlinWrapper/k4MarlinWrapper/converters/EDM4hep2Lcio.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
#include <string>
#include <vector>

using EDM4hep2LCIOConv::CollectionsPairVectors;
using EDM4hep2LCIOConv::vec_pair;

class EDM4hep2LcioTool : public GaudiTool, virtual public IEDMConverter {
public:
EDM4hep2LcioTool(const std::string& type, const std::string& name, const IInterface* parent);
Expand Down
2 changes: 2 additions & 0 deletions k4MarlinWrapper/src/components/EDM4hep2Lcio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

DECLARE_COMPONENT(EDM4hep2LcioTool);

using namespace EDM4hep2LCIOConv;

EDM4hep2LcioTool::EDM4hep2LcioTool(const std::string& type, const std::string& name, const IInterface* parent)
: GaudiTool(type, name, parent), m_eventDataSvc("EventDataSvc", "EDM4hep2LcioTool") {
declareInterface<IEDMConverter>(this);
Expand Down

0 comments on commit f110c55

Please sign in to comment.