Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:58

0001 #include "PhysicsTools/PatAlgos/interface/SimpleIsolator.h"
0002 #include <sstream>
0003 
0004 using pat::helper::BaseIsolator;
0005 using pat::helper::SimpleIsolator;
0006 
0007 SimpleIsolator::SimpleIsolator(const edm::ParameterSet &conf, edm::ConsumesCollector &iC, bool withCut)
0008     : BaseIsolator(conf, iC, withCut) {}
0009 
0010 void SimpleIsolator::beginEvent(const edm::Event &event, const edm::EventSetup &eventSetup) {
0011   event.getByToken(inputDoubleToken_, handle_);
0012 }
0013 
0014 void SimpleIsolator::endEvent() { handle_.clear(); }