Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:32

0001 #ifndef RecoJets_JetAlgorithms_InsideOutProducer_H
0002 #define RecoJets_JetAlgorithms_InsideOutProducer_H
0003 /*
0004  * CMS Inside-Out jet producer
0005  *
0006  * Produces jets build w/ the inside-out algorithm to seed
0007  * the PFRecoTauAlgorithm
0008  *
0009  * Author:  Evan Friis, UC Davis evan.friis@cern.ch
0010  *
0011  * Adapted from code in RecoJets/JetProducers::BaseJetProducer
0012  *
0013  */
0014 
0015 #include "RecoJets/JetProducers/plugins/VirtualJetProducer.h"
0016 #include "RecoJets/JetAlgorithms/interface/CMSInsideOutAlgorithm.h"
0017 
0018 class CMSInsideOutJetProducer : public VirtualJetProducer {
0019 public:
0020   //
0021   // construction/destruction
0022   //
0023   explicit CMSInsideOutJetProducer(const edm::ParameterSet& iConfig);
0024   ~CMSInsideOutJetProducer() override;
0025 
0026   void produce(edm::Event& iEvent, const edm::EventSetup& iSetup) override;
0027 
0028 protected:
0029   //
0030   // member functions
0031   //
0032 
0033   void runAlgorithm(edm::Event& iEvent, const edm::EventSetup& iSetup) override;
0034 
0035   CMSInsideOutAlgorithm alg_;
0036 };
0037 
0038 #endif