diff --git a/FWCore/src/components/LCIO2Plcio.cpp b/FWCore/src/components/LCIO2Plcio.cpp index 146502f1a096bb79066b02820b22cbe8ae864ea5..72cd688a9469a06c26113ec76aaf5be6df189d39 100644 --- a/FWCore/src/components/LCIO2Plcio.cpp +++ b/FWCore/src/components/LCIO2Plcio.cpp @@ -61,6 +61,7 @@ LCIO2Plcio::LCIO2Plcio(){ map_cvt.insert(std::make_pair<std::string, fptr>("Track", Convertor_Track)); map_cvt.insert(std::make_pair<std::string, fptr>("TrackerHit", Convertor_TrackerHit)); map_cvt.insert(std::make_pair<std::string, fptr>("TPCHit", Convertor_TPCHit)); + map_cvt.insert(std::make_pair<std::string, fptr>("ReconstructedParticle", Convertor_ReconstructedParticle)); map_cvt.insert(std::make_pair<std::string, fptr>("ParticleID", Convertor_ParticleID)); } LCIO2Plcio::LCIO2Plcio(EVENT::LCCollection* collection){ diff --git a/FWCore/src/components/LCIO2Plcio.h b/FWCore/src/components/LCIO2Plcio.h index bca22a0ac3827639ef3311c5d743d221fa1cae0f..3729105ce2c7dbf763c15d4524b4bde333b6d7a2 100644 --- a/FWCore/src/components/LCIO2Plcio.h +++ b/FWCore/src/components/LCIO2Plcio.h @@ -81,7 +81,6 @@ public: static podio::CollectionBase* Convertor_Track(EVENT::LCCollection*); static podio::CollectionBase* Convertor_TrackerHit(EVENT::LCCollection*); static podio::CollectionBase* Convertor_TPCHit(EVENT::LCCollection*); - static podio::CollectionBase* Convertor_ReconstructedParticle(EVENT::LCCollection*); static podio::CollectionBase* Convertor_ParticleID(EVENT::LCCollection*);