File indexing completed on 2024-04-06 12:25:32
0001 #ifndef RecoJets_JetAlgorithms_InsideOutProducer_H
0002 #define RecoJets_JetAlgorithms_InsideOutProducer_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
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
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
0031
0032
0033 void runAlgorithm(edm::Event& iEvent, const edm::EventSetup& iSetup) override;
0034
0035 CMSInsideOutAlgorithm alg_;
0036 };
0037
0038 #endif