CMS 3D CMS Logo

IterativeConeJetProducer.cc

Go to the documentation of this file.
00001 #include "FWCore/Framework/interface/MakerMacros.h"
00002 #include "IterativeConeJetProducer.h"
00003 
00004 using namespace std;
00005 using namespace reco;
00006 
00007 namespace {
00008   const bool debug = false;
00009 
00010 }
00011 
00012 namespace cms {
00013 
00014   IterativeConeJetProducer::IterativeConeJetProducer(edm::ParameterSet const& conf):
00015     BaseJetProducer (conf),
00016     alg_(conf.getParameter<double>("seedThreshold"),
00017          conf.getParameter<double>("coneRadius"))
00018   {}
00019 
00020   // run algorithm itself
00021   bool IterativeConeJetProducer::runAlgorithm (const JetReco::InputCollection& fInput, 
00022                      JetReco::OutputCollection* fOutput) {
00023     alg_.run (fInput, fOutput);
00024     return true;
00025   }
00026 }
00027 
00028 
00029 

Generated on Tue Jun 9 17:43:43 2009 for CMSSW by  doxygen 1.5.4