From 15b13088c377dcb01561681a8578a02a4a0bdfa3 Mon Sep 17 00:00:00 2001 From: Josh Bendavid Date: Wed, 30 Aug 2017 17:02:38 +0000 Subject: [PATCH] remove leftover use of timing since it has moved elsewhere --- .../plugins/importers/GeneralTracksImporterWithVeto.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/RecoParticleFlow/PFProducer/plugins/importers/GeneralTracksImporterWithVeto.cc b/RecoParticleFlow/PFProducer/plugins/importers/GeneralTracksImporterWithVeto.cc index ddfd2e02bc8fb..5203b90810808 100644 --- a/RecoParticleFlow/PFProducer/plugins/importers/GeneralTracksImporterWithVeto.cc +++ b/RecoParticleFlow/PFProducer/plugins/importers/GeneralTracksImporterWithVeto.cc @@ -148,9 +148,6 @@ importToBlock( const edm::Event& e, << " pt " << pftrackref->trackRef()->p() << std::endl; } if( muId != -1 ) trkElem->setMuonRef(muonref); - if ( useTiming_ ) { - trkElem->setTime( (*timeH)[pftrackref->trackRef()], (*timeErrH)[pftrackref->trackRef()] ); - } if( vetoed.count(pftrackref->trackRef().key()) == 0 || muonref.isNonnull()){ elems.emplace_back(trkElem); }